summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2023-04-12 13:56:39 -0700
committerJames Zern <jzern@google.com>2023-04-12 14:57:13 -0700
commit698eb779f27d93b0c577009358cc94b1d4770b8e (patch)
treef789fc57e351b19a13e04c05db0605d6b7bbeba7 /test
parentf254e6da84d564a5fbd2da7e0e1b31d81ba1dfba (diff)
downloadlibvpx-698eb779f27d93b0c577009358cc94b1d4770b8e.tar
libvpx-698eb779f27d93b0c577009358cc94b1d4770b8e.tar.gz
libvpx-698eb779f27d93b0c577009358cc94b1d4770b8e.tar.bz2
libvpx-698eb779f27d93b0c577009358cc94b1d4770b8e.zip
convolve_test: clear -Wshadow warning
Bug: webm:1793 Change-Id: I22db73cb756c6c680b73684caef1e08bb6e729d8
Diffstat (limited to 'test')
-rw-r--r--test/convolve_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/convolve_test.cc b/test/convolve_test.cc
index d56904869..5a17d8089 100644
--- a/test/convolve_test.cc
+++ b/test/convolve_test.cc
@@ -244,7 +244,7 @@ void highbd_filter_block2d_8_c(const uint16_t *src_ptr,
// Vertical pass (transposed intermediate -> dst).
{
- uint16_t *src_ptr = intermediate_buffer;
+ src_ptr = intermediate_buffer;
const int dst_next_row_stride = dst_stride - output_width;
unsigned int i, j;
for (i = 0; i < output_height; ++i) {