Commit a1fb2b93 authored by Michael Niedermayer's avatar Michael Niedermayer

nsvdec: change 2 commented assert() to av_assert()

they keep showing up if i grep for non av assert()
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 66bdc585
......@@ -100,8 +100,8 @@ struct NSVs_header {
uint32_t chunk_tag; /* 'NSVs' */
uint32_t v4cc; /* or 'NONE' */
uint32_t a4cc; /* or 'NONE' */
uint16_t vwidth; /* assert(vwidth%16==0) */
uint16_t vheight; /* assert(vheight%16==0) */
uint16_t vwidth; /* av_assert(vwidth%16==0) */
uint16_t vheight; /* av_assert(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