summaryrefslogtreecommitdiffstats
path: root/third_party/aom/av1/common/daala_tx.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/aom/av1/common/daala_tx.h')
-rw-r--r--third_party/aom/av1/common/daala_tx.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/aom/av1/common/daala_tx.h b/third_party/aom/av1/common/daala_tx.h
new file mode 100644
index 000000000..39a844c44
--- /dev/null
+++ b/third_party/aom/av1/common/daala_tx.h
@@ -0,0 +1,13 @@
+#ifndef AOM_DSP_DAALA_TX_H_
+#define AOM_DSP_DAALA_TX_H_
+
+#include "av1/common/odintrin.h"
+
+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_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]);
+
+#endif