Commit 5d36e852 authored by Michael Niedermayer's avatar Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 8cfb9ccf
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment