You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/adpcm: Check idelta
Fixes integer overflow Fixes: signal_sigsegv_1b0a4da_1865_cov_2167818389_computer_anger.avi Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -246,6 +246,10 @@ static inline short adpcm_ms_expand_nibble(ADPCMChannelStatus *c, int nibble)
|
||||
c->sample1 = av_clip_int16(predictor);
|
||||
c->idelta = (ff_adpcm_AdaptationTable[(int)nibble] * c->idelta) >> 8;
|
||||
if (c->idelta < 16) c->idelta = 16;
|
||||
if (c->idelta > INT_MAX/768) {
|
||||
av_log(NULL, AV_LOG_WARNING, "idelta overflow\n");
|
||||
c->idelta = INT_MAX/768;
|
||||
}
|
||||
|
||||
return c->sample1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user