mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
audioringbuffer: Don't spam INFO for every buffer
This makes GST_DEBUG=4 outputs too spammy, and such frequent messages are meant to go into DEBUG or TRACE anyway.
This commit is contained in:
parent
45dba0ac67
commit
baadc3b302
1 changed files with 2 additions and 2 deletions
|
@ -1840,7 +1840,7 @@ gst_audio_ring_buffer_read (GstAudioRingBuffer * buf, guint64 sample,
|
|||
|
||||
if (buf->timestamps && timestamp) {
|
||||
*timestamp = buf->timestamps[readseg % segtotal];
|
||||
GST_INFO_OBJECT (buf, "Retrieved timestamp %" GST_TIME_FORMAT
|
||||
GST_DEBUG_OBJECT (buf, "Retrieved timestamp %" GST_TIME_FORMAT
|
||||
" @ %d", GST_TIME_ARGS (*timestamp), readseg % segtotal);
|
||||
}
|
||||
|
||||
|
@ -2080,7 +2080,7 @@ gst_audio_ring_buffer_set_timestamp (GstAudioRingBuffer * buf, gint readseg,
|
|||
{
|
||||
g_return_if_fail (GST_IS_AUDIO_RING_BUFFER (buf));
|
||||
|
||||
GST_INFO_OBJECT (buf, "Storing timestamp %" GST_TIME_FORMAT
|
||||
GST_DEBUG_OBJECT (buf, "Storing timestamp %" GST_TIME_FORMAT
|
||||
" @ %d", GST_TIME_ARGS (timestamp), readseg);
|
||||
|
||||
GST_OBJECT_LOCK (buf);
|
||||
|
|
Loading…
Reference in a new issue