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 32 enum { CNT_INTRA, CNT_NEAREST, CNT_NEAR, CNT_SPLITMV };
93 if (mv->as_int == near_mvs[CNT_NEAREST].as_int) cnt[CNT_NEAREST] += 1;
101 if (cnt[CNT_NEAR] > cnt[CNT_NEAREST]) {
103 tmp = cnt[CNT_NEAREST];
104 cnt[CNT_NEAREST] = cnt[CNT_NEAR];
106 tmp = near_mvs[CNT_NEAREST].as_int;
107 near_mvs[CNT_NEAREST].as_int = near_mvs[CNT_NEAR].as_int;
112 if (cnt[CNT_NEAREST] >= cnt[CNT_INTRA]) {
113 near_mvs[CNT_INTRA] = near_mvs[CNT_NEAREST];
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
decodemv.c 288 enum { CNT_INTRA, CNT_NEAREST, CNT_NEAR, CNT_SPLITMV };
365 cnt[CNT_NEAREST] += ((cnt[CNT_SPLITMV] > 0) &
366 (nmv->as_int == near_mvs[CNT_NEAREST].as_int));
369 if (cnt[CNT_NEAR] > cnt[CNT_NEAREST]) {
371 tmp = cnt[CNT_NEAREST];
372 cnt[CNT_NEAREST] = cnt[CNT_NEAR];
374 tmp = near_mvs[CNT_NEAREST].as_int;
375 near_mvs[CNT_NEAREST].as_int = near_mvs[CNT_NEAR].as_int;
379 if (vp8_read(bc, vp8_mode_contexts[cnt[CNT_NEAREST]][1])) {
398 near_index = CNT_INTRA + (cnt[CNT_NEAREST] >= cnt[CNT_INTRA])
    [all...]

Completed in 303 milliseconds