Commit bf16872f authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/nsvdec: fix out-commented asserts so the function names exist

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 85f0bde4
......@@ -96,8 +96,8 @@ struct NSVs_header {
uint32_t chunk_tag; /* 'NSVs' */
uint32_t v4cc; /* or 'NONE' */
uint32_t a4cc; /* or 'NONE' */
uint16_t vwidth; /* av_assert(vwidth%16==0) */
uint16_t vheight; /* av_assert(vheight%16==0) */
uint16_t vwidth; /* av_assert0(vwidth%16==0) */
uint16_t vheight; /* av_assert0(vheight%16==0) */
uint8_t framerate; /* value = (framerate&0x80)?frtable[frameratex0x7f]:framerate */
uint16_t unknown;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment