sys/oss/: Actually use the 'oss' debug category we register.
authorTim-Philipp Müller <tim@centricular.net>
Wed, 26 Oct 2005 11:12:34 +0000 (11:12 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Wed, 26 Oct 2005 11:12:34 +0000 (11:12 +0000)
Original commit message from CVS:
* sys/oss/gstossaudio.c:
* sys/oss/gstossdmabuffer.c:
* sys/oss/gstosshelper.c:
* sys/oss/gstossmixer.c:
* sys/oss/gstossmixerelement.c:
* sys/oss/gstossmixertrack.c:
* sys/oss/gstosssink.c:
* sys/oss/gstosssrc.c:
Actually use the 'oss' debug category we register.

ChangeLog
sys/oss/gstossaudio.c
sys/oss/gstossdmabuffer.c
sys/oss/gstosshelper.c
sys/oss/gstossmixer.c
sys/oss/gstossmixerelement.c
sys/oss/gstossmixertrack.c
sys/oss/gstosssink.c
sys/oss/gstosssrc.c

index 4e39b4f..f84a267 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * sys/oss/gstossaudio.c:
+       * sys/oss/gstossdmabuffer.c:
+       * sys/oss/gstosshelper.c:
+       * sys/oss/gstossmixer.c:
+       * sys/oss/gstossmixerelement.c:
+       * sys/oss/gstossmixertrack.c:
+       * sys/oss/gstosssink.c:
+       * sys/oss/gstosssrc.c:
+         Actually use the 'oss' debug category we register.
+
 2005-10-26  Julien MOUTTE  <julien@moutte.net>
 
        * gst/videomixer/videomixer.c: (gst_videomixer_pad_set_property),
index 500cea6..1a5f051 100644 (file)
@@ -27,8 +27,6 @@
 #include "gstosssink.h"
 #include "gstosssrc.h"
 
-extern gchar *__gst_oss_plugin_dir;
-
 GST_DEBUG_CATEGORY (oss_debug);
 
 static gboolean
index 47e06d1..58336c0 100644 (file)
@@ -34,6 +34,9 @@
 
 #include "gstossdmabuffer.h"
 
+GST_DEBUG_CATEGORY_EXTERN (oss_debug);
+#define GST_CAT_DEFAULT oss_debug
+
 static void gst_ossdmabuffer_class_init (GstOssDMABufferClass * klass);
 static void gst_ossdmabuffer_init (GstOssDMABuffer * ossdmabuffer);
 static void gst_ossdmabuffer_dispose (GObject * object);
index 987047a..931d72c 100644 (file)
@@ -40,6 +40,9 @@
 #include "gstosshelper.h"
 #include "gstossmixer.h"
 
+GST_DEBUG_CATEGORY_EXTERN (oss_debug);
+#define GST_CAT_DEFAULT oss_debug
+
 #if 0
 
 #ifdef HAVE_OSS_INCLUDE_IN_SYS
index e199414..b1758d6 100644 (file)
@@ -37,6 +37,9 @@
 #include "gstossmixer.h"
 #include "gstossmixertrack.h"
 
+GST_DEBUG_CATEGORY_EXTERN (oss_debug);
+#define GST_CAT_DEFAULT oss_debug
+
 #define MASK_BIT_IS_SET(mask, bit) \
   (mask & (1 << bit))
 
index 42fb595..9aeebcd 100644 (file)
@@ -24,6 +24,8 @@
 
 #include "gstossmixerelement.h"
 
+GST_DEBUG_CATEGORY_EXTERN (oss_debug);
+#define GST_CAT_DEFAULT oss_debug
 
 static GstElementDetails gst_oss_mixer_element_details =
 GST_ELEMENT_DETAILS ("OSS Mixer",
index 48e4a9d..d98f345 100644 (file)
@@ -36,6 +36,9 @@
 
 #include "gstossmixertrack.h"
 
+GST_DEBUG_CATEGORY_EXTERN (oss_debug);
+#define GST_CAT_DEFAULT oss_debug
+
 #define MASK_BIT_IS_SET(mask, bit) \
   (mask & (1 << bit))
 
index 4e46c23..bc9a3a6 100644 (file)
@@ -33,6 +33,9 @@
 
 #include "gstosssink.h"
 
+GST_DEBUG_CATEGORY_EXTERN (oss_debug);
+#define GST_CAT_DEFAULT oss_debug
+
 /* elementfactory information */
 static GstElementDetails gst_oss_sink_details =
 GST_ELEMENT_DETAILS ("Audio Sink (OSS)",
index bb5d7ca..fd9f2cc 100644 (file)
@@ -32,6 +32,8 @@
 
 #include "gstosssrc.h"
 
+GST_DEBUG_CATEGORY_EXTERN (oss_debug);
+#define GST_CAT_DEFAULT oss_debug
 
 static GstElementDetails gst_oss_src_details =
 GST_ELEMENT_DETAILS ("Audio Source (OSS)",