summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_mcomp.h
diff options
context:
space:
mode:
authorHui Su <huisu@google.com>2018-04-26 13:31:43 -0700
committerHui Su <huisu@google.com>2018-04-26 13:59:42 -0700
commit34353da674d73c2c10e9d0c050eeb632a8d2083a (patch)
treed6bae9eb9bfb3dd6df081687a362acfbbafff089 /vp9/encoder/vp9_mcomp.h
parent2eac6df788dbcfb8f9388f785e7b124765b252bc (diff)
downloadlibvpx-34353da674d73c2c10e9d0c050eeb632a8d2083a.tar
libvpx-34353da674d73c2c10e9d0c050eeb632a8d2083a.tar.gz
libvpx-34353da674d73c2c10e9d0c050eeb632a8d2083a.tar.bz2
libvpx-34353da674d73c2c10e9d0c050eeb632a8d2083a.zip
Respect MV limit in vp9_int_pro_motion_estimation()
Change-Id: I08cb072a32e06c6452eca068b2f7ef7287f221e6
Diffstat (limited to 'vp9/encoder/vp9_mcomp.h')
-rw-r--r--vp9/encoder/vp9_mcomp.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_mcomp.h b/vp9/encoder/vp9_mcomp.h
index b8db2c353..b4787fe1f 100644
--- a/vp9/encoder/vp9_mcomp.h
+++ b/vp9/encoder/vp9_mcomp.h
@@ -66,7 +66,8 @@ int vp9_refining_search_sad(const struct macroblock *x, struct mv *ref_mv,
// Perform integral projection based motion estimation.
unsigned int vp9_int_pro_motion_estimation(const struct VP9_COMP *cpi,
MACROBLOCK *x, BLOCK_SIZE bsize,
- int mi_row, int mi_col);
+ int mi_row, int mi_col,
+ const MV *ref_mv);
typedef uint32_t(fractional_mv_step_fp)(
const MACROBLOCK *x, MV *bestmv, const MV *ref_mv, int allow_hp,