From bf6258f58266ebdd9766e659ff4d6c80bd17c6d0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 14 Dec 2009 21:26:43 +0100 Subject: test/run_{decoder,filter}: implemented GLib log callback Log to stderr, not to stdout (which broke PCM output). --- test/run_decoder.c | 12 ++++++++++++ test/run_filter.c | 13 +++++++++++++ 2 files changed, 25 insertions(+) diff --git a/test/run_decoder.c b/test/run_decoder.c index 72e0783f0..47cab2aac 100644 --- a/test/run_decoder.c +++ b/test/run_decoder.c @@ -30,6 +30,16 @@ #include #include +static void +my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level, + const gchar *message, G_GNUC_UNUSED gpointer user_data) +{ + if (log_domain != NULL) + g_printerr("%s: %s\n", log_domain, message); + else + g_printerr("%s\n", message); +} + /** * No-op dummy. */ @@ -139,6 +149,8 @@ int main(int argc, char **argv) decoder_name = argv[1]; decoder.uri = argv[2]; + g_log_set_default_handler(my_log_func, NULL); + input_stream_global_init(); decoder_plugin_init_all(); diff --git a/test/run_filter.c b/test/run_filter.c index 62cafdbc1..c1fb50879 100644 --- a/test/run_filter.c +++ b/test/run_filter.c @@ -31,6 +31,16 @@ #include #include +static void +my_log_func(const gchar *log_domain, G_GNUC_UNUSED GLogLevelFlags log_level, + const gchar *message, G_GNUC_UNUSED gpointer user_data) +{ + if (log_domain != NULL) + g_printerr("%s: %s\n", log_domain, message); + else + g_printerr("%s\n", message); +} + static const struct config_param * find_named_config_block(const char *block, const char *name) { @@ -87,7 +97,10 @@ int main(int argc, char **argv) audio_format_init(&audio_format, 44100, SAMPLE_FORMAT_S16, 2); + /* initialize GLib */ + g_thread_init(NULL); + g_log_set_default_handler(my_log_func, NULL); /* read configuration file (mpd.conf) */ -- cgit v1.2.3