[FFmpeg-cvslog] mov: fix av_log int type

Michael Niedermayer git at videolan.org
Thu Aug 30 00:29:15 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Aug 30 00:15:58 2012 +0200| [158a70f17ae5eecf96990da0d7ac60f0c87d768b] | committer: Michael Niedermayer

mov: fix av_log int type

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=158a70f17ae5eecf96990da0d7ac60f0c87d768b
---

 libavformat/mov.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 256e81f..1840170 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -2738,7 +2738,7 @@ static int mov_read_default(MOVContext *c, AVIOContext *pb, MOVAtom atom)
             if (left > 0) /* skip garbage at atom end */
                 avio_skip(pb, left);
             else if(left < 0) {
-                av_log(c->fc, AV_LOG_DEBUG, "undoing overread of %d in '%.4s'\n", -left, (char*)&a.type);
+                av_log(c->fc, AV_LOG_DEBUG, "undoing overread of %"PRId64" in '%.4s'\n", -left, (char*)&a.type);
                 avio_seek(pb, left, SEEK_CUR);
             }
         }



More information about the ffmpeg-cvslog mailing list