mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
debug: fix format string that was missing a var
This commit is contained in:
parent
3d73a7458a
commit
9e8db533a1
1 changed files with 2 additions and 1 deletions
|
@ -708,7 +708,8 @@ gst_base_audio_src_get_offset (GstBaseAudioSrc * src)
|
||||||
- src->ringbuffer->segbase;
|
- src->ringbuffer->segbase;
|
||||||
|
|
||||||
if (sample != -1) {
|
if (sample != -1) {
|
||||||
GST_DEBUG_OBJECT (src, "at sample %" G_GUINT64_FORMAT, segdone, sample);
|
GST_DEBUG_OBJECT (src, "at segment %d and sample %" G_GUINT64_FORMAT,
|
||||||
|
segdone, sample);
|
||||||
/* figure out the segment and the offset inside the segment where
|
/* figure out the segment and the offset inside the segment where
|
||||||
* the sample should be read from. */
|
* the sample should be read from. */
|
||||||
readseg = sample / sps;
|
readseg = sample / sps;
|
||||||
|
|
Loading…
Reference in a new issue