summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_findnearmv.h
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2013-12-26 13:38:38 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2013-12-26 13:38:38 -0800
commit1e8b5bf4ac494a6fc3e8d773c3a0eff9d09cb7c3 (patch)
treedb04ace000561caf84b23ca59a6fe36c85961a28 /vp9/common/vp9_findnearmv.h
parent87440aeb820ac547e2bf6ff1fc3d483b57461d78 (diff)
parent987810ad95efd5e4057b546dd6525db97469a858 (diff)
downloadlibvpx-1e8b5bf4ac494a6fc3e8d773c3a0eff9d09cb7c3.tar
libvpx-1e8b5bf4ac494a6fc3e8d773c3a0eff9d09cb7c3.tar.gz
libvpx-1e8b5bf4ac494a6fc3e8d773c3a0eff9d09cb7c3.tar.bz2
libvpx-1e8b5bf4ac494a6fc3e8d773c3a0eff9d09cb7c3.zip
Merge "Removing vp9_findnearmv.{h, c} files."
Diffstat (limited to 'vp9/common/vp9_findnearmv.h')
-rw-r--r--vp9/common/vp9_findnearmv.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/vp9/common/vp9_findnearmv.h b/vp9/common/vp9_findnearmv.h
deleted file mode 100644
index 5af961a77..000000000
--- a/vp9/common/vp9_findnearmv.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-
-#ifndef VP9_COMMON_VP9_FINDNEARMV_H_
-#define VP9_COMMON_VP9_FINDNEARMV_H_
-
-#include "vp9/common/vp9_mv.h"
-#include "vp9/common/vp9_blockd.h"
-#include "vp9/common/vp9_onyxc_int.h"
-
-#define LEFT_TOP_MARGIN ((VP9BORDERINPIXELS - VP9_INTERP_EXTEND) << 3)
-#define RIGHT_BOTTOM_MARGIN ((VP9BORDERINPIXELS - VP9_INTERP_EXTEND) << 3)
-
-// check a list of motion vectors by sad score using a number rows of pixels
-// above and a number cols of pixels in the left to select the one with best
-// score to use as ref motion vector
-void vp9_find_best_ref_mvs(MACROBLOCKD *xd, int allow_hp,
- int_mv *mvlist, int_mv *nearest, int_mv *near);
-
-// TODO(jingning): this mv clamping function should be block size dependent.
-static void clamp_mv2(MV *mv, const MACROBLOCKD *xd) {
- clamp_mv(mv, xd->mb_to_left_edge - LEFT_TOP_MARGIN,
- xd->mb_to_right_edge + RIGHT_BOTTOM_MARGIN,
- xd->mb_to_top_edge - LEFT_TOP_MARGIN,
- xd->mb_to_bottom_edge + RIGHT_BOTTOM_MARGIN);
-}
-
-void vp9_append_sub8x8_mvs_for_idx(VP9_COMMON *cm, MACROBLOCKD *xd,
- const TileInfo *const tile,
- int block, int ref, int mi_row, int mi_col,
- int_mv *nearest, int_mv *near);
-
-#endif // VP9_COMMON_VP9_FINDNEARMV_H_