summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtptheoradepay.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-05-21 10:09:23 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-05-21 10:09:23 +0000
commit0a18ec7d8d15d8ab13483dd95bb660cc6e639e3e (patch)
treea90fef7e96f258c6513bb6261994603eaf2e0fbb /gst/rtp/gstrtptheoradepay.c
parent570718c2feb3093e2c3a682b48734f4cac20a164 (diff)
gst/rtp/gstrtptheoradepay.c: Improve debugging of the ident.
Original commit message from CVS: * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_process): Improve debugging of the ident.
Diffstat (limited to 'gst/rtp/gstrtptheoradepay.c')
-rw-r--r--gst/rtp/gstrtptheoradepay.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/rtp/gstrtptheoradepay.c b/gst/rtp/gstrtptheoradepay.c
index 5ae6f812..e3c229e7 100644
--- a/gst/rtp/gstrtptheoradepay.c
+++ b/gst/rtp/gstrtptheoradepay.c
@@ -475,6 +475,9 @@ gst_rtp_theora_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
F = (header & 0xc0) >> 6;
packets = (header & 0xf);
+ GST_DEBUG_OBJECT (depayload, "ident: 0x%08x, F: %d, TDT: %d, packets: %d",
+ ident, F, TDT, packets);
+
if (TDT == 0) {
gboolean do_switch = FALSE;
@@ -497,9 +500,6 @@ gst_rtp_theora_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
payload += 4;
payload_len -= 4;
- GST_DEBUG_OBJECT (depayload, "ident: %u, F: %d, TDT: %d, packets: %d", ident,
- F, TDT, packets);
-
/* fragmented packets, assemble */
if (F != 0) {
GstBuffer *vdata;