shithub: libvpx

Download patch

ref: 632e41976e8f77e7756578d521d27e7da1bed0d7
parent: cd2ac828cc60aeba14100e2591af4cdc628169fb
author: James Zern <jzern@google.com>
date: Fri Aug 22 08:11:42 EDT 2014

dct16x16_test.cc: remove unused param warnings

Change-Id: I744342b12ae7e5423b06b87ceec2d2ab4a3a3cbb

--- a/test/dct16x16_test.cc
+++ b/test/dct16x16_test.cc
@@ -268,11 +268,13 @@
 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);
 }