summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-07-24 12:49:15 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2013-07-24 12:49:15 -0700
commit9e29b4cd548400e01a9166d43457738813d61b73 (patch)
tree2c32b2dd192e9f2ed4dde4348f1720572c86f3a2
parenta183f17d339a22ff3a5c76ac829c84115eadeb3f (diff)
parente6c0387edd33baecc3f8694ee63d7ec6c0e5ebc7 (diff)
downloadlibvpx-9e29b4cd548400e01a9166d43457738813d61b73.tar
libvpx-9e29b4cd548400e01a9166d43457738813d61b73.tar.gz
libvpx-9e29b4cd548400e01a9166d43457738813d61b73.tar.bz2
libvpx-9e29b4cd548400e01a9166d43457738813d61b73.zip
Merge "vp9_find_mv_refs_idx: remove unused split_count"
-rw-r--r--vp9/common/vp9_mvref_common.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/vp9/common/vp9_mvref_common.c b/vp9/common/vp9_mvref_common.c
index 253a138c1..ae009b0ff 100644
--- a/vp9/common/vp9_mvref_common.c
+++ b/vp9/common/vp9_mvref_common.c
@@ -149,7 +149,6 @@ void vp9_find_mv_refs_idx(VP9_COMMON *cm, MACROBLOCKD *xd, MODE_INFO *here,
MV_REFERENCE_FRAME c2_ref_frame;
int candidate_scores[MAX_MV_REF_CANDIDATES] = { 0 };
int refmv_count = 0;
- int split_count = 0;
const int (*mv_ref_search)[2] = mv_ref_blocks[mbmi->sb_type];
const int mi_col = get_mi_col(xd);
const int mi_row = get_mi_row(xd);
@@ -191,8 +190,6 @@ void vp9_find_mv_refs_idx(VP9_COMMON *cm, MACROBLOCKD *xd, MODE_INFO *here,
add_candidate_mv(mv_ref_list, candidate_scores,
&refmv_count, c_refmv, 16);
}
- split_count += (candidate_mi->mbmi.sb_type < BLOCK_SIZE_SB8X8 &&
- candidate_mi->mbmi.ref_frame[0] != INTRA_FRAME);
// Count number of neihgbours coded intra and zeromv
intra_count += (candidate_mi->mbmi.mode < NEARESTMV);