pcm/Pcm{Dop,Export}: drop "Pcm" prefix
This commit is contained in:
parent
b64571f4a5
commit
fd5e74dbd0
|
@ -20,7 +20,7 @@
|
||||||
#ifndef MPD_ALSA_HW_SETUP_HXX
|
#ifndef MPD_ALSA_HW_SETUP_HXX
|
||||||
#define MPD_ALSA_HW_SETUP_HXX
|
#define MPD_ALSA_HW_SETUP_HXX
|
||||||
|
|
||||||
#include "pcm/PcmExport.hxx"
|
#include "pcm/Export.hxx"
|
||||||
|
|
||||||
#include <alsa/asoundlib.h>
|
#include <alsa/asoundlib.h>
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "lib/alsa/Version.hxx"
|
#include "lib/alsa/Version.hxx"
|
||||||
#include "../OutputAPI.hxx"
|
#include "../OutputAPI.hxx"
|
||||||
#include "mixer/MixerList.hxx"
|
#include "mixer/MixerList.hxx"
|
||||||
#include "pcm/PcmExport.hxx"
|
#include "pcm/Export.hxx"
|
||||||
#include "thread/Mutex.hxx"
|
#include "thread/Mutex.hxx"
|
||||||
#include "thread/Cond.hxx"
|
#include "thread/Cond.hxx"
|
||||||
#include "util/Manual.hxx"
|
#include "util/Manual.hxx"
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "util/Domain.hxx"
|
#include "util/Domain.hxx"
|
||||||
#include "util/Manual.hxx"
|
#include "util/Manual.hxx"
|
||||||
#include "util/ConstBuffer.hxx"
|
#include "util/ConstBuffer.hxx"
|
||||||
#include "pcm/PcmExport.hxx"
|
#include "pcm/Export.hxx"
|
||||||
#include "thread/Mutex.hxx"
|
#include "thread/Mutex.hxx"
|
||||||
#include "thread/Cond.hxx"
|
#include "thread/Cond.hxx"
|
||||||
#include "util/ByteOrder.hxx"
|
#include "util/ByteOrder.hxx"
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef AFMT_S24_PACKED
|
#ifdef AFMT_S24_PACKED
|
||||||
#include "pcm/PcmExport.hxx"
|
#include "pcm/Export.hxx"
|
||||||
#include "util/Manual.hxx"
|
#include "util/Manual.hxx"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "PcmDop.hxx"
|
#include "Dop.hxx"
|
||||||
#include "PcmBuffer.hxx"
|
#include "PcmBuffer.hxx"
|
||||||
#include "AudioFormat.hxx"
|
#include "AudioFormat.hxx"
|
||||||
#include "util/ConstBuffer.hxx"
|
#include "util/ConstBuffer.hxx"
|
|
@ -17,7 +17,7 @@
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "PcmExport.hxx"
|
#include "Export.hxx"
|
||||||
#include "AudioFormat.hxx"
|
#include "AudioFormat.hxx"
|
||||||
#include "Order.hxx"
|
#include "Order.hxx"
|
||||||
#include "PcmPack.hxx"
|
#include "PcmPack.hxx"
|
||||||
|
@ -28,7 +28,7 @@
|
||||||
#include "Dsd16.hxx"
|
#include "Dsd16.hxx"
|
||||||
#include "Dsd32.hxx"
|
#include "Dsd32.hxx"
|
||||||
#include "PcmDsd.hxx"
|
#include "PcmDsd.hxx"
|
||||||
#include "PcmDop.hxx"
|
#include "Dop.hxx"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
|
@ -5,9 +5,9 @@ pcm_sources = [
|
||||||
'SampleFormat.cxx',
|
'SampleFormat.cxx',
|
||||||
'Interleave.cxx',
|
'Interleave.cxx',
|
||||||
'PcmBuffer.cxx',
|
'PcmBuffer.cxx',
|
||||||
'PcmExport.cxx',
|
'Export.cxx',
|
||||||
'PcmConvert.cxx',
|
'PcmConvert.cxx',
|
||||||
'PcmDop.cxx',
|
'Dop.cxx',
|
||||||
'Volume.cxx',
|
'Volume.cxx',
|
||||||
'Silence.cxx',
|
'Silence.cxx',
|
||||||
'PcmMix.cxx',
|
'PcmMix.cxx',
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "pcm/PcmExport.hxx"
|
#include "pcm/Export.hxx"
|
||||||
#include "pcm/Traits.hxx"
|
#include "pcm/Traits.hxx"
|
||||||
#include "util/ByteOrder.hxx"
|
#include "util/ByteOrder.hxx"
|
||||||
#include "util/ConstBuffer.hxx"
|
#include "util/ConstBuffer.hxx"
|
||||||
|
|
Loading…
Reference in New Issue