diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-13 05:59:44 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-08-13 05:59:44 +0200 |
commit | 710600077d8c8ce64c14daa7ea6441f4589e3d55 (patch) | |
tree | 3ab540ef3e03f33c17641b1865c32666a167af03 /libavcodec | |
parent | e9d0ab5717a4aa7e9d52affaa8d8d76cb3e600e0 (diff) | |
download | ffmpeg-710600077d8c8ce64c14daa7ea6441f4589e3d55.tar.gz |
h264_cavlc: switch forgotten assert to av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264_cavlc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_cavlc.c b/libavcodec/h264_cavlc.c index 930efb3936..f5d403b762 100644 --- a/libavcodec/h264_cavlc.c +++ b/libavcodec/h264_cavlc.c @@ -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]; |