diff options
author | Max Kellermann <max@duempel.org> | 2014-02-07 18:52:19 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-07 18:52:19 +0100 |
commit | 6b421cc354cb0c297fcf99d7824b99b61caec99d (patch) | |
tree | e41f9fd76e3850da2716ab3dfd4fa08025f351f3 /test/run_decoder.cxx | |
parent | 37ec29b225095e9c02b974134e056f8ba1a8678c (diff) |
DecoderPlugin: pass Path instance to file_decode() and scan_file()
Diffstat (limited to 'test/run_decoder.cxx')
-rw-r--r-- | test/run_decoder.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/run_decoder.cxx b/test/run_decoder.cxx index 3e5f61778..f3bf93a3e 100644 --- a/test/run_decoder.cxx +++ b/test/run_decoder.cxx @@ -23,6 +23,7 @@ #include "decoder/DecoderAPI.hxx" #include "input/Init.hxx" #include "input/InputStream.hxx" +#include "fs/Path.hxx" #include "AudioFormat.hxx" #include "util/Error.hxx" #include "thread/Cond.hxx" @@ -211,7 +212,7 @@ int main(int argc, char **argv) decoder.initialized = false; if (decoder.plugin->file_decode != NULL) { - decoder.plugin->FileDecode(decoder, decoder.uri); + decoder.plugin->FileDecode(decoder, Path::FromFS(decoder.uri)); } else if (decoder.plugin->stream_decode != NULL) { Mutex mutex; Cond cond; |