]> granicus.if.org Git - libvpx/commitdiff
dct16x16_test.cc: remove unused param warnings
authorJames Zern <jzern@google.com>
Fri, 22 Aug 2014 19:11:42 +0000 (12:11 -0700)
committerJames Zern <jzern@google.com>
Fri, 22 Aug 2014 19:25:23 +0000 (12:25 -0700)
Change-Id: I744342b12ae7e5423b06b87ceec2d2ab4a3a3cbb

test/dct16x16_test.cc

index ee417ce2e97603e1fb9685ec2dc054c6c39ed280..c38cc2ea5d46d9b4312325c7240454a211f47560 100644 (file)
@@ -268,11 +268,13 @@ typedef void (*IhtFunc)(const int16_t *in, uint8_t *out, int stride,
 typedef std::tr1::tuple<FdctFunc, IdctFunc, int> Dct16x16Param;
 typedef std::tr1::tuple<FhtFunc, IhtFunc, int> Ht16x16Param;
 
-void fdct16x16_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
+void fdct16x16_ref(const int16_t *in, int16_t *out, int stride,
+                   int /*tx_type*/) {
   vp9_fdct16x16_c(in, out, stride);
 }
 
-void idct16x16_ref(const int16_t *in, uint8_t *dest, int stride, int tx_type) {
+void idct16x16_ref(const int16_t *in, uint8_t *dest, int stride,
+                   int /*tx_type*/) {
   vp9_idct16x16_256_add_c(in, dest, stride);
 }