diff --git a/ChangeLog b/ChangeLog index 31ca7e47f2..86dec22f95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-05-21 Wim Taymans + + * gst/rtp/gstrtptheoradepay.c: (gst_rtp_theora_depay_process): + Improve debugging of the ident. + 2008-05-21 Wim Taymans Patch by: Bruno Santos diff --git a/gst/rtp/gstrtptheoradepay.c b/gst/rtp/gstrtptheoradepay.c index 5ae6f812fb..e3c229e714 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;