summaryrefslogtreecommitdiffstats
path: root/include/dct.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dct.h')
-rw-r--r--include/dct.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/dct.h b/include/dct.h
index 3418eac..5396d15 100644
--- a/include/dct.h
+++ b/include/dct.h
@@ -1,5 +1,7 @@
-typedef int DCTELEM; /* 16 or 32 bits is fine */
-
-
-void jpeg_fdct_ifast (DCTELEM * data);
-void IDCT(const int input[64], unsigned char *output);
+typedef int DCTELEM; /* 16 or 32 bits is fine */
+
+
+//void jpeg_fdct_ifast (DCTELEM * data);
+void jpeg_fdct_ifast (DCTELEM * data, unsigned char * qdata);
+//void IDCT(const int input[64], unsigned char *output);
+void IDCT(int Y[64], unsigned char *qdata, unsigned char *output);