mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-23 14:36:24 +00:00
mpegtspacketizer: Fix format string compiler warning
This commit is contained in:
parent
f0e418b629
commit
f9e50eee58
1 changed files with 1 additions and 1 deletions
|
@ -1053,7 +1053,7 @@ accumulate_data:
|
||||||
|
|
||||||
/* We have more data to process ... */
|
/* We have more data to process ... */
|
||||||
GST_DEBUG ("PID 0x%04x, More section present in packet (remaining bytes:%"
|
GST_DEBUG ("PID 0x%04x, More section present in packet (remaining bytes:%"
|
||||||
G_GSIZE_FORMAT ")", stream->pid, packet->data_end - data);
|
G_GSIZE_FORMAT ")", stream->pid, (gsize) (packet->data_end - data));
|
||||||
|
|
||||||
section_start:
|
section_start:
|
||||||
GST_MEMDUMP ("section_start", data, packet->data_end - data);
|
GST_MEMDUMP ("section_start", data, packet->data_end - data);
|
||||||
|
|
Loading…
Reference in a new issue