mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
add oss debugging category
Original commit message from CVS: add oss debugging category
This commit is contained in:
parent
c5ee12c2a7
commit
21c053773f
3 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* sys/oss/gstossaudio.c: (plugin_init):
|
||||||
|
* sys/oss/gstosselement.h:
|
||||||
|
make an oss debugging category
|
||||||
|
|
||||||
2004-01-11 David Schleef <ds@schleef.org>
|
2004-01-11 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* ext/ffmpeg/gstffmpeg.c:
|
* ext/ffmpeg/gstffmpeg.c:
|
||||||
|
|
|
@ -27,6 +27,8 @@
|
||||||
|
|
||||||
extern gchar *__gst_oss_plugin_dir;
|
extern gchar *__gst_oss_plugin_dir;
|
||||||
|
|
||||||
|
GST_DEBUG_CATEGORY (oss_debug);
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin *plugin)
|
plugin_init (GstPlugin *plugin)
|
||||||
{
|
{
|
||||||
|
@ -42,6 +44,7 @@ plugin_init (GstPlugin *plugin)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GST_DEBUG_CATEGORY_INIT (oss_debug, "oss", 0, "OSS elements");
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,9 @@
|
||||||
|
|
||||||
#include <gst/gst.h>
|
#include <gst/gst.h>
|
||||||
|
|
||||||
|
GST_DEBUG_CATEGORY_EXTERN (oss_debug);
|
||||||
|
#define GST_CAT_DEFAULT oss_debug
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
#define GST_TYPE_OSSELEMENT \
|
#define GST_TYPE_OSSELEMENT \
|
||||||
|
|
Loading…
Reference in a new issue