mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
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:
parent
caa4645ae9
commit
6b9cda6ee9
9 changed files with 31 additions and 2 deletions
12
ChangeLog
12
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),
|
||||
|
|
|
@ -27,8 +27,6 @@
|
|||
#include "gstosssink.h"
|
||||
#include "gstosssrc.h"
|
||||
|
||||
extern gchar *__gst_oss_plugin_dir;
|
||||
|
||||
GST_DEBUG_CATEGORY (oss_debug);
|
||||
|
||||
static gboolean
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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))
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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))
|
||||
|
||||
|
|
|
@ -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)",
|
||||
|
|
|
@ -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)",
|
||||
|
|
Loading…
Reference in a new issue