Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/mpp/mpp/codec/dec/vp9/
H A Dvpx_rac.c52 c->code_word = bytestream_get_be24(&c->buffer); in vpx_init_range_decoder()
59 unsigned int code_word = c->code_word; in vpx_rac_renorm() local
62 code_word <<= shift; in vpx_rac_renorm()
65 code_word |= bytestream_get_be16(&c->buffer) << bits; in vpx_rac_renorm()
69 return code_word; in vpx_rac_renorm()
74 unsigned int code_word = vpx_rac_renorm(c); in vpx_rac_get_prob() local
77 int bit = code_word >= low_shift; in vpx_rac_get_prob()
80 c->code_word = bit ? code_word - low_shift : code_word; in vpx_rac_get_prob()
88 unsigned long code_word = vpx_rac_renorm(c); in vpx_rac_get_prob_branchy() local
92 if (code_word >= low_shift) { in vpx_rac_get_prob_branchy()
[all …]
H A Dvpx_rac.h44 unsigned int code_word; member