Home
last modified time | relevance | path

Searched refs:u4_cur_word (Results 1 – 8 of 8) sorted by relevance

/external/libhevc/decoder/
Dihevcd_bitstream.c109 UWORD32 u4_cur_word; in ihevcd_bits_init() local
116 u4_cur_word = ITT_BIG_ENDIAN(u4_temp); in ihevcd_bits_init()
123 ps_bitstrm->u4_cur_word = u4_cur_word; in ihevcd_bits_init()
160 ps_bitstrm->u4_cur_word, in ihevcd_bits_flush()
196 ps_bitstrm->u4_cur_word, in ihevcd_bits_flush_to_byte_boundary()
255 ps_bitstrm->u4_nxt_word = ps_bitstrm->u4_cur_word; in ihevcd_bits_seek()
256 ps_bitstrm->u4_cur_word = ITT_BIG_ENDIAN(val); in ihevcd_bits_seek()
266 ps_bitstrm->u4_cur_word, in ihevcd_bits_seek()
305 ps_bitstrm->u4_cur_word, in ihevcd_bits_nxt()
341 ps_bitstrm->u4_cur_word, in ihevcd_bits_nxt32()
[all …]
Dihevcd_cabac.c152 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, (9 + RANGE_SHIFT)); in ihevcd_cabac_init()
157 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, 9); in ihevcd_cabac_init()
183 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, (9 + RANGE_SHIFT)); in ihevcd_cabac_reset()
188 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, 9); in ihevcd_cabac_reset()
280 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, numbits); in ihevcd_cabac_decode_bin()
328 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word); in ihevcd_cabac_decode_bypass_bin()
420 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, numbits); in ihevcd_cabac_decode_terminate()
478 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, numbins); in ihevcd_cabac_decode_bypass_bins()
609 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, (UWORD32)c_max); in ihevcd_cabac_decode_bypass_bins_tunary()
626 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, u4_sym); in ihevcd_cabac_decode_bypass_bins_tunary()
Dihevcd_cabac.h104 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, numbits); \
134 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word); \
172 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, numbins); \
Dihevcd_bitstream.h64 m_u4_cur_word = m_ps_bitstrm->u4_cur_word; \
78 m_ps_bitstrm->u4_cur_word = m_u4_cur_word; \
Dihevcd_structs.h82 UWORD32 u4_cur_word; member
/external/libavc/encoder/
Dih264e_bitstream.c104 ps_bitstrm->u4_cur_word = 0; in ih264e_bitstrm_init()
144 UWORD32 u4_cur_word = ps_bitstrm->u4_cur_word; in ih264e_put_bits() local
169 u4_cur_word |= (u4_code_val << bits_left_in_cw); in ih264e_put_bits()
171 ps_bitstrm->u4_cur_word = u4_cur_word; in ih264e_put_bits()
207 u4_cur_word |= u4_code_val >> rem_bits; in ih264e_put_bits()
212 UWORD8 u1_next_byte = (u4_cur_word >> (i-8)) & 0xFF; in ih264e_put_bits()
218 u4_cur_word = rem_bits ? (u4_code_val << (WORD_SIZE - rem_bits)) : 0; in ih264e_put_bits()
221 ps_bitstrm->u4_cur_word = u4_cur_word; in ih264e_put_bits()
281 UWORD32 u4_cur_word = ps_bitstrm->u4_cur_word; in ih264e_put_rbsp_trailing_bits() local
302 u4_cur_word |= (1 << (bits_left_in_cw - 1)); in ih264e_put_rbsp_trailing_bits()
[all …]
Dih264e_bitstream.h186 UWORD8 u1_next_byte = (ps_bitstrm->u4_cur_word >> (i - 8)) & 0xFF; \
190 ps_bitstrm->u4_cur_word = 0; \
229 UWORD32 u4_cur_word; member
Dih264e_cabac.c324 ps_stream->u4_cur_word = 0; in ih264e_cabac_flush()