summaryrefslogtreecommitdiff
path: root/libavcodec/fft.h
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2010-03-21 11:31:11 +0000
committerVitor Sessak <vitor1001@gmail.com>2010-03-21 11:31:11 +0000
commite30ab38e94252398e4390e12e1a883d24cc5afa5 (patch)
treebb2cdbdbf7a4477bacc54cc29ba51472e3059f41 /libavcodec/fft.h
parent89d7df7c743abb434916d6209474f975b1f3df86 (diff)
Call DCT by function pointer. Needed for any future ASM implementation and
allows further cleanup. Originally committed as revision 22617 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.h')
-rw-r--r--libavcodec/fft.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h
index 17eb380731..df7ded99a8 100644
--- a/libavcodec/fft.h
+++ b/libavcodec/fft.h
@@ -220,6 +220,7 @@ struct DCTContext {
RDFTContext rdft;
const float *costab;
FFTSample *csc2;
+ void (*dct_calc)(struct DCTContext *s, FFTSample *data);
};
/**