aacenc: fix aac_pred option triggering an error

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
This commit is contained in:
Rostislav Pehlivanov 2015-12-05 18:43:17 +00:00
parent cc68ca0cab
commit 3112501daf

View File

@ -960,7 +960,7 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
avctx->profile = FF_PROFILE_AAC_MAIN;
WARN_IF(1,
"Chainging profile to \"aac_main\"\n");
ERROR_IF(s->options.pred,
ERROR_IF(s->options.ltp,
"LTP prediction unavailable in the \"aac_main\" profile\n");
}
s->profile = avctx->profile;