mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
h264_cavlc: switch forgotten assert to av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e9d0ab5717
commit
710600077d
@ -360,7 +360,7 @@ av_cold void ff_h264_decode_init_vlc(void){
|
|||||||
* the packed static coeff_token_vlc table sizes
|
* the packed static coeff_token_vlc table sizes
|
||||||
* were initialized correctly.
|
* 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++){
|
for(i=0; i<3; i++){
|
||||||
chroma_dc_total_zeros_vlc[i].table = chroma_dc_total_zeros_vlc_tables[i];
|
chroma_dc_total_zeros_vlc[i].table = chroma_dc_total_zeros_vlc_tables[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user