Lines Matching refs:u4_codeword
266 UWORD32 u4_codeword = 15; in ih264e_write_coeff4x4_cavlc() local
270 u4_codeword = 1; in ih264e_write_coeff4x4_cavlc()
284 u4_codeword = 3; in ih264e_write_coeff4x4_cavlc()
295 u4_codeword >>= (4 - u4_codesize); in ih264e_write_coeff4x4_cavlc()
304 DEBUG("\nCOEFF TOKEN 0: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()
305 ENTROPY_TRACE("\tcodeword ",u4_codeword); in ih264e_write_coeff4x4_cavlc()
308 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()
327 UWORD32 u4_codeword; in ih264e_write_coeff4x4_cavlc() local
331 u4_codeword = gu1_code_coeff_token_table_chroma[u4_trailing_ones][u4_total_coeff-1]; in ih264e_write_coeff4x4_cavlc()
345 u4_codeword = ((u4_total_coeff-1) << 2 ) + u4_trailing_ones; in ih264e_write_coeff4x4_cavlc()
355 … u4_codeword = gu1_code_coeff_token_table[u4_vlcnum][u4_trailing_ones][u4_total_coeff-1]; in ih264e_write_coeff4x4_cavlc()
365 DEBUG("\nCOEFF TOKEN 0: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()
366 ENTROPY_TRACE("\tcodeword ",u4_codeword); in ih264e_write_coeff4x4_cavlc()
369 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()
425 UWORD32 u4_codeword; in ih264e_write_coeff4x4_cavlc() local
438 u4_codeword = (1 << 4) + (u4_codeval - 14); in ih264e_write_coeff4x4_cavlc()
443 u4_codeword = (1 << 12) + (u4_codeval - (15 << u4_suffix_length)); in ih264e_write_coeff4x4_cavlc()
447 u4_codeword -= 15; in ih264e_write_coeff4x4_cavlc()
452 … u4_codeword = (1 << u4_suffix_length) + (u4_codeval & ((1 << u4_suffix_length)-1)); in ih264e_write_coeff4x4_cavlc()
458 DEBUG("\nLEVEL: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()
459 ENTROPY_TRACE("\tcodeword ",u4_codeword); in ih264e_write_coeff4x4_cavlc()
461 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()
500 UWORD32 u4_codeword; in ih264e_write_coeff4x4_cavlc() local
508 u4_codeword = gu1_code_zero_table_chroma[index]; in ih264e_write_coeff4x4_cavlc()
514 u4_codeword = gu1_code_zero_table[index]; in ih264e_write_coeff4x4_cavlc()
517 DEBUG("\nTOTAL ZEROS: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()
518 ENTROPY_TRACE("\tcodeword ",u4_codeword); in ih264e_write_coeff4x4_cavlc()
520 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()
527 UWORD32 u4_codeword; in ih264e_write_coeff4x4_cavlc() local
546 u4_codeword = gu1_code_run_table[u4_index + u4_run_before]; in ih264e_write_coeff4x4_cavlc()
548 … DEBUG("\nRUN BEFORE ZEROS: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()
549 ENTROPY_TRACE("\tcodeword ",u4_codeword); in ih264e_write_coeff4x4_cavlc()
551 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize); in ih264e_write_coeff4x4_cavlc()