summaryrefslogtreecommitdiff
path: root/test/dct16x16_test.cc
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-02-11 18:27:00 -0800
committerJames Zern <jzern@google.com>2016-02-11 19:25:48 -0800
commitcffef113b95cb0ff0a2e18cca0ab2b0e77f96020 (patch)
tree44400c036988c0e9d9a0a3bc28e229258e140bf6 /test/dct16x16_test.cc
parentbdad36899157c4a49f1f7fb3a0faccd261df7dd5 (diff)
downloadlibvpx-cffef113b95cb0ff0a2e18cca0ab2b0e77f96020.tar
libvpx-cffef113b95cb0ff0a2e18cca0ab2b0e77f96020.tar.gz
libvpx-cffef113b95cb0ff0a2e18cca0ab2b0e77f96020.tar.bz2
libvpx-cffef113b95cb0ff0a2e18cca0ab2b0e77f96020.zip
tests: quiet some unused parameter warnings
Change-Id: Iff8b0d77234f78bf407676891bccad92825bfcc6
Diffstat (limited to 'test/dct16x16_test.cc')
-rw-r--r--test/dct16x16_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/dct16x16_test.cc b/test/dct16x16_test.cc
index 0449b527c..d6cc5e443 100644
--- a/test/dct16x16_test.cc
+++ b/test/dct16x16_test.cc
@@ -276,12 +276,12 @@ void idct16x16_12(const tran_low_t *in, uint8_t *out, int stride) {
}
void idct16x16_10_ref(const tran_low_t *in, uint8_t *out, int stride,
- int tx_type) {
+ int /*tx_type*/) {
idct16x16_10(in, out, stride);
}
void idct16x16_12_ref(const tran_low_t *in, uint8_t *out, int stride,
- int tx_type) {
+ int /*tx_type*/) {
idct16x16_12(in, out, stride);
}
@@ -778,7 +778,7 @@ class InvTrans16x16DCT
virtual void TearDown() { libvpx_test::ClearSystemState(); }
protected:
- void RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) {}
+ void RunFwdTxfm(int16_t * /*in*/, tran_low_t * /*out*/, int /*stride*/) {}
void RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) {
inv_txfm_(out, dst, stride);
}