summaryrefslogtreecommitdiff
path: root/vp9/common
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-08-12 20:15:14 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-08-12 20:15:14 -0700
commita6b7bd6a1cb63026180437ef97d4f17c90897a71 (patch)
tree8b27bbb0664c184101638f2a9a6fbe899e41c97e /vp9/common
parent8910cf8d69be050dfd7be4b9cb540f97c95fcd03 (diff)
parentf45296176504475fce7b00c19aee984cfb6a7f82 (diff)
downloadlibvpx-a6b7bd6a1cb63026180437ef97d4f17c90897a71.tar
libvpx-a6b7bd6a1cb63026180437ef97d4f17c90897a71.tar.gz
libvpx-a6b7bd6a1cb63026180437ef97d4f17c90897a71.tar.bz2
libvpx-a6b7bd6a1cb63026180437ef97d4f17c90897a71.zip
Merge "fixes several -Wunused-function warnings"
Diffstat (limited to 'vp9/common')
-rw-r--r--vp9/common/vp9_mvref_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_mvref_common.h b/vp9/common/vp9_mvref_common.h
index 7bce3fa37..a937b7823 100644
--- a/vp9/common/vp9_mvref_common.h
+++ b/vp9/common/vp9_mvref_common.h
@@ -125,7 +125,7 @@ static const int idx_n_column_to_subblock[4][2] = {
// clamp_mv_ref
#define MV_BORDER (16 << 3) // Allow 16 pels in 1/8th pel units
-static void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) {
+static INLINE void clamp_mv_ref(MV *mv, const MACROBLOCKD *xd) {
clamp_mv(mv, xd->mb_to_left_edge - MV_BORDER,
xd->mb_to_right_edge + MV_BORDER,
xd->mb_to_top_edge - MV_BORDER,