From 05eaedc496de5e686a5a6d875598104459d60af6 Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Thu, 22 Jun 2006 19:31:04 +0000 Subject: Use GST_DEBUG_CATEGORY_STATIC where possible (#342503) plus two minor macro fixes. Original commit message from CVS: * ext/annodex/gstcmmldec.c: * ext/annodex/gstcmmlenc.c: * ext/annodex/gstcmmlparser.c: * ext/dv/gstdvdec.c: * ext/dv/gstdvdemux.c: * ext/gdk_pixbuf/pixbufscale.c: * ext/jpeg/gstjpegenc.c: * ext/jpeg/gstsmokedec.c: * ext/jpeg/gstsmokeenc.c: * ext/libpng/gstpngdec.c: * ext/libpng/gstpngenc.c: * ext/speex/gstspeexenc.c: * gst/alpha/gstalphacolor.c: * gst/cutter/gstcutter.c: * gst/debug/gstnavigationtest.c: * gst/icydemux/gsticydemux.c: * gst/level/gstlevel.c: * gst/multipart/multipart.c: * gst/rtp/gstrtpamrpay.c: * gst/rtp/gstrtpdepay.c: * gst/rtp/gstrtpilbcpay.c: * gst/rtp/gstrtpmp4gpay.c: * gst/rtp/gstrtpmp4vpay.c: * gst/rtsp/gstrtpdec.c: * gst/rtsp/gstrtspsrc.c: * gst/udp/gstdynudpsink.c: * gst/udp/gstmultiudpsink.c: * gst/udp/gstudpsrc.c: * gst/videobox/gstvideobox.c: * gst/videofilter/gstvideoflip.c: Use GST_DEBUG_CATEGORY_STATIC where possible (#342503) plus two minor macro fixes. --- gst/rtp/gstrtpilbcpay.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gst/rtp/gstrtpilbcpay.c') diff --git a/gst/rtp/gstrtpilbcpay.c b/gst/rtp/gstrtpilbcpay.c index 3882556a..cb9409cd 100644 --- a/gst/rtp/gstrtpilbcpay.c +++ b/gst/rtp/gstrtpilbcpay.c @@ -32,7 +32,7 @@ static GstElementDetails gst_rtpilbcpay_details = { "Philippe Kalaf " }; -GST_DEBUG_CATEGORY (rtpilbcpay_debug); +GST_DEBUG_CATEGORY_STATIC (rtpilbcpay_debug); #define GST_CAT_DEFAULT (rtpilbcpay_debug) static GstStaticPadTemplate gst_rtpilbcpay_sink_template = @@ -144,8 +144,8 @@ gst_rtpilbcpay_setcaps (GstBaseRTPPayload * basertppayload, GstCaps * caps) gst_basertppayload_set_outcaps (basertppayload, "mode", G_TYPE_INT, mode, NULL); if (mode != rtpilbcpay->mode && rtpilbcpay->mode != -1) { - GST_ERROR_OBJECT (rtpilbcpay, "Mode has changed from %d to %d! \ - Mode cannot change while streaming", rtpilbcpay->mode, mode); + GST_ERROR_OBJECT (rtpilbcpay, "Mode has changed from %d to %d! " + "Mode cannot change while streaming", rtpilbcpay->mode, mode); return FALSE; } rtpilbcpay->mode = mode; -- cgit