You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
lavf/mov: correct printf specifier
The type is int64_t. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
0e699676f9
commit
60bdc868b9
@@ -1236,7 +1236,7 @@ static int mov_read_aclr(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
|||||||
av_log(c, AV_LOG_ERROR, "aclr not decoded - unable to add atom to extradata\n");
|
av_log(c, AV_LOG_ERROR, "aclr not decoded - unable to add atom to extradata\n");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
av_log(c, AV_LOG_WARNING, "aclr not decoded - unexpected size %ld\n", atom.size);
|
av_log(c, AV_LOG_WARNING, "aclr not decoded - unexpected size %"PRId64"\n", atom.size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user