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

  /external/libvpx/libvpx/vp8/common/
findnearmv.c 42 enum {CNT_INTRA, CNT_NEAREST, CNT_NEAR, CNT_SPLITMV};
109 if (mv->as_int == near_mvs[CNT_NEAREST].as_int)
110 cnt[CNT_NEAREST] += 1;
118 if (cnt[CNT_NEAR] > cnt[CNT_NEAREST])
121 tmp = cnt[CNT_NEAREST];
122 cnt[CNT_NEAREST] = cnt[CNT_NEAR];
124 tmp = near_mvs[CNT_NEAREST].as_int;
125 near_mvs[CNT_NEAREST].as_int = near_mvs[CNT_NEAR].as_int;
130 if (cnt[CNT_NEAREST] >= cnt[CNT_INTRA])
131 near_mvs[CNT_INTRA] = near_mvs[CNT_NEAREST];
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
decodemv.c 345 enum {CNT_INTRA, CNT_NEAREST, CNT_NEAR, CNT_SPLITMV};
433 cnt[CNT_NEAREST] += ( (cnt[CNT_SPLITMV] > 0) &
434 (nmv->as_int == near_mvs[CNT_NEAREST].as_int));
437 if (cnt[CNT_NEAR] > cnt[CNT_NEAREST])
440 tmp = cnt[CNT_NEAREST];
441 cnt[CNT_NEAREST] = cnt[CNT_NEAR];
443 tmp = near_mvs[CNT_NEAREST].as_int;
444 near_mvs[CNT_NEAREST].as_int = near_mvs[CNT_NEAR].as_int;
448 if( vp8_read(bc, vp8_mode_contexts [cnt[CNT_NEAREST]] [1]) )
471 (cnt[CNT_NEAREST] >= cnt[CNT_INTRA])
    [all...]

Completed in 39 milliseconds