[FFmpeg-cvslog] avformat/mov: Fix 'warning: format specifies type unsigned short but the argument has type int'

Michael Niedermayer git at videolan.org
Thu Oct 9 12:14:13 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Oct  9 05:49:25 2014 +0200| [5d36e8527f08eeda5874dd27af133752015a01bf] | committer: Michael Niedermayer

avformat/mov: Fix 'warning: format specifies type unsigned short but the argument has type int'

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

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

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

diff --git a/libavformat/mov.c b/libavformat/mov.c
index 4e1ef97..d040918 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -937,7 +937,7 @@ static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
     color_trc = avio_rb16(pb);
     color_matrix = avio_rb16(pb);
 
-    av_dlog(c->fc, "%s: pri %"PRIu16" trc %"PRIu16" matrix %"PRIu16"",
+    av_dlog(c->fc, "%s: pri %d trc %d matrix %d",
             color_parameter_type, color_primaries, color_trc, color_matrix);
 
     if (c->isom) {



More information about the ffmpeg-cvslog mailing list