summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2023-04-21 13:03:34 -0700
committerJames Zern <jzern@google.com>2023-04-21 13:06:07 -0700
commitec2a75ce9c92798d0238575150e337a6f024fe3e (patch)
tree33bd834f29db3b5a80bd7d8f5eea2658612d30d9 /vp9
parenta7a9983314638a0c6ad76d149c7a67f9b3d236c3 (diff)
downloadlibvpx-ec2a75ce9c92798d0238575150e337a6f024fe3e.tar
libvpx-ec2a75ce9c92798d0238575150e337a6f024fe3e.tar.gz
libvpx-ec2a75ce9c92798d0238575150e337a6f024fe3e.tar.bz2
libvpx-ec2a75ce9c92798d0238575150e337a6f024fe3e.zip
vp9_highbd_iht16x16_add_neon: clear -Wshadow warning
Bug: webm:1793 Change-Id: I4e79a4d7d41b6abf88e3e60c54ab48a92b0346d2
Diffstat (limited to 'vp9')
-rw-r--r--vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c b/vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c
index 219ff63cb..aeb7e49c1 100644
--- a/vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c
+++ b/vp9/common/arm/neon/vp9_highbd_iht16x16_add_neon.c
@@ -64,9 +64,9 @@ highbd_dct_const_round_shift_low_8(const int64x2x2_t *const in) {
#define highbd_iadst_half_butterfly(in, c, lane, out) \
do { \
- int64x2x2_t t[2]; \
- vmull_lane_s32_dual(in, c, lane, t); \
- out = highbd_dct_const_round_shift_low_8(t); \
+ int64x2x2_t _t[2]; \
+ vmull_lane_s32_dual(in, c, lane, _t); \
+ out = highbd_dct_const_round_shift_low_8(_t); \
} while (0)
#define highbd_iadst_butterfly(in0, in1, c, lane0, lane1, s0, s1) \