ext/dvdread/dvdreadsrc.c: Put debug category initialization before use of GST_DEBUG...
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 14 Aug 2006 09:50:26 +0000 (09:50 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 14 Aug 2006 09:50:26 +0000 (09:50 +0000)
Original commit message from CVS:
Patch by: Edward Hervey (edward at fluendo dot com)
* ext/dvdread/dvdreadsrc.c: (plugin_init):
Put debug category initialization before use of GST_DEBUG, in order
to remove a fatal warning.  Fixes #350895

ChangeLog
ext/dvdread/dvdreadsrc.c

index 30cc476..dcaad25 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       Patch by: Edward Hervey (edward at fluendo dot com)
+
+       * ext/dvdread/dvdreadsrc.c: (plugin_init):
+       Put debug category initialization before use of GST_DEBUG, in order
+       to remove a fatal warning.  Fixes #350895
+
 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
 
        * gst/dvdsub/gstdvdsubdec.c: (plugin_init):
index cbcbfa6..c915980 100644 (file)
@@ -1572,15 +1572,15 @@ gst_dvd_read_src_do_init (GType dvdreadsrc_type)
 static gboolean
 plugin_init (GstPlugin * plugin)
 {
+  GST_DEBUG_CATEGORY_INIT (gstgst_dvd_read_src_debug, "dvdreadsrc", 0,
+      "DVD reader element based on dvdreadsrc");
+
 #ifdef ENABLE_NLS
   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
       LOCALEDIR);
   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
 #endif /* ENABLE_NLS */
 
-  GST_DEBUG_CATEGORY_INIT (gstgst_dvd_read_src_debug, "dvdreadsrc", 0,
-      "DVD reader element based on dvdreadsrc");
-
   if (!gst_element_register (plugin, "dvdreadsrc", GST_RANK_SECONDARY,
           GST_TYPE_DVD_READ_SRC)) {
     return FALSE;