Browse Source

h264_cavlc: switch forgotten assert to av_assert

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
710600077d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264_cavlc.c

+ 1
- 1
libavcodec/h264_cavlc.c View File

@@ -360,7 +360,7 @@ av_cold void ff_h264_decode_init_vlc(void){
* the packed static coeff_token_vlc table sizes
* were initialized correctly.
*/
assert(offset == FF_ARRAY_ELEMS(coeff_token_vlc_tables));
av_assert0(offset == FF_ARRAY_ELEMS(coeff_token_vlc_tables));

for(i=0; i<3; i++){
chroma_dc_total_zeros_vlc[i].table = chroma_dc_total_zeros_vlc_tables[i];


Loading…
Cancel
Save