mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
qtdemux: Fix debug statement
It was using the non-increasing offset variable, which made that statement not so useful :)
This commit is contained in:
parent
d1ae39d6d6
commit
6b69ef24a1
1 changed files with 1 additions and 1 deletions
|
@ -6831,7 +6831,7 @@ qtdemux_parse_samples (GstQTDemux * qtdemux, QtDemuxStream * stream, guint32 n)
|
|||
for (k = stream->stsc_sample_index; k < samples_per_chunk; k++) {
|
||||
GST_LOG_OBJECT (qtdemux, "creating entry %d with offset %"
|
||||
G_GUINT64_FORMAT " and size %d",
|
||||
(guint) (cur - samples), stream->chunk_offset, cur->size);
|
||||
(guint) (cur - samples), chunk_offset, cur->size);
|
||||
|
||||
cur->offset = chunk_offset;
|
||||
chunk_offset += cur->size;
|
||||
|
|
Loading…
Reference in a new issue