mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
aacenc: mark coders other than twoloop as experimental
ANMR has some interesting things coming up but is currently not in a shape fit for non-experimental usage. Same with "FAST". Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
This commit is contained in:
parent
3a6e020861
commit
b270ec9a10
@ -967,6 +967,8 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
|
||||
s->coder = &ff_aac_coders[s->options.coder];
|
||||
|
||||
if (s->options.coder != AAC_CODER_TWOLOOP) {
|
||||
ERROR_IF(avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL,
|
||||
"Coders other than twoloop require -strict -2 and some may be removed in the future\n");
|
||||
WARN_IF(s->options.coder == AAC_CODER_FAAC,
|
||||
"The FAAC-like coder will be removed in the near future, please use twoloop!\n");
|
||||
s->options.intensity_stereo = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user