summaryrefslogtreecommitdiff
path: root/libavcodec/aacenc.c
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2016-08-13 17:34:58 +0100
committerRostislav Pehlivanov <atomnuker@gmail.com>2016-08-13 17:34:58 +0100
commit6612d0493356e3cddad4a55e3c3467c52a9427c4 (patch)
tree2dc7265bc1a93d9448fca2754d59b5f6d58ac360 /libavcodec/aacenc.c
parentfb0abb34cb5a510c9fae92bf62eaccffc8db303a (diff)
aacenc: fix various typos and an error message
Too much copy and pasting. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/aacenc.c')
-rw-r--r--libavcodec/aacenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c
index 1d80a675a5..e1a2d4544b 100644
--- a/libavcodec/aacenc.c
+++ b/libavcodec/aacenc.c
@@ -1001,7 +1001,7 @@ static av_cold int aac_encode_init(AVCodecContext *avctx)
s->coder = &ff_aac_coders[s->options.coder];
if (s->options.coder == AAC_CODER_ANMR) {
ERROR_IF(avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL,
- "The ANMR coder requires -strict -2 and some may be removed in the future\n");
+ "The ANMR coder is considered experimental, add -strict -2 to enable!\n");
s->options.intensity_stereo = 0;
s->options.pns = 0;
}