Searched refs:total_coeff (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | h264_cavlc.c | 441 int zeros_left, coeff_token, total_coeff, i, trailing_ones, run_before; in decode_residual() local 450 total_coeff= coeff_token>>2; in decode_residual() 453 total_coeff= pred_non_zero_count(h, sl, (n - LUMA_DC_BLOCK_INDEX)*16); in decode_residual() 454 …coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOK… in decode_residual() 455 total_coeff= coeff_token>>2; in decode_residual() 457 total_coeff= pred_non_zero_count(h, sl, n); in decode_residual() 458 …coeff_token= get_vlc2(gb, coeff_token_vlc[ coeff_token_table_index[total_coeff] ].table, COEFF_TOK… in decode_residual() 459 total_coeff= coeff_token>>2; in decode_residual() 462 sl->non_zero_count_cache[scan8[n]] = total_coeff; in decode_residual() 466 if(total_coeff==0) in decode_residual() [all …]
|
D | vp9block.c | 993 int total_coeff = 0; in decode_coeffs() local 1013 total_coeff |= !!ret; \ in decode_coeffs() 1087 total_coeff |= !!ret; \ in decode_coeffs() 1128 return total_coeff; in decode_coeffs()
|