Home | History | Annotate | Download | only in encoder

Lines Matching full:u4_codesize

267         UWORD32 u4_codesize = 1;
271 u4_codesize = 2;
285 u4_codesize = 6;
294 u4_codesize <<= u4_vlcnum;
295 u4_codeword >>= (4 - u4_codesize);
304 DEBUG("\nCOEFF TOKEN 0: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize);
306 ENTROPY_TRACE("\tcodesize ",u4_codesize);
308 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize);
328 UWORD32 u4_codesize;
332 u4_codesize = gu1_size_coeff_token_table_chroma[u4_trailing_ones][u4_total_coeff-1];
346 u4_codesize = 6;
356 u4_codesize = gu1_size_coeff_token_table[u4_vlcnum][u4_trailing_ones][u4_total_coeff-1];
365 DEBUG("\nCOEFF TOKEN 0: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize);
367 ENTROPY_TRACE("\tcodesize ",u4_codesize);
369 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize);
375 DEBUG("\nT1's: %d u4_codeword, %d u4_codesize",u4_sign1, u4_trailing_ones);
424 UWORD32 u4_codesize;
439 u4_codesize = 19;
444 u4_codesize = 28;
453 u4_codesize = (u4_codeval >> u4_suffix_length) + 1 + u4_suffix_length;
458 DEBUG("\nLEVEL: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize);
460 ENTROPY_TRACE("\tcodesize ",u4_codesize);
461 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize);
501 UWORD32 u4_codesize;
507 u4_codesize = gu1_size_zero_table_chroma[index];
513 u4_codesize = gu1_size_zero_table[index];
517 DEBUG("\nTOTAL ZEROS: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize);
519 ENTROPY_TRACE("\tcodesize ",u4_codesize);
520 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize);
528 UWORD32 u4_codesize;
545 u4_codesize = gu1_size_run_table[u4_index + u4_run_before];
548 DEBUG("\nRUN BEFORE ZEROS: %d u4_codeword, %d u4_codesize",u4_codeword, u4_codesize);
550 ENTROPY_TRACE("\tcodesize ",u4_codesize);
551 error_status = ih264e_put_bits(ps_bit_stream, u4_codeword, u4_codesize);