From 9ccaa904393ddf2189f7d7815cef29a3e3393cbc Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 28 Aug 2011 17:29:09 +0200 Subject: ntp_server: use the I/O thread --- test/run_output.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test/run_output.c') diff --git a/test/run_output.c b/test/run_output.c index 8a34fedec..b4d2b8f9c 100644 --- a/test/run_output.c +++ b/test/run_output.c @@ -18,6 +18,7 @@ */ #include "config.h" +#include "io_thread.h" #include "output_plugin.h" #include "output_internal.h" #include "output_control.h" @@ -36,6 +37,7 @@ #include #include #include +#include struct playlist g_playlist; @@ -146,6 +148,13 @@ int main(int argc, char **argv) return 1; } + io_thread_init(); + if (!io_thread_start(&error)) { + g_warning("%s", error->message); + g_error_free(error); + return EXIT_FAILURE; + } + /* initialize the audio output */ if (!load_audio_output(&ao, argv[2])) @@ -216,6 +225,8 @@ int main(int argc, char **argv) ao_plugin_finish(ao.plugin, ao.data); g_mutex_free(ao.mutex); + io_thread_deinit(); + config_global_finish(); return 0; -- cgit v1.2.3