HomeSort by relevance Sort by last modified time
    Searched refs:mv_class (Results 1 - 2 of 2) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemv.c 28 const int mv_class = vp9_get_mv_class(mag - 1, &offset); local
40 &vp9_mv_class_encodings[mv_class]);
43 if (mv_class == MV_CLASS_0) {
48 const int n = mv_class + CLASS0_BITS - 1; // number of bits
55 mv_class == MV_CLASS_0 ? mvcomp->class0_fp[d] : mvcomp->fp,
61 mv_class == MV_CLASS_0 ? mvcomp->class0_hp : mvcomp->hp);
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 206 const int mv_class = treed_read(r, vp9_mv_class_tree, mvcomp->classes); local
207 const int class0 = mv_class == MV_CLASS_0;
214 const int n = mv_class + CLASS0_BITS - 1; // number of bits
231 mag = vp9_get_mv_mag(mv_class, (d << 3) | (fr << 1) | hp) + 1;

Completed in 483 milliseconds