diff fft.h @ 12026:3f3d08bb5cf8 libavcodec

More mp{1,2,3} 32-point DCT transform to our common DCT framework. Should allow for future SIMD optimizations.
author vitor
date Wed, 30 Jun 2010 20:11:27 +0000
parents fdafbcef52f5
children c80c7a717156
line wrap: on
line diff
--- a/fft.h	Wed Jun 30 20:09:37 2010 +0000
+++ b/fft.h	Wed Jun 30 20:11:27 2010 +0000
@@ -228,6 +228,7 @@
     const float *costab;
     FFTSample *csc2;
     void (*dct_calc)(struct DCTContext *s, FFTSample *data);
+    void (*dct32)(FFTSample *out, const FFTSample *in);
 };
 
 /**