mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
mpegtsdemux: use G_GUINT64_FORMAT as format specifier for guint64
fixes compilation on 32bit
This commit is contained in:
parent
df1a470d5d
commit
92d5ea2926
1 changed files with 2 additions and 1 deletions
|
@ -823,7 +823,8 @@ mpegts_base_handle_psi (MpegTSBase * base, MpegTSPacketizerSection * section)
|
|||
if (base->first_pat_offset == -1) {
|
||||
|
||||
base->first_pat_offset = GST_BUFFER_OFFSET (section->buffer);
|
||||
GST_DEBUG ("First PAT offset: %d", base->first_pat_offset);
|
||||
GST_DEBUG ("First PAT offset: %" G_GUINT64_FORMAT,
|
||||
base->first_pat_offset);
|
||||
}
|
||||
|
||||
} else
|
||||
|
|
Loading…
Reference in a new issue