Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLou Logan <lou@lrcd.com>2012-05-30 05:43:23 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-06-07 02:55:23 +0400
commitb395bac383a435a111bea237f87e897b7e0111a8 (patch)
treef8e87462ada40437e7b5fe10e5f294a7012bf07c /libavcodec
parent3768afd5a56add05fd5eddc6ea551a9cc9799756 (diff)
lavc: clarify experimental codec message
Should be easier for new users to get a working output. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 73f3f6baffa5386552dbe9a94d56f36286bc26f6) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 15dd05ac34..2cfe8491fa 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -789,7 +789,7 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVD
if (codec->capabilities & CODEC_CAP_EXPERIMENTAL)
if (avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
- av_log(avctx, AV_LOG_ERROR, "Codec is experimental but experimental codecs are not enabled, see -strict -2\n");
+ av_log(avctx, AV_LOG_ERROR, "Codec is experimental but experimental codecs are not enabled, try -strict -2\n");
ret = -1;
goto free_and_end;
}