Home
last modified time | relevance | path

Searched refs:prev_two_bytes_ (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/external/mpp/mpp/base/
H A Dmpp_bitread.c33 bitctx->prev_two_bytes_ = (bitctx->prev_two_bytes_ << 8) | bitctx->curr_byte_; in update_curbyte_default()
46 && ((bitctx->prev_two_bytes_ & 0xffff) == 0)) { in update_curbyte_h264()
53 bitctx->prev_two_bytes_ = 0xffff; in update_curbyte_h264()
61 bitctx->prev_two_bytes_ = (bitctx->prev_two_bytes_ << 8) | bitctx->curr_byte_; in update_curbyte_h264()
74 && ((bitctx->prev_two_bytes_ & 0xffff) == 0)) { in update_curbyte_h2645_sei()
78 bitctx->prev_two_bytes_ = 0xffff; in update_curbyte_h2645_sei()
84 bitctx->prev_two_bytes_ = (bitctx->prev_two_bytes_ << 8) | bitctx->curr_byte_; in update_curbyte_h2645_sei()
94 if (*bitctx->data_ == 0x02 && ((bitctx->prev_two_bytes_ & 0xffff) == 0)) { in update_curbyte_avs2()
104 bitctx->prev_two_bytes_ = (bitctx->prev_two_bytes_ << 8) | bitctx->curr_byte_; in update_curbyte_avs2()
330 bitctx->prev_two_bytes_ = 0xffff; in mpp_set_bitread_ctx()
/OK3568_Linux_fs/external/mpp/mpp/base/inc/
H A Dmpp_bitread.h116 RK_S64 prev_two_bytes_; member