mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
lavc/utils: provide more feedback in case of experimental codec
This commit is contained in:
parent
5713091818
commit
8c2dbc3805
@ -888,7 +888,9 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, const AVCodec *code
|
||||
|
||||
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, try -strict -2\n");
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
"Codec %s is experimental but experimental codecs are not enabled, try -strict %d\n",
|
||||
codec->name, FF_COMPLIANCE_EXPERIMENTAL);
|
||||
ret = -1;
|
||||
goto free_and_end;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user