avcodec/bitstream: remove trivial assert

Fixed CID1224273

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/76/merge
Michael Niedermayer 11 years ago
parent b5f0eac068
commit d266ecff4b
  1. 1
      libavcodec/bitstream.c

@ -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;
}
}

Loading…
Cancel
Save