celtpay/depay : change GST_DEBUG_OBJECT to GST_LOG_OBJECT in pay_handle_buffer and depay_process

This commit is contained in:
Gabriel Millaire 2009-10-07 09:31:19 -04:00 committed by Olivier Crête
parent ac90398092
commit 773f142483
2 changed files with 3 additions and 3 deletions

View file

@ -195,7 +195,7 @@ gst_rtp_celt_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
/* ERRORS */
no_clockrate:
{
GST_DEBUG_OBJECT (depayload, "no clock-rate specified");
GST_ERROR_OBJECT (depayload, "no clock-rate specified");
return FALSE;
}
}
@ -219,7 +219,7 @@ gst_rtp_celt_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
timestamp = GST_BUFFER_TIMESTAMP (buf);
GST_DEBUG_OBJECT (depayload, "process : got %d bytes, mark %d ts %u seqn %d",
GST_LOG_OBJECT (depayload, "got %d bytes, mark %d ts %u seqn %d",
GST_BUFFER_SIZE (buf),
gst_rtp_buffer_get_marker (buf),
gst_rtp_buffer_get_timestamp (buf), gst_rtp_buffer_get_seq (buf));

View file

@ -389,7 +389,7 @@ gst_rtp_celt_pay_handle_buffer (GstBaseRTPPayload * basepayload,
duration = GST_BUFFER_DURATION (buffer);
GST_DEBUG_OBJECT (rtpceltpay,
GST_LOG_OBJECT (rtpceltpay,
"got buffer of duration %" GST_TIME_FORMAT ", size %u",
GST_TIME_ARGS (duration), size);