Searched refs:curr_byte_ (Results 1 – 2 of 2) sorted by relevance
30 bitctx->curr_byte_ = *bitctx->data_++ & 0xff; in update_curbyte_default()33 bitctx->prev_two_bytes_ = (bitctx->prev_two_bytes_ << 8) | bitctx->curr_byte_; in update_curbyte_default()58 bitctx->curr_byte_ = *bitctx->data_++ & 0xff; in update_curbyte_h264()61 bitctx->prev_two_bytes_ = (bitctx->prev_two_bytes_ << 8) | bitctx->curr_byte_; in update_curbyte_h264()81 bitctx->curr_byte_ = *bitctx->data_++ & 0xff; in update_curbyte_h2645_sei()84 bitctx->prev_two_bytes_ = (bitctx->prev_two_bytes_ << 8) | bitctx->curr_byte_; in update_curbyte_h2645_sei()96 bitctx->curr_byte_ = 0; in update_curbyte_avs2()100 bitctx->curr_byte_ = *bitctx->data_++ & 0xff; in update_curbyte_avs2()104 bitctx->prev_two_bytes_ = (bitctx->prev_two_bytes_ << 8) | bitctx->curr_byte_; in update_curbyte_avs2()127 *out |= (bitctx->curr_byte_ << (bits_left - bitctx->num_remaining_bits_in_curr_byte_)); in mpp_read_bits()[all …]
111 RK_S64 curr_byte_; member