mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/nutenc: change check to match comment
The code appears to assume STABLE will never change Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
99b15f1daa
commit
45daae06fd
@ -410,7 +410,7 @@ static void write_mainheader(NUTContext *nut, AVIOContext *bc)
|
||||
avio_write(bc, nut->header[i], nut->header_len[i]);
|
||||
}
|
||||
// flags had been effectively introduced in version 4
|
||||
if (nut->version > NUT_STABLE_VERSION)
|
||||
if (nut->version > 3)
|
||||
ff_put_v(bc, nut->flags);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user