summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2015-08-07 21:41:32 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-08-07 21:41:32 +0000
commita9aa29d90161e5f4f47fb7b9e1346569f233a562 (patch)
tree1c598d9e9a0b0f27c97750b983f3c7e4e7dfa9ee
parent9f7fdcbe6061c1034e978bdff0b775802627dc67 (diff)
parent1057ee4847c94a8cdef0bc977f83cb09ca5937d7 (diff)
downloadlibvpx-a9aa29d90161e5f4f47fb7b9e1346569f233a562.tar
libvpx-a9aa29d90161e5f4f47fb7b9e1346569f233a562.tar.gz
libvpx-a9aa29d90161e5f4f47fb7b9e1346569f233a562.tar.bz2
libvpx-a9aa29d90161e5f4f47fb7b9e1346569f233a562.zip
Merge "Add static syntax to copy_mem64x64"
-rw-r--r--vp9/common/vp9_mfqe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/common/vp9_mfqe.c b/vp9/common/vp9_mfqe.c
index bebb37eda..6d560f438 100644
--- a/vp9/common/vp9_mfqe.c
+++ b/vp9/common/vp9_mfqe.c
@@ -120,8 +120,8 @@ static void copy_mem32x32(const uint8_t *src, int src_stride,
dst + dst_stride * 16 + 16, dst_stride);
}
-void copy_mem64x64(const uint8_t *src, int src_stride,
- uint8_t *dst, int dst_stride) {
+static void copy_mem64x64(const uint8_t *src, int src_stride,
+ uint8_t *dst, int dst_stride) {
copy_mem32x32(src, src_stride, dst, dst_stride);
copy_mem32x32(src + 32, src_stride, dst + 32, dst_stride);
copy_mem32x32(src + src_stride * 32, src_stride,