diff fft.h @ 11518:c4d18d452f82 libavcodec

Call DCT by function pointer. Needed for any future ASM implementation and allows further cleanup.
author vitor
date Sun, 21 Mar 2010 11:31:11 +0000
parents 628a6ba6a4af
children e011e73a902b
line wrap: on
line diff
--- a/fft.h	Sun Mar 21 11:28:38 2010 +0000
+++ b/fft.h	Sun Mar 21 11:31:11 2010 +0000
@@ -220,6 +220,7 @@
     RDFTContext rdft;
     const float *costab;
     FFTSample *csc2;
+    void (*dct_calc)(struct DCTContext *s, FFTSample *data);
 };
 
 /**