mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
gst/wavenc/gstwavenc.c: Actually define the debug object being used in wavenc. Fixes #316205
Original commit message from CVS: * gst/wavenc/gstwavenc.c: (gst_wavenc_class_init): Actually define the debug object being used in wavenc. Fixes #316205
This commit is contained in:
parent
3984e73c43
commit
1b61a0a311
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-09-14 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* gst/wavenc/gstwavenc.c: (gst_wavenc_class_init):
|
||||
Actually define the debug object being used in wavenc. Fixes #316205
|
||||
|
||||
2005-09-14 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* gst/smpte/Makefile.am:
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "gstwavenc.h"
|
||||
#include "riff.h"
|
||||
|
||||
GST_DEBUG_CATEGORY_EXTERN (wavenc_debug);
|
||||
GST_DEBUG_CATEGORY_STATIC (wavenc_debug);
|
||||
#define GST_CAT_DEFAULT wavenc_debug
|
||||
|
||||
static void gst_wavenc_base_init (gpointer g_class);
|
||||
|
@ -182,6 +182,8 @@ gst_wavenc_class_init (GstWavEncClass * klass)
|
|||
element_class->change_state = gst_wavenc_change_state;
|
||||
|
||||
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
||||
|
||||
GST_DEBUG_CATEGORY_INIT (wavenc_debug, "wavenc", 0, "WAV encoder element");
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue