mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +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;
|
||||
|
||||
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
|
||||
* the sample should be read from. */
|
||||
readseg = sample / sps;
|
||||
|
|
Loading…
Reference in a new issue