summaryrefslogtreecommitdiffstats
path: root/renderscript/include/rs_idct.rsh
diff options
context:
space:
mode:
Diffstat (limited to 'renderscript/include/rs_idct.rsh')
-rw-r--r--renderscript/include/rs_idct.rsh13
1 files changed, 13 insertions, 0 deletions
diff --git a/renderscript/include/rs_idct.rsh b/renderscript/include/rs_idct.rsh
new file mode 100644
index 0000000..d602e34
--- /dev/null
+++ b/renderscript/include/rs_idct.rsh
@@ -0,0 +1,13 @@
+#ifndef __RS_IDCT_RSH__
+#define __RS_IDCT_RSH__
+
+#if RS_VERSION > 19
+
+extern void rsIdct4x4(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
+extern void rsIdct8x8(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
+extern void rsIdct16x16(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
+extern void rsIdct32x32(const rs_allocation input, rs_allocation dest, int eob, int xoff, int yoff);
+
+#endif
+
+#endif