diff options
author | Max Kellermann <max@duempel.org> | 2012-02-04 17:23:53 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-02-04 17:23:53 +0100 |
commit | c46239af22aa943af96eb6a580b00a253d7ba4f8 (patch) | |
tree | 5b925e3af53b355c3b7e24b8e603b0b619d134b8 /test/run_decoder.c | |
parent | ef5cf40fa6d3e2f50ad916be8e5bd99affe7d2e3 (diff) | |
parent | 48eb3ff8d993e4d6977898ccec1d9377b7397f16 (diff) | |
download | mpd-c46239af22aa943af96eb6a580b00a253d7ba4f8.tar.gz mpd-c46239af22aa943af96eb6a580b00a253d7ba4f8.tar.xz mpd-c46239af22aa943af96eb6a580b00a253d7ba4f8.zip |
Merge branch 'v0.16.x'
Conflicts:
src/decoder/ffmpeg_decoder_plugin.c
test/read_tags.c
test/run_decoder.c
Diffstat (limited to 'test/run_decoder.c')
-rw-r--r-- | test/run_decoder.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/run_decoder.c b/test/run_decoder.c index 01bf66aae..0485f47d0 100644 --- a/test/run_decoder.c +++ b/test/run_decoder.c @@ -21,6 +21,7 @@ #include "io_thread.h" #include "decoder_list.h" #include "decoder_api.h" +#include "tag_pool.h" #include "input_init.h" #include "input_stream.h" #include "audio_format.h" @@ -190,6 +191,8 @@ int main(int argc, char **argv) return EXIT_FAILURE; } + tag_pool_init(); + if (!input_stream_global_init(&error)) { g_warning("%s", error->message); g_error_free(error); @@ -245,5 +248,7 @@ int main(int argc, char **argv) return 1; } + tag_pool_deinit(); + return 0; } |