theoradec: printf format fix

This commit is contained in:
Tim-Philipp Müller 2009-11-05 23:33:42 +00:00
parent b5620e1241
commit 34e6718da9

View file

@ -1346,8 +1346,8 @@ theora_dec_decode_buffer (GstTheoraDec * dec, GstBuffer * buf)
dec->last_timestamp = -1; dec->last_timestamp = -1;
} }
GST_DEBUG_OBJECT (dec, "header=%02x packetno=%lld, granule pos=%" GST_DEBUG_OBJECT (dec, "header=%02x packetno=%" G_GINT64_FORMAT ", "
G_GINT64_FORMAT ", outtime=%" GST_TIME_FORMAT, "granule pos=%" G_GINT64_FORMAT ", outtime=%" GST_TIME_FORMAT,
packet.bytes ? packet.packet[0] : -1, packet.packetno, packet.bytes ? packet.packet[0] : -1, packet.packetno,
(gint64) packet.granulepos, GST_TIME_ARGS (dec->last_timestamp)); (gint64) packet.granulepos, GST_TIME_ARGS (dec->last_timestamp));