diff options
author | Youness Alaoui <youness.alaoui@collabora.co.uk> | 2008-04-12 23:43:25 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-02-17 19:29:39 +0100 |
commit | c931b38ad64b056d096ab1852a0ae8e6a12f8716 (patch) | |
tree | fa90ddb11c09985cf6d23647a9e25a873eaf5710 /gst | |
parent | 9636cecbd64a1d021e48cd74442724c665514f43 (diff) | |
download | gst-plugins-bad-c931b38ad64b056d096ab1852a0ae8e6a12f8716.tar.gz gst-plugins-bad-c931b38ad64b056d096ab1852a0ae8e6a12f8716.tar.bz2 gst-plugins-bad-c931b38ad64b056d096ab1852a0ae8e6a12f8716.zip |
[MOVED FROM GST-P-FARSIGHT] Removed debug output
20080412234325-4f0f6-36b946a7ca3ab4e5802917b8930f036c50a93a29.gz
Diffstat (limited to 'gst')
-rw-r--r-- | gst/siren/gstrtpsirendepay.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gst/siren/gstrtpsirendepay.c b/gst/siren/gstrtpsirendepay.c index 9e6c5345..3ca80af8 100644 --- a/gst/siren/gstrtpsirendepay.c +++ b/gst/siren/gstrtpsirendepay.c @@ -121,14 +121,6 @@ gst_rtp_siren_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf) { GstBuffer *outbuf; - g_print ("process : got %d bytes, mark %d ts %u seqn %d, header len %d, payload len %d\n", - GST_BUFFER_SIZE (buf), - gst_rtp_buffer_get_marker (buf), - gst_rtp_buffer_get_timestamp (buf), - gst_rtp_buffer_get_seq (buf), - gst_rtp_buffer_get_header_len (buf), - gst_rtp_buffer_get_payload_len (buf)); - outbuf = gst_rtp_buffer_get_payload_buffer (buf); return outbuf; |