From 3a76d7f73d495c5af0968e83d96c075c27af3b5c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 10 Jun 2014 16:36:41 +0200 Subject: [PATCH] avformat/nutenc: cleaner version check Signed-off-by: Michael Niedermayer --- libavformat/nutenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index b11dd4a476..b7ea286338 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -698,7 +698,7 @@ static int nut_write_header(AVFormatContext *s) nut->avf = s; nut->version = FFMAX(NUT_STABLE_VERSION, 3 + !!nut->flags); - if (nut->flags && s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) { + if (nut->version > 3 && s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) { av_log(s, AV_LOG_ERROR, "The additional syncpoint modes require version %d, " "that is currently not finalized, "