From c654c7630aad220a4935c34b076e107b6b0561a5 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 9 Apr 2013 01:24:52 +0200 Subject: pcm_*: move to src/pcm/ --- test/read_mixer.cxx | 2 +- test/run_convert.cxx | 2 +- test/run_filter.cxx | 2 +- test/run_output.cxx | 2 +- test/software_volume.cxx | 2 +- test/test_pcm_channels.cxx | 4 ++-- test/test_pcm_dither.cxx | 2 +- test/test_pcm_format.cxx | 8 ++++---- test/test_pcm_mix.cxx | 2 +- test/test_pcm_pack.cxx | 2 +- test/test_pcm_volume.cxx | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) (limited to 'test') 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 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 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 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 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 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 -- cgit v1.2.3