• Home
  • Raw
  • Download

Lines Matching refs:u4_strm_buf_offset

95     ps_bitstrm->u4_strm_buf_offset = 0;  in ihevce_bitstrm_init()
173 UWORD32 u4_strm_buf_offset = ps_bitstrm->u4_strm_buf_offset; in ihevce_put_bits() local
187 if((u4_strm_buf_offset + (WORD_SIZE >> 3)) >= u4_max_strm_size) in ihevce_put_bits()
201 PUTBYTE_EPB(pu1_strm_buf, u4_strm_buf_offset, u1_next_byte, zero_run); in ihevce_put_bits()
211 ps_bitstrm->u4_strm_buf_offset = u4_strm_buf_offset; in ihevce_put_bits()
272 UWORD32 u4_strm_buf_offset = ps_bitstrm->u4_strm_buf_offset; in ihevce_put_rbsp_trailing_bits() local
281 if((u4_strm_buf_offset + (WORD_SIZE >> 3) - bytes_left_in_cw) >= u4_max_strm_size) in ihevce_put_rbsp_trailing_bits()
298 PUTBYTE_EPB(pu1_strm_buf, u4_strm_buf_offset, u1_next_byte, zero_run); in ihevce_put_rbsp_trailing_bits()
302 ps_bitstrm->u4_strm_buf_offset = u4_strm_buf_offset; in ihevce_put_rbsp_trailing_bits()
426 UWORD32 u4_strm_buf_offset = ps_bitstrm->u4_strm_buf_offset; in ihevce_put_nal_start_code_prefix() local
431 if((u4_strm_buf_offset + 4) > ps_bitstrm->u4_max_strm_size) in ihevce_put_nal_start_code_prefix()
441 ps_bitstrm->apu1_nal_start[num_nals] = pu1_strm_buf + u4_strm_buf_offset; in ihevce_put_nal_start_code_prefix()
448 pu1_strm_buf[u4_strm_buf_offset] = 0x00; in ihevce_put_nal_start_code_prefix()
449 u4_strm_buf_offset++; in ihevce_put_nal_start_code_prefix()
453 pu1_strm_buf[u4_strm_buf_offset] = 0x00; in ihevce_put_nal_start_code_prefix()
454 u4_strm_buf_offset++; in ihevce_put_nal_start_code_prefix()
456 pu1_strm_buf[u4_strm_buf_offset] = 0x00; in ihevce_put_nal_start_code_prefix()
457 u4_strm_buf_offset++; in ihevce_put_nal_start_code_prefix()
459 pu1_strm_buf[u4_strm_buf_offset] = 0x01; in ihevce_put_nal_start_code_prefix()
460 u4_strm_buf_offset++; in ihevce_put_nal_start_code_prefix()
463 ps_bitstrm->u4_strm_buf_offset = u4_strm_buf_offset; in ihevce_put_nal_start_code_prefix()