summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_mcomp.h
diff options
context:
space:
mode:
authorHui Su <huisu@google.com>2019-01-30 18:17:11 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-01-30 18:17:11 +0000
commit15ea853ccd534ef06908198529429ae893f3ca06 (patch)
treef94fdd1415baeb87e433ec9b3b5f3a99f03bec46 /vp9/encoder/vp9_mcomp.h
parent6796c0cfc3e51a181b0afec442a66dfaa5010ba6 (diff)
parent866242bb09d76d2aa5e42e1e09bfa1a7a979cc99 (diff)
downloadlibvpx-15ea853ccd534ef06908198529429ae893f3ca06.tar
libvpx-15ea853ccd534ef06908198529429ae893f3ca06.tar.gz
libvpx-15ea853ccd534ef06908198529429ae893f3ca06.tar.bz2
libvpx-15ea853ccd534ef06908198529429ae893f3ca06.zip
Merge "Add some const qualifiers where applicable"
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 779e8d8e7..da93c5d44 100644
--- a/vp9/encoder/vp9_mcomp.h
+++ b/vp9/encoder/vp9_mcomp.h
@@ -115,7 +115,8 @@ struct VP9_COMP;
// "mvp_full" is the MV search starting point;
// "ref_mv" is the context reference MV;
// "tmp_mv" is the searched best MV.
-int vp9_full_pixel_search(struct VP9_COMP *cpi, MACROBLOCK *x, BLOCK_SIZE bsize,
+int vp9_full_pixel_search(const struct VP9_COMP *const cpi,
+ const MACROBLOCK *const x, BLOCK_SIZE bsize,
MV *mvp_full, int step_param, int search_method,
int error_per_bit, int *cost_list, const MV *ref_mv,
MV *tmp_mv, int var_max, int rd);