Searched refs:u4_code (Results 1 – 3 of 3) sorted by relevance
/external/libavc/decoder/ |
D | ih264d_bitstrm.h | 105 #define GETBIT(u4_code, u4_offset, pu4_bitstream) \ argument 110 u4_code = pu4_buf[u4_word_off] << u4_bit_off; \ 112 u4_code = (u4_code >> 31); \ 120 #define GETBITS(u4_code, u4_offset, pu4_bitstream, u4_no_bits) \ argument 125 u4_code = pu4_buf[u4_word_off++] << u4_bit_off; \ 128 u4_code |= (pu4_buf[u4_word_off] >> (INT_IN_BITS - u4_bit_off)); \ 129 u4_code = u4_code >> (INT_IN_BITS - u4_no_bits); \
|
D | ih264d_bitstrm.c | 65 UWORD32 u4_code; in ih264d_get_bit_h264() local 67 GETBIT(u4_code, ps_stream->u4_ofst, ps_stream->pu4_buffer); in ih264d_get_bit_h264() 68 return (u4_code); in ih264d_get_bit_h264() 92 UWORD32 u4_code = 0; in ih264d_get_bits_h264() local 94 GETBITS(u4_code, ps_bitstrm->u4_ofst, ps_bitstrm->pu4_buffer, u4_num_bits); in ih264d_get_bits_h264() 95 return (u4_code); in ih264d_get_bits_h264()
|
D | ih264d_parse_cavlc.c | 177 UWORD32 u4_code; in ih264d_tev_range1() local 178 GETBIT(u4_code, *pu4_bitstrm_ofst, pu4_bitstrm_buf); in ih264d_tev_range1() 179 return (!u4_code); in ih264d_tev_range1() 625 UWORD32 u4_code; in ih264d_cavlc_4x4res_block_totalcoeff_2to10() local 627 NEXTBITS(u4_code, u4_bitstream_offset, pu4_bitstrm_buf, 3); in ih264d_cavlc_4x4res_block_totalcoeff_2to10() 629 if(u4_code != 0) in ih264d_cavlc_4x4res_block_totalcoeff_2to10() 632 u4_run = (7 - u4_code); in ih264d_cavlc_4x4res_block_totalcoeff_2to10() 637 FIND_ONE_IN_STREAM_LEN(u4_code, u4_bitstream_offset, in ih264d_cavlc_4x4res_block_totalcoeff_2to10() 639 u4_run = (4 + u4_code); in ih264d_cavlc_4x4res_block_totalcoeff_2to10() 657 UWORD32 u4_code; in ih264d_cavlc_4x4res_block_totalcoeff_2to10() local [all …]
|