mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
debug: also cast packet.packetno to gint64 in debug log
We do this already for granulepos to handle ogg_int64_t mismatches.
This commit is contained in:
parent
9e8db533a1
commit
f8abb8cf15
1 changed files with 1 additions and 1 deletions
|
@ -1348,7 +1348,7 @@ theora_dec_decode_buffer (GstTheoraDec * dec, GstBuffer * buf)
|
|||
|
||||
GST_DEBUG_OBJECT (dec, "header=%02x packetno=%" G_GINT64_FORMAT ", "
|
||||
"granule pos=%" G_GINT64_FORMAT ", outtime=%" GST_TIME_FORMAT,
|
||||
packet.bytes ? packet.packet[0] : -1, packet.packetno,
|
||||
packet.bytes ? packet.packet[0] : -1, (gint64) packet.packetno,
|
||||
(gint64) packet.granulepos, GST_TIME_ARGS (dec->last_timestamp));
|
||||
|
||||
/* switch depending on packet type. A zero byte packet is always a data
|
||||
|
|
Loading…
Reference in a new issue