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. --- ext/libpng/gstpngdec.c | 2 +- ext/libpng/gstpngenc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/libpng') diff --git a/ext/libpng/gstpngdec.c b/ext/libpng/gstpngdec.c index 3be0149d..67f08783 100644 --- a/ext/libpng/gstpngdec.c +++ b/ext/libpng/gstpngdec.c @@ -29,7 +29,7 @@ GST_ELEMENT_DETAILS ("PNG image decoder", "Decode a png video frame to a raw image", "Wim Taymans "); -GST_DEBUG_CATEGORY (pngdec_debug); +GST_DEBUG_CATEGORY_STATIC (pngdec_debug); #define GST_CAT_DEFAULT pngdec_debug static void gst_pngdec_base_init (gpointer g_class); diff --git a/ext/libpng/gstpngenc.c b/ext/libpng/gstpngenc.c index 8736b330..dab1cdf2 100644 --- a/ext/libpng/gstpngenc.c +++ b/ext/libpng/gstpngenc.c @@ -34,7 +34,7 @@ GST_ELEMENT_DETAILS ("PNG image encoder", "Encode a video frame to a .png image", "Jeremy SIMON "); -GST_DEBUG_CATEGORY (pngenc_debug); +GST_DEBUG_CATEGORY_STATIC (pngenc_debug); #define GST_CAT_DEFAULT pngenc_debug /* Filter signals and args */ -- cgit