diff options
author | Max Kellermann <max@duempel.org> | 2014-01-24 16:31:52 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-24 16:43:57 +0100 |
commit | 7c52a1c04bccac68f4220c8bf3d3a59c16ed58db (patch) | |
tree | 6c1f8b99225343974584817b3278958599e2e12a /test | |
parent | 9d34fc394ce30a28ec0e43f2ad7172b8de8b3be6 (diff) | |
download | mpd-7c52a1c04bccac68f4220c8bf3d3a59c16ed58db.tar.gz mpd-7c52a1c04bccac68f4220c8bf3d3a59c16ed58db.tar.xz mpd-7c52a1c04bccac68f4220c8bf3d3a59c16ed58db.zip |
Filter*: move to filter/
Diffstat (limited to 'test')
-rw-r--r-- | test/read_mixer.cxx | 2 | ||||
-rw-r--r-- | test/run_filter.cxx | 6 | ||||
-rw-r--r-- | test/run_output.cxx | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx index 60c60c86a..d080f46ca 100644 --- a/test/read_mixer.cxx +++ b/test/read_mixer.cxx @@ -20,7 +20,7 @@ #include "config.h" #include "MixerControl.hxx" #include "MixerList.hxx" -#include "FilterRegistry.hxx" +#include "filter/FilterRegistry.hxx" #include "pcm/Volume.hxx" #include "GlobalEvents.hxx" #include "Main.hxx" diff --git a/test/run_filter.cxx b/test/run_filter.cxx index 16808ebb2..3ce116280 100644 --- a/test/run_filter.cxx +++ b/test/run_filter.cxx @@ -23,8 +23,8 @@ #include "fs/Path.hxx" #include "AudioParser.hxx" #include "AudioFormat.hxx" -#include "FilterPlugin.hxx" -#include "FilterInternal.hxx" +#include "filter/FilterPlugin.hxx" +#include "filter/FilterInternal.hxx" #include "pcm/Volume.hxx" #include "MixerControl.hxx" #include "stdbin.h" @@ -153,7 +153,7 @@ int main(int argc, char **argv) dest = filter->FilterPCM(buffer, (size_t)nbytes, &length, error); if (dest == NULL) { - LogError(error, "Filter failed"); + LogError(error, "filter/Filter failed"); filter->Close(); delete filter; return EXIT_FAILURE; diff --git a/test/run_output.cxx b/test/run_output.cxx index de2152337..522db5e1e 100644 --- a/test/run_output.cxx +++ b/test/run_output.cxx @@ -32,7 +32,7 @@ #include "fs/Path.hxx" #include "AudioParser.hxx" #include "pcm/PcmConvert.hxx" -#include "FilterRegistry.hxx" +#include "filter/FilterRegistry.hxx" #include "PlayerControl.hxx" #include "stdbin.h" #include "util/Error.hxx" |