mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
libfdk-aacenc: Actually check for upper bounds of cutoff
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
parent
8160864b00
commit
c177f2ec4a
@ -250,7 +250,7 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
|
||||
}
|
||||
|
||||
if (avctx->cutoff > 0) {
|
||||
if (avctx->cutoff < (avctx->sample_rate + 255) >> 8) {
|
||||
if (avctx->cutoff < (avctx->sample_rate + 255) >> 8 || avctx->cutoff > 20000) {
|
||||
av_log(avctx, AV_LOG_ERROR, "cutoff valid range is %d-20000\n",
|
||||
(avctx->sample_rate + 255) >> 8);
|
||||
goto error;
|
||||
|
Loading…
Reference in New Issue
Block a user