You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Merge commit 'b92962436bdcfae478c8598dca397a397762eef8'
* commit 'b92962436bdcfae478c8598dca397a397762eef8': mov: Fix the format specifier type for size Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
@@ -2170,7 +2170,8 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
|
||||
avio_rb16(pb); /* reserved */
|
||||
dref_id = avio_rb16(pb);
|
||||
} else if (size <= 7) {
|
||||
av_log(c->fc, AV_LOG_ERROR, "invalid size %"PRId64" in stsd\n", size);
|
||||
av_log(c->fc, AV_LOG_ERROR,
|
||||
"invalid size %"PRId64" in stsd\n", size);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user