mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
celtpay/depay : change GST_DEBUG_OBJECT to GST_LOG_OBJECT in pay_handle_buffer and depay_process
This commit is contained in:
parent
ac90398092
commit
773f142483
2 changed files with 3 additions and 3 deletions
|
@ -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));
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue