From d9cccd2fd8b20310d75fb072aa9c5480e229fd89 Mon Sep 17 00:00:00 2001 From: Zaheer Abbas Merali Date: Wed, 28 Jul 2004 20:26:31 +0000 Subject: ext/lame/gstlame.c: send tag events downstream Original commit message from CVS: 2004-07-28 Zaheer Abbas Merali * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type), (gst_shout2send_get_type), (gst_shout2send_set_clock), (gst_shout2send_class_init), (gst_shout2send_init), (set_shout_metadata), (gst_shout2send_set_metadata), (gst_shout2send_chain), (gst_shout2send_set_property), (gst_shout2send_get_property), (gst_shout2send_connect), (gst_shout2send_change_state): * ext/shout2/gstshout2.h: - fix for sending mp3 audio to icecast2 server, if pad link function not called before PAUSED state - added option to use GStreamer clock sync (as opposed to libshout's own sync) - added tagging support for mp3 audio broadcasted * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init): debug info --- gst/monoscope/gstmonoscope.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'gst') diff --git a/gst/monoscope/gstmonoscope.c b/gst/monoscope/gstmonoscope.c index ae936f6c..581560ca 100644 --- a/gst/monoscope/gstmonoscope.c +++ b/gst/monoscope/gstmonoscope.c @@ -26,6 +26,10 @@ #include #include "monoscope.h" +GST_DEBUG_CATEGORY (monoscope_debug); +#define GST_CAT_DEFAULT monoscope_debug + + #define GST_TYPE_MONOSCOPE (gst_monoscope_get_type()) #define GST_MONOSCOPE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_MONOSCOPE,GstMonoscope)) #define GST_MONOSCOPE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_MONOSCOPE,GstMonoscope)) @@ -178,6 +182,9 @@ gst_monoscope_class_init (GstMonoscopeClass * klass) gstelement_class = (GstElementClass *) klass; parent_class = g_type_class_ref (GST_TYPE_ELEMENT); + + GST_DEBUG_CATEGORY_INIT (monoscope_debug, "monoscope", 0, + "monoscope element"); } static void -- cgit