diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-02-17 11:19:34 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-02-17 11:19:34 +0000 |
commit | 732b9fe817890bb17f4930f823dfbc19e08147dc (patch) | |
tree | 381ad8646f280775c9f9f454785caade5ee77cca | |
parent | 72aef06e4930180ca06e9b98fd514d1fba69799c (diff) |
ext/cdio/gstcdio.c: Init debug category (#331253).
Original commit message from CVS:
* ext/cdio/gstcdio.c: (plugin_init):
Init debug category (#331253).
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/cdio/gstcdio.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2006-02-17 Tim-Philipp Müller <tim at centricular dot net> + + * ext/cdio/gstcdio.c: (plugin_init): + Init debug category (#331253). + 2006-02-16 Tim-Philipp Müller <tim at centricular dot net> * gst/wavparse/gstwavparse.c: (gst_wavparse_stream_headers): diff --git a/ext/cdio/gstcdio.c b/ext/cdio/gstcdio.c index 33547aef..f77792d7 100644 --- a/ext/cdio/gstcdio.c +++ b/ext/cdio/gstcdio.c @@ -79,6 +79,8 @@ plugin_init (GstPlugin * plugin) cdio_log_set_handler (gst_cdio_log_handler); + GST_DEBUG_CATEGORY_INIT (gst_cdio_debug, "cdio", 0, "libcdio elements"); + return TRUE; } |