]> granicus.if.org Git - libvpx/commitdiff
fdct8x8_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:47:45 +0000 (12:47 -0700)
Change-Id: Ic53cdb8c9f8312e7404505fcec653d5b9e9587d1

test/fdct8x8_test.cc

index 567e5f6986511f64c0577915ba9caa2081f0c3e5..a694f0c4584f7effe61c63adc7d4bf6caf4aae2c 100644 (file)
@@ -39,7 +39,7 @@ typedef void (*IhtFunc)(const int16_t *in, uint8_t *out, int stride,
 typedef std::tr1::tuple<FdctFunc, IdctFunc, int> Dct8x8Param;
 typedef std::tr1::tuple<FhtFunc, IhtFunc, int> Ht8x8Param;
 
-void fdct8x8_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
+void fdct8x8_ref(const int16_t *in, int16_t *out, int stride, int /*tx_type*/) {
   vp9_fdct8x8_c(in, out, stride);
 }