mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/nutenc: cleaner version check
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d7f398c542
commit
3a76d7f73d
|
@ -698,7 +698,7 @@ static int nut_write_header(AVFormatContext *s)
|
||||||
nut->avf = s;
|
nut->avf = s;
|
||||||
|
|
||||||
nut->version = FFMAX(NUT_STABLE_VERSION, 3 + !!nut->flags);
|
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,
|
av_log(s, AV_LOG_ERROR,
|
||||||
"The additional syncpoint modes require version %d, "
|
"The additional syncpoint modes require version %d, "
|
||||||
"that is currently not finalized, "
|
"that is currently not finalized, "
|
||||||
|
|
Loading…
Reference in New Issue