diff options
Diffstat (limited to 'src/libffmpeg/libavcodec/snow.c')
-rw-r--r-- | src/libffmpeg/libavcodec/snow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libffmpeg/libavcodec/snow.c b/src/libffmpeg/libavcodec/snow.c index d6f9a14a9..10f0b76ab 100644 --- a/src/libffmpeg/libavcodec/snow.c +++ b/src/libffmpeg/libavcodec/snow.c @@ -3345,9 +3345,9 @@ static int encode_init(AVCodecContext *avctx) SnowContext *s = avctx->priv_data; int plane_index; - if(avctx->strict_std_compliance >= 0){ + if(avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL){ av_log(avctx, AV_LOG_ERROR, "this codec is under development, files encoded with it may not be decodable with future versions!!!\n" - "use vstrict=-1 / -strict -1 to use it anyway\n"); + "use vstrict=-2 / -strict -2 to use it anyway\n"); return -1; } |