Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_encodemv.c37 const int mv_class = vp9_get_mv_class(mag - 1, &offset); in encode_mv_component() local
49 &mv_class_encodings[mv_class]); in encode_mv_component()
52 if (mv_class == MV_CLASS_0) { in encode_mv_component()
57 const int n = mv_class + CLASS0_BITS - 1; // number of bits in encode_mv_component()
64 mv_class == MV_CLASS_0 ? mvcomp->class0_fp[d] : mvcomp->fp, in encode_mv_component()
70 mv_class == MV_CLASS_0 ? mvcomp->class0_hp : mvcomp->hp); in encode_mv_component()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_decodemv.c208 const int mv_class = vp9_read_tree(r, vp9_mv_class_tree, mvcomp->classes); in read_mv_component() local
209 const int class0 = mv_class == MV_CLASS_0; in read_mv_component()
216 const int n = mv_class + CLASS0_BITS - 1; // number of bits in read_mv_component()
233 mag = vp9_get_mv_mag(mv_class, (d << 3) | (fr << 1) | hp) + 1; in read_mv_component()