summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_reconinter.c
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-04-23 16:34:22 -0700
committerDmitry Kovalev <dkovalev@google.com>2013-04-23 16:34:22 -0700
commit9828a33ebb8dad180dba6f837f2ecee7167f244a (patch)
treecd5c804d696a7921867083c0ebb2f48bb2feddb0 /vp9/common/vp9_reconinter.c
parent4f35e3e1c1543f204fb5edac97e53bc467ec56ab (diff)
downloadlibvpx-9828a33ebb8dad180dba6f837f2ecee7167f244a.tar
libvpx-9828a33ebb8dad180dba6f837f2ecee7167f244a.tar.gz
libvpx-9828a33ebb8dad180dba6f837f2ecee7167f244a.tar.bz2
libvpx-9828a33ebb8dad180dba6f837f2ecee7167f244a.zip
Removing unused mi_mv_pred_row and mi_mv_pred_col functions.
Change-Id: If8ba37bf0b86e8dea88c27d911e8ddb0f6d5a3c5
Diffstat (limited to 'vp9/common/vp9_reconinter.c')
-rw-r--r--vp9/common/vp9_reconinter.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/vp9/common/vp9_reconinter.c b/vp9/common/vp9_reconinter.c
index 80eb2c690..03c4215e4 100644
--- a/vp9/common/vp9_reconinter.c
+++ b/vp9/common/vp9_reconinter.c
@@ -458,26 +458,6 @@ void vp9_build_inter_predictors_sb(MACROBLOCKD *xd,
#endif
}
-static INLINE int round_mv_comp(int value) {
- return (value < 0 ? value - 2 : value + 2) / 4;
-}
-
-static int mi_mv_pred_row(MACROBLOCKD *mb, int off, int idx) {
- const int temp = mb->mode_info_context->bmi[off + 0].as_mv[idx].as_mv.row +
- mb->mode_info_context->bmi[off + 1].as_mv[idx].as_mv.row +
- mb->mode_info_context->bmi[off + 4].as_mv[idx].as_mv.row +
- mb->mode_info_context->bmi[off + 5].as_mv[idx].as_mv.row;
- return round_mv_comp(temp);
-}
-
-static int mi_mv_pred_col(MACROBLOCKD *mb, int off, int idx) {
- const int temp = mb->mode_info_context->bmi[off + 0].as_mv[idx].as_mv.col +
- mb->mode_info_context->bmi[off + 1].as_mv[idx].as_mv.col +
- mb->mode_info_context->bmi[off + 4].as_mv[idx].as_mv.col +
- mb->mode_info_context->bmi[off + 5].as_mv[idx].as_mv.col;
- return round_mv_comp(temp);
-}
-
/*encoder only*/
void vp9_build_inter4x4_predictors_mbuv(MACROBLOCKD *xd,
int mb_row, int mb_col) {