mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
aacenc: unmark the fast coder as experimental
This version has had much testing so there's little point in keeping it maked as experimental. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
This commit is contained in:
parent
c92cc2d559
commit
fb0abb34cb
@ -999,9 +999,9 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
/* Coder limitations */
|
/* Coder limitations */
|
||||||
s->coder = &ff_aac_coders[s->options.coder];
|
s->coder = &ff_aac_coders[s->options.coder];
|
||||||
if (s->options.coder != AAC_CODER_TWOLOOP) {
|
if (s->options.coder == AAC_CODER_ANMR) {
|
||||||
ERROR_IF(avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL,
|
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");
|
"The ANMR coder requires -strict -2 and some may be removed in the future\n");
|
||||||
s->options.intensity_stereo = 0;
|
s->options.intensity_stereo = 0;
|
||||||
s->options.pns = 0;
|
s->options.pns = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user