diff options
author | Max Kellermann <max@duempel.org> | 2013-04-09 01:24:52 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-09 01:24:52 +0200 |
commit | c654c7630aad220a4935c34b076e107b6b0561a5 (patch) | |
tree | 7ca6e4e30bee7153ed54f302467140180d77490d /test | |
parent | 3f3b26fb0ee090bfc1321572904aa94deca42a84 (diff) | |
download | mpd-c654c7630aad220a4935c34b076e107b6b0561a5.tar.gz mpd-c654c7630aad220a4935c34b076e107b6b0561a5.tar.xz mpd-c654c7630aad220a4935c34b076e107b6b0561a5.zip |
pcm_*: move to src/pcm/
Diffstat (limited to 'test')
-rw-r--r-- | test/read_mixer.cxx | 2 | ||||
-rw-r--r-- | test/run_convert.cxx | 2 | ||||
-rw-r--r-- | test/run_filter.cxx | 2 | ||||
-rw-r--r-- | test/run_output.cxx | 2 | ||||
-rw-r--r-- | test/software_volume.cxx | 2 | ||||
-rw-r--r-- | test/test_pcm_channels.cxx | 4 | ||||
-rw-r--r-- | test/test_pcm_dither.cxx | 2 | ||||
-rw-r--r-- | test/test_pcm_format.cxx | 8 | ||||
-rw-r--r-- | test/test_pcm_mix.cxx | 2 | ||||
-rw-r--r-- | test/test_pcm_pack.cxx | 2 | ||||
-rw-r--r-- | test/test_pcm_volume.cxx | 2 |
11 files changed, 15 insertions, 15 deletions
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx index 45344a2f6..1dc0a4f43 100644 --- a/test/read_mixer.cxx +++ b/test/read_mixer.cxx @@ -21,7 +21,7 @@ #include "MixerControl.hxx" #include "MixerList.hxx" #include "FilterRegistry.hxx" -#include "PcmVolume.hxx" +#include "pcm/PcmVolume.hxx" #include "GlobalEvents.hxx" #include "Main.hxx" #include "event/Loop.hxx" diff --git a/test/run_convert.cxx b/test/run_convert.cxx index e66d0be2b..2b0214912 100644 --- a/test/run_convert.cxx +++ b/test/run_convert.cxx @@ -26,7 +26,7 @@ #include "config.h" #include "AudioParser.hxx" #include "audio_format.h" -#include "PcmConvert.hxx" +#include "pcm/PcmConvert.hxx" #include "conf.h" #include "util/fifo_buffer.h" #include "stdbin.h" diff --git a/test/run_filter.cxx b/test/run_filter.cxx index 9ea50ff55..0b8078c1a 100644 --- a/test/run_filter.cxx +++ b/test/run_filter.cxx @@ -24,7 +24,7 @@ #include "audio_format.h" #include "FilterPlugin.hxx" #include "FilterInternal.hxx" -#include "PcmVolume.hxx" +#include "pcm/PcmVolume.hxx" #include "MixerControl.hxx" #include "stdbin.h" diff --git a/test/run_output.cxx b/test/run_output.cxx index 5b6d54a11..e41fe1cad 100644 --- a/test/run_output.cxx +++ b/test/run_output.cxx @@ -27,7 +27,7 @@ #include "IOThread.hxx" #include "fs/Path.hxx" #include "AudioParser.hxx" -#include "PcmConvert.hxx" +#include "pcm/PcmConvert.hxx" extern "C" { #include "output_plugin.h" diff --git a/test/software_volume.cxx b/test/software_volume.cxx index 929932398..fee4eeff3 100644 --- a/test/software_volume.cxx +++ b/test/software_volume.cxx @@ -24,7 +24,7 @@ */ #include "config.h" -#include "PcmVolume.hxx" +#include "pcm/PcmVolume.hxx" #include "AudioParser.hxx" #include "audio_format.h" #include "stdbin.h" diff --git a/test/test_pcm_channels.cxx b/test/test_pcm_channels.cxx index 8e013d5af..1f9d02daf 100644 --- a/test/test_pcm_channels.cxx +++ b/test/test_pcm_channels.cxx @@ -20,8 +20,8 @@ #include "config.h" #include "test_pcm_all.hxx" #include "test_pcm_util.hxx" -#include "PcmChannels.hxx" -#include "pcm_buffer.h" +#include "pcm/PcmChannels.hxx" +#include "pcm/pcm_buffer.h" #include <glib.h> diff --git a/test/test_pcm_dither.cxx b/test/test_pcm_dither.cxx index 2fb976db5..5694c17f8 100644 --- a/test/test_pcm_dither.cxx +++ b/test/test_pcm_dither.cxx @@ -19,7 +19,7 @@ #include "test_pcm_all.hxx" #include "test_pcm_util.hxx" -#include "PcmDither.hxx" +#include "pcm/PcmDither.hxx" #include <glib.h> diff --git a/test/test_pcm_format.cxx b/test/test_pcm_format.cxx index f175a850c..f9b9516c9 100644 --- a/test/test_pcm_format.cxx +++ b/test/test_pcm_format.cxx @@ -20,10 +20,10 @@ #include "config.h" #include "test_pcm_all.hxx" #include "test_pcm_util.hxx" -#include "PcmFormat.hxx" -#include "PcmDither.hxx" -#include "PcmUtils.hxx" -#include "pcm_buffer.h" +#include "pcm/PcmFormat.hxx" +#include "pcm/PcmDither.hxx" +#include "pcm/PcmUtils.hxx" +#include "pcm/pcm_buffer.h" #include "audio_format.h" #include <glib.h> diff --git a/test/test_pcm_mix.cxx b/test/test_pcm_mix.cxx index a6e01d20f..b4d8486bf 100644 --- a/test/test_pcm_mix.cxx +++ b/test/test_pcm_mix.cxx @@ -20,7 +20,7 @@ #include "config.h" #include "test_pcm_all.hxx" #include "test_pcm_util.hxx" -#include "PcmMix.hxx" +#include "pcm/PcmMix.hxx" #include <glib.h> diff --git a/test/test_pcm_pack.cxx b/test/test_pcm_pack.cxx index e23acad58..313948838 100644 --- a/test/test_pcm_pack.cxx +++ b/test/test_pcm_pack.cxx @@ -21,7 +21,7 @@ #include "test_pcm_util.hxx" extern "C" { -#include "pcm_pack.h" +#include "pcm/pcm_pack.h" } #include <glib.h> diff --git a/test/test_pcm_volume.cxx b/test/test_pcm_volume.cxx index 1ab590490..ec3ac23b9 100644 --- a/test/test_pcm_volume.cxx +++ b/test/test_pcm_volume.cxx @@ -18,7 +18,7 @@ */ #include "test_pcm_all.hxx" -#include "PcmVolume.hxx" +#include "pcm/PcmVolume.hxx" #include "test_pcm_util.hxx" #include <glib.h> |