mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
alac: fix check for valid max_samples_per_frame
This commit is contained in:
parent
1193d3fedd
commit
7a206eb32f
@ -511,9 +511,9 @@ static int alac_set_info(ALACContext *alac)
|
|||||||
bytestream2_skipu(&gb, 12); // size:4, alac:4, version:4
|
bytestream2_skipu(&gb, 12); // size:4, alac:4, version:4
|
||||||
|
|
||||||
alac->max_samples_per_frame = bytestream2_get_be32u(&gb);
|
alac->max_samples_per_frame = bytestream2_get_be32u(&gb);
|
||||||
if (alac->max_samples_per_frame >= UINT_MAX/4){
|
if (!alac->max_samples_per_frame || alac->max_samples_per_frame > INT_MAX) {
|
||||||
av_log(alac->avctx, AV_LOG_ERROR,
|
av_log(alac->avctx, AV_LOG_ERROR, "max samples per frame invalid: %u\n",
|
||||||
"max_samples_per_frame too large\n");
|
alac->max_samples_per_frame);
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
bytestream2_skipu(&gb, 1); // compatible version
|
bytestream2_skipu(&gb, 1); // compatible version
|
||||||
|
Loading…
x
Reference in New Issue
Block a user