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:
commit
f6d633d726
@ -2169,8 +2169,9 @@ int ff_mov_read_stsd_entries(MOVContext *c, AVIOContext *pb, int entries)
|
||||
avio_rb32(pb); /* reserved */
|
||||
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);
|
||||
} else if (size <= 7) {
|
||||
av_log(c->fc, AV_LOG_ERROR,
|
||||
"invalid size %"PRId64" in stsd\n", size);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user