gst/playback/gsturidecodebin.c: Init debug category before using it.
authorTim-Philipp Müller <tim@centricular.net>
Mon, 23 Jul 2007 10:41:18 +0000 (10:41 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Mon, 23 Jul 2007 10:41:18 +0000 (10:41 +0000)
Original commit message from CVS:
* gst/playback/gsturidecodebin.c:
Init debug category before using it.

ChangeLog
gst/playback/gsturidecodebin.c

index 22cdc6c..268e2e8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-23  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/playback/gsturidecodebin.c:
+         Init debug category before using it.
+
 2007-07-21  Jan Schmidt  <thaytan@noraisin.net>
 
        * gst-libs/gst/interfaces/mixer.h:
index 27ee46f..4492237 100644 (file)
@@ -135,9 +135,6 @@ gst_uri_decode_bin_class_init (GstURIDecodeBinClass * klass)
       g_param_spec_string ("uri", "URI", "URI to decode",
           DEFAULT_PROP_URI, G_PARAM_READWRITE));
 
-  GST_DEBUG_CATEGORY_INIT (gst_uri_decode_bin_debug, "uridecodebin", 0,
-      "URI decoder element");
-
   gstelement_class->query = GST_DEBUG_FUNCPTR (gst_uri_decode_bin_query);
   gstelement_class->change_state =
       GST_DEBUG_FUNCPTR (gst_uri_decode_bin_change_state);
@@ -1131,6 +1128,9 @@ setup_failed:
 static gboolean
 plugin_init (GstPlugin * plugin)
 {
+  GST_DEBUG_CATEGORY_INIT (gst_uri_decode_bin_debug, "uridecodebin", 0,
+      "URI decoder element");
+
 #ifdef ENABLE_NLS
   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
       LOCALEDIR);