From: Alessandro Decina Date: Sun, 26 Feb 2012 19:32:05 +0000 (+0100) Subject: theoraenc: fix compiler warning X-Git-Tag: 1.19.3~511^2~6555^2~87 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5db562f13b77ea6040d9b9bc87c5277a0b745b9d;p=platform%2Fupstream%2Fgstreamer.git theoraenc: fix compiler warning --- diff --git a/ext/theora/gsttheoraenc.c b/ext/theora/gsttheoraenc.c index de2fcfe..bff2384 100644 --- a/ext/theora/gsttheoraenc.c +++ b/ext/theora/gsttheoraenc.c @@ -1399,7 +1399,7 @@ theora_enc_encode_and_push (GstTheoraEnc * enc, ogg_packet op, GstClockTime next_time, duration; GstClockTime timestamp = 0; GST_DEBUG_OBJECT (enc, "encoded. granule:%" G_GINT64_FORMAT ", packet:%p, " - "bytes:%ld", op.granulepos, op.packet, op.bytes); + "bytes:%ld", (gint64) op.granulepos, op.packet, op.bytes); next_time = th_granule_time (enc->encoder, op.granulepos) * GST_SECOND; duration = next_time - enc->next_ts;