From: Arun Raghavan Date: Fri, 13 Mar 2015 17:54:23 +0000 (+0530) Subject: audioringbuffer: Log with the ringbuffer object where possible X-Git-Tag: 1.6.0~461 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=592fc9cdbadf6b7b3ea5e04fba87d8bf717055e4;p=platform%2Fupstream%2Fgst-plugins-base.git audioringbuffer: Log with the ringbuffer object where possible --- diff --git a/gst-libs/gst/audio/gstaudioringbuffer.c b/gst-libs/gst/audio/gstaudioringbuffer.c index 4220e9d..d6f65f3 100644 --- a/gst-libs/gst/audio/gstaudioringbuffer.c +++ b/gst-libs/gst/audio/gstaudioringbuffer.c @@ -1737,8 +1737,8 @@ gst_audio_ring_buffer_read (GstAudioRingBuffer * buf, guint64 sample, * reading) */ diff = segdone - readseg; - GST_DEBUG - ("pointer at %d, sample %" G_GUINT64_FORMAT + GST_DEBUG_OBJECT + (buf, "pointer at %d, sample %" G_GUINT64_FORMAT ", read from %d-%d, to_read %d, diff %d, segtotal %d, segsize %d", segdone, sample, readseg, sampleoff, to_read, diff, segtotal, segsize); @@ -1850,7 +1850,7 @@ gst_audio_ring_buffer_prepare_read (GstAudioRingBuffer * buf, gint * segment, *len = buf->spec.segsize; *readptr = data + *segment * *len; - GST_LOG ("prepare read from segment %d (real %d) @%p", + GST_LOG_OBJECT (buf, "prepare read from segment %d (real %d) @%p", *segment, segdone, *readptr); /* callback to fill the memory with data, for pull based @@ -1920,7 +1920,7 @@ gst_audio_ring_buffer_clear (GstAudioRingBuffer * buf, gint segment) data = buf->memory; data += segment * buf->spec.segsize; - GST_LOG ("clear segment %d @%p", segment, data); + GST_LOG_OBJECT (buf, "clear segment %d @%p", segment, data); memcpy (data, buf->empty_seg, buf->spec.segsize); }