diff options
author | trav90 <travawine@palemoon.org> | 2018-10-18 21:53:44 -0500 |
---|---|---|
committer | trav90 <travawine@palemoon.org> | 2018-10-18 21:53:44 -0500 |
commit | ec910d81405c736a4490383a250299a7837c2e64 (patch) | |
tree | 4f27cc226f93a863121aef6c56313e4153a69b3e /third_party/aom/av1/common/daala_tx.h | |
parent | 01eb57073ba97b2d6cbf20f745dfcc508197adc3 (diff) | |
download | UXP-ec910d81405c736a4490383a250299a7837c2e64.tar UXP-ec910d81405c736a4490383a250299a7837c2e64.tar.gz UXP-ec910d81405c736a4490383a250299a7837c2e64.tar.lz UXP-ec910d81405c736a4490383a250299a7837c2e64.tar.xz UXP-ec910d81405c736a4490383a250299a7837c2e64.zip |
Update aom to commit id e87fb2378f01103d5d6e477a4ef6892dc714e614
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 |