From: Jingning Han Date: Fri, 15 Apr 2016 19:02:41 +0000 (-0700) Subject: Remove duplicated TxfmFunc declarations X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d503d1043114e2ce3a3010404587ab49b065bea;p=libvpx Remove duplicated TxfmFunc declarations Change-Id: If3876610a1fbce0988cc21ea917596bbb467df93 --- diff --git a/vp10/common/vp10_fwd_txfm2d.c b/vp10/common/vp10_fwd_txfm2d.c index dd7101a9d..d54a1746e 100644 --- a/vp10/common/vp10_fwd_txfm2d.c +++ b/vp10/common/vp10_fwd_txfm2d.c @@ -11,9 +11,6 @@ #include "vp10/common/vp10_txfm.h" #include "vp10/common/vp10_fwd_txfm1d.h" -typedef void (*TxfmFunc)(const int32_t *input, int32_t *output, - const int8_t *cos_bit, const int8_t *stage_range); - static inline TxfmFunc fwd_txfm_type_to_func(TXFM_TYPE txfm_type) { switch (txfm_type) { case TXFM_TYPE_DCT4: diff --git a/vp10/common/vp10_inv_txfm2d.c b/vp10/common/vp10_inv_txfm2d.c index d9f713cbc..a1ad4b88e 100644 --- a/vp10/common/vp10_inv_txfm2d.c +++ b/vp10/common/vp10_inv_txfm2d.c @@ -11,9 +11,6 @@ #include "vp10/common/vp10_txfm.h" #include "vp10/common/vp10_inv_txfm1d.h" -typedef void (*TxfmFunc)(const int32_t *input, int32_t *output, - const int8_t *cos_bit, const int8_t *stage_range); - static inline TxfmFunc inv_txfm_type_to_func(TXFM_TYPE txfm_type) { switch (txfm_type) { case TXFM_TYPE_DCT4: