summaryrefslogtreecommitdiff
path: root/gst/rtp/gstrtpqdmdepay.c
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-08-03 21:21:39 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-08-03 21:26:31 +0200
commit20c7977b9ba1c719be0a37a592d7daa365718449 (patch)
treeb8f3cc6644187166081c753eaf2d866734691db5 /gst/rtp/gstrtpqdmdepay.c
parent25c5514fab38ca0d62bbbf0a0d5cc771d0be2ae6 (diff)
rtpqdm2depay,rtpsv3vdepay: Add debugging category.
Diffstat (limited to 'gst/rtp/gstrtpqdmdepay.c')
-rw-r--r--gst/rtp/gstrtpqdmdepay.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gst/rtp/gstrtpqdmdepay.c b/gst/rtp/gstrtpqdmdepay.c
index 01ad47335..32aaff3e8 100644
--- a/gst/rtp/gstrtpqdmdepay.c
+++ b/gst/rtp/gstrtpqdmdepay.c
@@ -26,6 +26,9 @@
#include <gst/rtp/gstrtpbuffer.h>
#include "gstrtpqdmdepay.h"
+GST_DEBUG_CATEGORY (rtpqdm2depay_debug);
+#define GST_CAT_DEFAULT rtpqdm2depay_debug
+
/* elementfactory information */
static const GstElementDetails gst_rtp_qdm2depay_details =
GST_ELEMENT_DETAILS ("RTP QDM2 depayloader",
@@ -413,6 +416,9 @@ gst_rtp_qdm2_depay_change_state (GstElement * element,
gboolean
gst_rtp_qdm2_depay_plugin_init (GstPlugin * plugin)
{
+ GST_DEBUG_CATEGORY_INIT (rtpqdm2depay_debug, "rtpqdm2depay", 0,
+ "RTP QDM2 depayloader");
+
return gst_element_register (plugin, "rtpqdm2depay",
GST_RANK_MARGINAL, GST_TYPE_RTP_QDM2_DEPAY);
}