summaryrefslogtreecommitdiff
path: root/aom_dsp/blend_a64_hmask.c
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2016-09-02 15:38:59 -0700
committerYaowu Xu <yaowu@google.com>2016-09-06 14:52:49 +0000
commitf87b9021f1a345bce24ee87ff62d20f7bed494b2 (patch)
tree5a37b148c936b41bbd9f1c9057d64d74267840e7 /aom_dsp/blend_a64_hmask.c
parent037845507d9f399cbcc4fd796e8e13ccdd285735 (diff)
Fix a compiler warning of unused variable
Change-Id: I4a2faa32cc0847fe14dd8f40156163f4713055ca
Diffstat (limited to 'aom_dsp/blend_a64_hmask.c')
-rw-r--r--aom_dsp/blend_a64_hmask.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/aom_dsp/blend_a64_hmask.c b/aom_dsp/blend_a64_hmask.c
index 5ebbe0b20..dc11e8075 100644
--- a/aom_dsp/blend_a64_hmask.c
+++ b/aom_dsp/blend_a64_hmask.c
@@ -49,6 +49,7 @@ void aom_highbd_blend_a64_hmask_c(uint8_t *dst_8, uint32_t dst_stride,
uint16_t *dst = CONVERT_TO_SHORTPTR(dst_8);
const uint16_t *src0 = CONVERT_TO_SHORTPTR(src0_8);
const uint16_t *src1 = CONVERT_TO_SHORTPTR(src1_8);
+ (void)bd;
assert(IMPLIES(src0 == dst, src0_stride == dst_stride));
assert(IMPLIES(src1 == dst, src1_stride == dst_stride));