fdct8x8_test.cc: remove unused param warnings

Change-Id: Ic53cdb8c9f8312e7404505fcec653d5b9e9587d1
This commit is contained in:
James Zern 2014-08-22 12:11:42 -07:00
parent 771dd6ef5e
commit 722eecfa35

View 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);
}