]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/dsputil.h
moved the tables into header files (and applied the 'static' patch). Nick: why do...
[ffmpeg] / libavcodec / dsputil.h
index e6c4030d4e2be5d2f5a7702148518de9f9dd142f..0a2935bbff49f8745f6dd085d3dc541a3e308798 100644 (file)
@@ -34,7 +34,6 @@
 //#define DEBUG
 /* dct code */
 typedef short DCTELEM;
-//typedef int DCTELEM;
 
 void fdct_ifast (DCTELEM *data);
 void ff_jpeg_fdct_islow (DCTELEM *data);
@@ -240,6 +239,9 @@ typedef struct DSPContext {
     /* (I)DCT */
     void (*fdct)(DCTELEM *block/* align 16*/);
     
+    /* IDCT really*/
+    void (*idct)(DCTELEM *block/* align 16*/);
+    
     /**
      * block -> idct -> clip to unsigned 8 bit -> dest.
      * (-1392, 0, 0, ...) -> idct -> (-174, -174, ...) -> put -> (0, 0, ...)