1 #ifndef AOM_DSP_DAALA_TX_H_
2 #define AOM_DSP_DAALA_TX_H_
3 
4 #include "aom_dsp/aom_dsp_common.h"
5 #include "av1/common/odintrin.h"
6 
7 void daala_fdct4(const tran_low_t *input, tran_low_t *output);
8 void daala_idct4(const tran_low_t *input, tran_low_t *output);
9 void daala_fdst4(const tran_low_t *input, tran_low_t *output);
10 void daala_idst4(const tran_low_t *input, tran_low_t *output);
11 void daala_idtx4(const tran_low_t *input, tran_low_t *output);
12 void daala_fdct8(const tran_low_t *input, tran_low_t *output);
13 void daala_idct8(const tran_low_t *input, tran_low_t *output);
14 void daala_fdst8(const tran_low_t *input, tran_low_t *output);
15 void daala_idst8(const tran_low_t *input, tran_low_t *output);
16 void daala_idtx8(const tran_low_t *input, tran_low_t *output);
17 void daala_fdct16(const tran_low_t *input, tran_low_t *output);
18 void daala_idct16(const tran_low_t *input, tran_low_t *output);
19 void daala_fdst16(const tran_low_t *input, tran_low_t *output);
20 void daala_idst16(const tran_low_t *input, tran_low_t *output);
21 void daala_idtx16(const tran_low_t *input, tran_low_t *output);
22 void daala_fdct32(const tran_low_t *input, tran_low_t *output);
23 void daala_idct32(const tran_low_t *input, tran_low_t *output);
24 void daala_fdst32(const tran_low_t *input, tran_low_t *output);
25 void daala_idst32(const tran_low_t *input, tran_low_t *output);
26 void daala_idtx32(const tran_low_t *input, tran_low_t *output);
27 #if CONFIG_TX64X64
28 void daala_fdct64(const tran_low_t *input, tran_low_t *output);
29 void daala_idct64(const tran_low_t *input, tran_low_t *output);
30 void daala_fdst64(const tran_low_t *input, tran_low_t *output);
31 void daala_idst64(const tran_low_t *input, tran_low_t *output);
32 void daala_idtx64(const tran_low_t *input, tran_low_t *output);
33 #endif
34 
35 void od_bin_fdct4(od_coeff y[4], const od_coeff *x, int xstride);
36 void od_bin_idct4(od_coeff *x, int xstride, const od_coeff y[4]);
37 void od_bin_fdst4(od_coeff y[4], const od_coeff *x, int xstride);
38 void od_bin_idst4(od_coeff *x, int xstride, const od_coeff y[4]);
39 void od_bin_fdct8(od_coeff y[8], const od_coeff *x, int xstride);
40 void od_bin_idct8(od_coeff *x, int xstride, const od_coeff y[8]);
41 void od_bin_fdst8(od_coeff y[8], const od_coeff *x, int xstride);
42 void od_bin_idst8(od_coeff *x, int xstride, const od_coeff y[8]);
43 void od_bin_fdct16(od_coeff y[16], const od_coeff *x, int xstride);
44 void od_bin_idct16(od_coeff *x, int xstride, const od_coeff y[16]);
45 void od_bin_fdst16(od_coeff y[16], const od_coeff *x, int xstride);
46 void od_bin_idst16(od_coeff *x, int xstride, const od_coeff y[16]);
47 void od_bin_fdct32(od_coeff y[32], const od_coeff *x, int xstride);
48 void od_bin_idct32(od_coeff *x, int xstride, const od_coeff y[32]);
49 #if CONFIG_TX64X64
50 void od_bin_fdct64(od_coeff y[64], const od_coeff *x, int xstride);
51 void od_bin_idct64(od_coeff *x, int xstride, const od_coeff y[64]);
52 #endif
53 #endif
54