mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-09 17:44:14 +00:00
gst/aiffparse/aiffparse.c: Fix debugging category initialization.
Original commit message from CVS: * gst/aiffparse/aiffparse.c: (plugin_init): Fix debugging category initialization. Fixes #556274
This commit is contained in:
parent
4dc1e6fb4f
commit
847dd7016e
2 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-10-14 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* gst/aiffparse/aiffparse.c: (plugin_init):
|
||||
Fix debugging category initialization.
|
||||
Fixes #556274
|
||||
|
||||
2008-10-14 Jan Schmidt <jan.schmidt@sun.com>
|
||||
|
||||
* ext/apexsink/gstapexsink.c:
|
||||
|
|
|
@ -102,11 +102,7 @@ GST_STATIC_PAD_TEMPLATE ("src",
|
|||
GST_STATIC_CAPS (GST_AUDIO_INT_PAD_TEMPLATE_CAPS)
|
||||
);
|
||||
|
||||
#define DEBUG_INIT(bla) \
|
||||
GST_DEBUG_CATEGORY_INIT (aiffparse_debug, "aiffparse", 0, "AIFF parser");
|
||||
|
||||
GST_BOILERPLATE_FULL (AIFFParse, gst_aiffparse, GstElement,
|
||||
GST_TYPE_ELEMENT, DEBUG_INIT);
|
||||
GST_BOILERPLATE (AIFFParse, gst_aiffparse, GstElement, GST_TYPE_ELEMENT);
|
||||
|
||||
static void
|
||||
gst_aiffparse_base_init (gpointer g_class)
|
||||
|
@ -1559,6 +1555,8 @@ gst_aiffparse_change_state (GstElement * element, GstStateChange transition)
|
|||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
GST_DEBUG_CATEGORY_INIT (aiffparse_debug, "aiffparse", 0, "AIFF parser");
|
||||
|
||||
#ifdef ENABLE_NLS
|
||||
GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
|
||||
LOCALEDIR);
|
||||
|
|
Loading…
Reference in a new issue