Home
last modified time | relevance | path

Searched refs:MVPbits (Results 1 – 3 of 3) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dencodemv.c47 vp8_write(w, (x >> i) & 1, p [MVPbits + i]); in encode_mvcomponent()
54 vp8_write(w, (x >> i) & 1, p [MVPbits + i]); in encode_mvcomponent()
59 vp8_write(w, (x >> 3) & 1, p [MVPbits + 3]); in encode_mvcomponent()
120 cost += vp8_cost_bit(p [MVPbits + i], (x >> i) & 1); in cost_mvcomponent()
127 cost += vp8_cost_bit(p [MVPbits + i], (x >> i) & 1); in cost_mvcomponent()
132 cost += vp8_cost_bit(p [MVPbits + 3], (x >> 3) & 1); in cost_mvcomponent()
321 calc_prob(Pnew + MVPbits + j, bit_ct[j]); in write_component_probs()
344 const vp8_prob *const new_p = Pnew + MVPbits; in write_component_probs()
345 vp8_prob *const cur_p = Pcur + MVPbits; in write_component_probs()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Dentropymv.h37 MVPbits = MVPshort + mvnum_short - 1, /* mvlong_width long value bits */ enumerator
38 MVPcount = MVPbits + mvlong_width /* (with independent probabilities) */
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
Ddecodemv.c87 x += vp8_read(r, p [MVPbits + i]) << i; in read_mvcomponent()
95 x += vp8_read(r, p [MVPbits + i]) << i; in read_mvcomponent()
99 if (!(x & 0xFFF0) || vp8_read(r, p [MVPbits + 3])) in read_mvcomponent()