From a675e1893597c953ab1f0f0498b30f3b6f0b1deb Mon Sep 17 00:00:00 2001 From: Stian Selnes Date: Mon, 16 Jun 2014 16:14:28 +0200 Subject: [PATCH] rtph263pdepay: init debug category https://bugzilla.gnome.org/show_bug.cgi?id=752012 --- gst/rtp/gstrtph263pdepay.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gst/rtp/gstrtph263pdepay.c b/gst/rtp/gstrtph263pdepay.c index 7c69044..9fc95a8 100644 --- a/gst/rtp/gstrtph263pdepay.c +++ b/gst/rtp/gstrtph263pdepay.c @@ -26,6 +26,9 @@ #include #include "gstrtph263pdepay.h" +GST_DEBUG_CATEGORY_STATIC (rtph263pdepay_debug); +#define GST_CAT_DEFAULT (rtph263pdepay_debug) + static GstStaticPadTemplate gst_rtp_h263p_depay_src_template = GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, @@ -117,6 +120,9 @@ gst_rtp_h263p_depay_class_init (GstRtpH263PDepayClass * klass) gstrtpbasedepayload_class->process = gst_rtp_h263p_depay_process; gstrtpbasedepayload_class->set_caps = gst_rtp_h263p_depay_setcaps; + + GST_DEBUG_CATEGORY_INIT (rtph263pdepay_debug, "rtph263pdepay", 0, + "H263+ Video RTP Depayloader"); } static void -- 2.7.4