sys/oss/: Actually use the 'oss' debug category we register.

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.
This commit is contained in:
Tim-Philipp Müller 2005-10-26 11:12:34 +00:00
parent caa4645ae9
commit 6b9cda6ee9
9 changed files with 31 additions and 2 deletions

View file

@ -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),

View file

@ -27,8 +27,6 @@
#include "gstosssink.h"
#include "gstosssrc.h"
extern gchar *__gst_oss_plugin_dir;
GST_DEBUG_CATEGORY (oss_debug);
static gboolean

View 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);

View 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

View 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))

View 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",

View 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))

View 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)",

View 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)",