diff options
Diffstat (limited to 'third_party/aom/av1/common/daala_tx.h')
-rw-r--r-- | third_party/aom/av1/common/daala_tx.h | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/third_party/aom/av1/common/daala_tx.h b/third_party/aom/av1/common/daala_tx.h index 39a844c44..7145b66a2 100644 --- a/third_party/aom/av1/common/daala_tx.h +++ b/third_party/aom/av1/common/daala_tx.h @@ -1,13 +1,53 @@ #ifndef AOM_DSP_DAALA_TX_H_ #define AOM_DSP_DAALA_TX_H_ +#include "aom_dsp/aom_dsp_common.h" #include "av1/common/odintrin.h" +void daala_fdct4(const tran_low_t *input, tran_low_t *output); +void daala_idct4(const tran_low_t *input, tran_low_t *output); +void daala_fdst4(const tran_low_t *input, tran_low_t *output); +void daala_idst4(const tran_low_t *input, tran_low_t *output); +void daala_idtx4(const tran_low_t *input, tran_low_t *output); +void daala_fdct8(const tran_low_t *input, tran_low_t *output); +void daala_idct8(const tran_low_t *input, tran_low_t *output); +void daala_fdst8(const tran_low_t *input, tran_low_t *output); +void daala_idst8(const tran_low_t *input, tran_low_t *output); +void daala_idtx8(const tran_low_t *input, tran_low_t *output); +void daala_fdct16(const tran_low_t *input, tran_low_t *output); +void daala_idct16(const tran_low_t *input, tran_low_t *output); +void daala_fdst16(const tran_low_t *input, tran_low_t *output); +void daala_idst16(const tran_low_t *input, tran_low_t *output); +void daala_idtx16(const tran_low_t *input, tran_low_t *output); +void daala_fdct32(const tran_low_t *input, tran_low_t *output); +void daala_idct32(const tran_low_t *input, tran_low_t *output); +void daala_fdst32(const tran_low_t *input, tran_low_t *output); +void daala_idst32(const tran_low_t *input, tran_low_t *output); +void daala_idtx32(const tran_low_t *input, tran_low_t *output); +#if CONFIG_TX64X64 +void daala_fdct64(const tran_low_t *input, tran_low_t *output); +void daala_idct64(const tran_low_t *input, tran_low_t *output); +void daala_fdst64(const tran_low_t *input, tran_low_t *output); +void daala_idst64(const tran_low_t *input, tran_low_t *output); +void daala_idtx64(const tran_low_t *input, tran_low_t *output); +#endif + void od_bin_fdct4(od_coeff y[4], const od_coeff *x, int xstride); void od_bin_idct4(od_coeff *x, int xstride, const od_coeff y[4]); +void od_bin_fdst4(od_coeff y[4], const od_coeff *x, int xstride); +void od_bin_idst4(od_coeff *x, int xstride, const od_coeff y[4]); void od_bin_fdct8(od_coeff y[8], const od_coeff *x, int xstride); void od_bin_idct8(od_coeff *x, int xstride, const od_coeff y[8]); void od_bin_fdst8(od_coeff y[8], const od_coeff *x, int xstride); void od_bin_idst8(od_coeff *x, int xstride, const od_coeff y[8]); - +void od_bin_fdct16(od_coeff y[16], const od_coeff *x, int xstride); +void od_bin_idct16(od_coeff *x, int xstride, const od_coeff y[16]); +void od_bin_fdst16(od_coeff y[16], const od_coeff *x, int xstride); +void od_bin_idst16(od_coeff *x, int xstride, const od_coeff y[16]); +void od_bin_fdct32(od_coeff y[32], const od_coeff *x, int xstride); +void od_bin_idct32(od_coeff *x, int xstride, const od_coeff y[32]); +#if CONFIG_TX64X64 +void od_bin_fdct64(od_coeff y[64], const od_coeff *x, int xstride); +void od_bin_idct64(od_coeff *x, int xstride, const od_coeff y[64]); +#endif #endif |