summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorchiyotsai <chiyotsai@google.com>2023-05-03 13:28:41 -0700
committerchiyotsai <chiyotsai@google.com>2023-05-03 14:12:12 -0700
commit3dbadd1b83ce83b804f7dc2034fb51870365e337 (patch)
tree085bbf45c74487c7c7a85156ce5e530aa06afa53 /test
parent84a180fe858fd6de9c301cd884e2f1ff341781b3 (diff)
downloadlibvpx-3dbadd1b83ce83b804f7dc2034fb51870365e337.tar.gz
Fix clang warning on const-qualification of parameters
Change-Id: I900a0a48dde5fcb262157b191ac536e18269feb3
Diffstat (limited to 'test')
-rw-r--r--test/vp9_quantize_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/vp9_quantize_test.cc b/test/vp9_quantize_test.cc
index 84a5a58e4..5e3a7c270 100644
--- a/test/vp9_quantize_test.cc
+++ b/test/vp9_quantize_test.cc
@@ -39,10 +39,10 @@ namespace {
const int number_of_iterations = 100;
typedef void (*QuantizeFunc)(const tran_low_t *coeff, intptr_t count,
- const macroblock_plane *const mb_plane,
+ const macroblock_plane *mb_plane,
tran_low_t *qcoeff, tran_low_t *dqcoeff,
const int16_t *dequant, uint16_t *eob,
- const struct ScanOrder *const scan_order);
+ const struct ScanOrder *scan_order);
typedef std::tuple<QuantizeFunc, QuantizeFunc, vpx_bit_depth_t,
int /*max_size*/, bool /*is_fp*/>
QuantizeParam;