summaryrefslogtreecommitdiff
path: root/libavcodec/aacenc.c
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2016-08-07 00:49:34 +0100
committerRostislav Pehlivanov <atomnuker@gmail.com>2016-08-13 17:00:03 +0100
commitfb0abb34cb5a510c9fae92bf62eaccffc8db303a (patch)
tree67131737038208d1f771fa73dc92a9649dff9fc4 /libavcodec/aacenc.c
parentc92cc2d559dee8723e07754282906f2855f0c61f (diff)
downloadffmpeg-fb0abb34cb5a510c9fae92bf62eaccffc8db303a.tar.gz
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>
Diffstat (limited to 'libavcodec/aacenc.c')
-rw-r--r--libavcodec/aacenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index 2653cefaaa..1d80a675a5 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -999,9 +999,9 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
/* Coder limitations */
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,
- "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.pns = 0;
}