aboutsummaryrefslogtreecommitdiff
path: root/src/decoder/faad_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-02-17 08:51:34 +0100
committerMax Kellermann <max@duempel.org>2009-02-17 08:51:34 +0100
commitd8db46edfaed14c38d97e8880ff07fc629908b2d (patch)
tree716059a2d530fce866d2721e8093fa35f301d809 /src/decoder/faad_plugin.c
parentc4d69f0ae1e0df6bac03fe131b4e8a40f75b5c4b (diff)
decoders: added and fixed GLib log domains
Fixed the log domains of the renamed decoders. Added G_LOG_DOMAIN macros in decoders which don't have one already.
Diffstat (limited to 'src/decoder/faad_plugin.c')
-rw-r--r--src/decoder/faad_plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/faad_plugin.c b/src/decoder/faad_plugin.c
index a8e4a604..68198d53 100644
--- a/src/decoder/faad_plugin.c
+++ b/src/decoder/faad_plugin.c
@@ -27,7 +27,7 @@
#include <glib.h>
#undef G_LOG_DOMAIN
-#define G_LOG_DOMAIN "aac"
+#define G_LOG_DOMAIN "faad"
/* all code here is either based on or copied from FAAD2's frontend code */
struct faad_buffer {
@@ -402,7 +402,7 @@ aac_stream_decode(struct decoder *mpd_decoder, struct input_stream *is)
};
if (!audio_format_valid(&audio_format)) {
- g_warning("aac: invalid audio format\n");
+ g_warning("invalid audio format\n");
break;
}