aboutsummaryrefslogtreecommitdiff
path: root/Src/f263/idct.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/f263/idct.h')
-rw-r--r--Src/f263/idct.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Src/f263/idct.h b/Src/f263/idct.h
new file mode 100644
index 00000000..a7c5676a
--- /dev/null
+++ b/Src/f263/idct.h
@@ -0,0 +1,14 @@
+#pragma once
+ class IDCT
+ {
+ public:
+ void init();
+ void idct(short *block);
+ private:
+ void idctcol(short *blk);
+ void idctrow(short *blk);
+
+ static bool initted;
+ static short iclip[1024]; /* clipping table */
+ static short *iclp;
+ }; \ No newline at end of file