add debug category
authorThomas Vander Stichele <thomas@apestaart.org>
Wed, 18 Feb 2004 16:44:51 +0000 (16:44 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Wed, 18 Feb 2004 16:44:51 +0000 (16:44 +0000)
Original commit message from CVS:
add debug category

ChangeLog
ext/gdk_pixbuf/gstgdkpixbuf.c

index df041eb7f7d21de259b0abaa4d108f68295389cf..a50603a443e920784409d909c55098cd279f3805 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
+          set up debug category
+
 2004-02-18  Julien MOUTTE <julien@moutte.net>
 
        * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
index fe40b925c0942369ae281c4068844fa5f91c1d2c..efe2f20b50727a4d1545c55c447e6124d15a415b 100644 (file)
@@ -30,6 +30,9 @@
 
 #include "gstgdkpixbuf.h"
 
+GST_DEBUG_CATEGORY_STATIC (gst_gdk_pixbuf_debug);
+#define GST_CAT_DEFAULT gst_gdk_pixbuf_debug
+
 static GstElementDetails plugin_details = {
   "GdkPixbuf image decoder",
   "Codec/Decoder/Image",
@@ -445,7 +448,9 @@ static gboolean
 plugin_init (GstPlugin *plugin)
 {
   GstCaps *caps;
-  
+
+  GST_DEBUG_CATEGORY_INIT (gst_gdk_pixbuf_debug, "gdkpixbuf", 0, "gdk pixbuf loader");
+
   if (!gst_element_register (plugin, "gdkpixbufdec", GST_RANK_NONE, GST_TYPE_GDK_PIXBUF))
     return FALSE;