• Home
  • Raw
  • Download

Lines Matching refs:u4_total_coeff

125                                                         UWORD32 u4_total_coeff,  in ih264e_compute_zeroruns_and_trailingones()  argument
146 if (u4_total_coeff > 3) in ih264e_compute_zeroruns_and_trailingones()
148 for (i = 0; u4_nnz_coeff < (u4_total_coeff-3); i++) in ih264e_compute_zeroruns_and_trailingones()
164 while (u4_nnz_coeff != u4_total_coeff) in ih264e_compute_zeroruns_and_trailingones()
199 u4_tot_zero = i - u4_total_coeff; in ih264e_compute_zeroruns_and_trailingones()
241 UWORD32 u4_total_coeff, in ih264e_write_coeff4x4_cavlc() argument
262 ASSERT(u4_total_coeff <= u4_max_num_coeff); in ih264e_write_coeff4x4_cavlc()
264 if (!u4_total_coeff) in ih264e_write_coeff4x4_cavlc()
272 DEBUG("\n[%d numcoeff, %d numtrailing ones]",u4_total_coeff, 0); in ih264e_write_coeff4x4_cavlc()
273 ENTROPY_TRACE("\tnumber of non zero coeffs ",u4_total_coeff); in ih264e_write_coeff4x4_cavlc()
298 DEBUG("\n[%d numcoeff, %d numtrailing ones, %d nnz]",u4_total_coeff, 0, u4_nc); in ih264e_write_coeff4x4_cavlc()
299 ENTROPY_TRACE("\tnumber of non zero coeffs ",u4_total_coeff); in ih264e_write_coeff4x4_cavlc()
317 u4_total_coeff, in ih264e_write_coeff4x4_cavlc()
323 u4_remaining_coeff = u4_total_coeff - u4_trailing_ones; in ih264e_write_coeff4x4_cavlc()
331 u4_codeword = gu1_code_coeff_token_table_chroma[u4_trailing_ones][u4_total_coeff-1]; in ih264e_write_coeff4x4_cavlc()
332 u4_codesize = gu1_size_coeff_token_table_chroma[u4_trailing_ones][u4_total_coeff-1]; in ih264e_write_coeff4x4_cavlc()
334 DEBUG("\n[%d numcoeff, %d numtrailing ones]",u4_total_coeff, u4_trailing_ones); in ih264e_write_coeff4x4_cavlc()
335 ENTROPY_TRACE("\tnumber of non zero coeffs ",u4_total_coeff); 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()
356 … u4_codesize = gu1_size_coeff_token_table[u4_vlcnum][u4_trailing_ones][u4_total_coeff-1]; in ih264e_write_coeff4x4_cavlc()
359 … DEBUG("\n[%d numcoeff, %d numtrailing ones, %d nnz]",u4_total_coeff, u4_trailing_ones, u4_nc); in ih264e_write_coeff4x4_cavlc()
360 ENTROPY_TRACE("\tnumber of non zero coeffs ",u4_total_coeff); in ih264e_write_coeff4x4_cavlc()
409 if (u4_total_coeff > 10) in ih264e_write_coeff4x4_cavlc()
497 if (u4_total_coeff < u4_max_num_coeff) in ih264e_write_coeff4x4_cavlc()
506 index = gu1_index_zero_table_chroma[u4_total_coeff-1] + u4_tot_zeros; in ih264e_write_coeff4x4_cavlc()
512 index = gu1_index_zero_table[u4_total_coeff-1] + u4_tot_zeros; in ih264e_write_coeff4x4_cavlc()
526 UWORD32 u4_max_num_coef = u4_total_coeff-1; in ih264e_write_coeff4x4_cavlc()