summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.co.uk>2009-09-16 13:57:05 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.co.uk>2009-09-30 20:36:05 -0400
commit680c97a7cae9e5ef7743750827ae1e539a075de7 (patch)
tree00409c3ddf0e9240b39cf2e5a7b10b3eaacd703b
parent1ba7693f7a307b96b2b2016be9ef22231c25af05 (diff)
rtpg729pay/depay: Add debug categories
-rw-r--r--gst/rtp/gstrtpg729depay.c7
-rw-r--r--gst/rtp/gstrtpg729pay.c6
2 files changed, 13 insertions, 0 deletions
diff --git a/gst/rtp/gstrtpg729depay.c b/gst/rtp/gstrtpg729depay.c
index 2c182474..7eb34772 100644
--- a/gst/rtp/gstrtpg729depay.c
+++ b/gst/rtp/gstrtpg729depay.c
@@ -26,6 +26,10 @@
#include <string.h>
#include "gstrtpg729depay.h"
+GST_DEBUG_CATEGORY_STATIC (rtpg729depay_debug);
+#define GST_CAT_DEFAULT (rtpg729depay_debug)
+
+
/* references:
*
* RFC 3551 (4.5.6)
@@ -93,6 +97,9 @@ gst_rtp_g729_depay_base_init (gpointer klass)
gst_static_pad_template_get (&gst_rtp_g729_depay_sink_template));
gst_element_class_set_details (element_class, &gst_rtp_g729depay_details);
+
+ GST_DEBUG_CATEGORY_INIT (rtpg729depay_debug, "rtpg729depay", 0,
+ "G.729 RTP Depayloader");
}
static void
diff --git a/gst/rtp/gstrtpg729pay.c b/gst/rtp/gstrtpg729pay.c
index 23f3280f..003988e3 100644
--- a/gst/rtp/gstrtpg729pay.c
+++ b/gst/rtp/gstrtpg729pay.c
@@ -35,6 +35,9 @@
#include "gstrtpg729pay.h"
+GST_DEBUG_CATEGORY_STATIC (rtpg729pay_debug);
+#define GST_CAT_DEFAULT (rtpg729pay_debug)
+
#define G729_FRAME_SIZE 10
#define G729B_CN_FRAME_SIZE 2
#define G729_FRAME_DURATION (10 * GST_MSECOND)
@@ -91,6 +94,9 @@ gst_rtp_g729_pay_base_init (gpointer klass)
gst_element_class_add_pad_template (element_class,
gst_static_pad_template_get (&gst_rtp_g729_pay_src_template));
gst_element_class_set_details (element_class, &gst_rtp_g729_pay_details);
+
+ GST_DEBUG_CATEGORY_INIT (rtpg729pay_debug, "rtpg729pay", 0,
+ "G.729 RTP Payloader");
}
static void