aacenc: fix aac_pred option triggering an error

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
pull/163/head
Rostislav Pehlivanov 9 years ago
parent cc68ca0cab
commit 3112501daf
  1. 2
      libavcodec/aacenc.c

@ -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;

Loading…
Cancel
Save