mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
rmdec: fix "warning: format %d expects argument of type int, but argument 7 has type int64_t"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4dbdd3ec6f
commit
418403662b
@ -379,7 +379,7 @@ static int rm_read_index(AVFormatContext *s)
|
|||||||
} else if ((avio_size(pb) - avio_tell(pb)) / 14 < n_pkts) {
|
} else if ((avio_size(pb) - avio_tell(pb)) / 14 < n_pkts) {
|
||||||
av_log(s, AV_LOG_ERROR,
|
av_log(s, AV_LOG_ERROR,
|
||||||
"Nr. of packets in packet index for stream index %d "
|
"Nr. of packets in packet index for stream index %d "
|
||||||
"exceeds filesize (%"PRId64" at %"PRId64" = %d)\n",
|
"exceeds filesize (%"PRId64" at %"PRId64" = %"PRId64")\n",
|
||||||
str_id, avio_size(pb), avio_tell(pb),
|
str_id, avio_size(pb), avio_tell(pb),
|
||||||
(avio_size(pb) - avio_tell(pb)) / 14);
|
(avio_size(pb) - avio_tell(pb)) / 14);
|
||||||
goto skip;
|
goto skip;
|
||||||
|
Loading…
Reference in New Issue
Block a user