mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
qtdemux: fix debug message printf args
Fixes debug message printf format to make it build in mac's gcc
This commit is contained in:
parent
8cb3452ac4
commit
ff4ac9ddf6
1 changed files with 2 additions and 2 deletions
|
@ -4234,8 +4234,8 @@ done2:
|
||||||
gst_byte_reader_get_uint32_be_unchecked (&stream->stts);
|
gst_byte_reader_get_uint32_be_unchecked (&stream->stts);
|
||||||
stream->stts_duration =
|
stream->stts_duration =
|
||||||
gst_byte_reader_get_uint32_be_unchecked (&stream->stts);
|
gst_byte_reader_get_uint32_be_unchecked (&stream->stts);
|
||||||
GST_LOG_OBJECT (qtdemux, "block %d, %u timestamps, duration %u ", i,
|
GST_LOG_OBJECT (qtdemux, "block %d, %u timestamps, duration %"
|
||||||
stream->stts_samples, stream->stts_duration);
|
G_GUINT64_FORMAT, i, stream->stts_samples, stream->stts_duration);
|
||||||
|
|
||||||
/* take first duration for fps */
|
/* take first duration for fps */
|
||||||
if (G_UNLIKELY (stream->min_duration == 0))
|
if (G_UNLIKELY (stream->min_duration == 0))
|
||||||
|
|
Loading…
Reference in a new issue