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/udp/gstdynudpsink.c | 2 +- gst/udp/gstmultiudpsink.c | 2 +- gst/udp/gstudpsrc.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'gst/udp') diff --git a/gst/udp/gstdynudpsink.c b/gst/udp/gstdynudpsink.c index 661f55a2..20eab163 100644 --- a/gst/udp/gstdynudpsink.c +++ b/gst/udp/gstdynudpsink.c @@ -25,7 +25,7 @@ #include "gstdynudpsink.h" #include -GST_DEBUG_CATEGORY (dynudpsink_debug); +GST_DEBUG_CATEGORY_STATIC (dynudpsink_debug); #define GST_CAT_DEFAULT (dynudpsink_debug) static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink", diff --git a/gst/udp/gstmultiudpsink.c b/gst/udp/gstmultiudpsink.c index 0a626614..a770f1a6 100644 --- a/gst/udp/gstmultiudpsink.c +++ b/gst/udp/gstmultiudpsink.c @@ -36,7 +36,7 @@ #include "gstudp-marshal.h" #include "gstmultiudpsink.h" -GST_DEBUG_CATEGORY (multiudpsink_debug); +GST_DEBUG_CATEGORY_STATIC (multiudpsink_debug); #define GST_CAT_DEFAULT (multiudpsink_debug) static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink", diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c index 395f1785..d0f09c3b 100644 --- a/gst/udp/gstudpsrc.c +++ b/gst/udp/gstudpsrc.c @@ -86,7 +86,7 @@ #include #endif -GST_DEBUG_CATEGORY (udpsrc_debug); +GST_DEBUG_CATEGORY_STATIC (udpsrc_debug); #define GST_CAT_DEFAULT (udpsrc_debug) /* the select call is also performed on the control sockets, that way -- cgit