Commit d266ecff authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/bitstream: remove trivial assert

Fixed CID1224273
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b5f0eac0
......@@ -229,7 +229,6 @@ static int build_table(VLC *vlc, int table_nb_bits, int nb_codes,
/* note: realloc has been done, so reload tables */
table = (volatile VLC_TYPE (*)[2])&vlc->table[table_index];
table[j][0] = index; //code
av_assert0(table[j][0] == index);
i = k-1;
}
}
......
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