Description: Fix printf format for int64_t
Author: Thibaut Paumard <thibaut@debian.org>
Origin: vendor
Forwarded: no
Last-Update: 2013-10-07
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -840,7 +840,7 @@
     }else{
       if(s->user_specified_pts){
         pic->pts= s->user_specified_pts + AV_TIME_BASE*(int64_t)s->avctx->frame_rate_base / s->avctx->frame_rate;
-        av_log(s->avctx, AV_LOG_INFO, "Warning: AVFrame.pts=? trying to guess (%Ld)\n", pic->pts);
+        av_log(s->avctx, AV_LOG_INFO, "Warning: AVFrame.pts=? trying to guess (%" PRId64 ")\n", pic->pts);
       }else{
         pic->pts= av_rescale(pic->display_picture_number*(int64_t)s->avctx->frame_rate_base, AV_TIME_BASE, s->avctx->frame_rate);
       }
