You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
aacsbr: fix integer overflow
Fixes CID603186 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -749,7 +749,7 @@ static int read_sbr_grid(AACContext *ac, SpectralBandReplication *sbr,
|
||||
if (ch_data->bs_frame_class == FIXFIX) {
|
||||
idx = ch_data->bs_num_env >> 1;
|
||||
} else if (ch_data->bs_frame_class & 1) { // FIXVAR or VARVAR
|
||||
idx = ch_data->bs_num_env - FFMAX(bs_pointer - 1, 1);
|
||||
idx = ch_data->bs_num_env - FFMAX((int)bs_pointer - 1, 1);
|
||||
} else { // VARFIX
|
||||
if (!bs_pointer)
|
||||
idx = 1;
|
||||
|
Reference in New Issue
Block a user