mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 01:15:39 +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
0214fea222
commit
8a995b9e94
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) {
|
if (buf->timestamps && timestamp) {
|
||||||
*timestamp = buf->timestamps[readseg % segtotal];
|
*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);
|
" @ %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));
|
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);
|
" @ %d", GST_TIME_ARGS (timestamp), readseg);
|
||||||
|
|
||||||
GST_OBJECT_LOCK (buf);
|
GST_OBJECT_LOCK (buf);
|
||||||
|
|
Loading…
Reference in a new issue