diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-03-23 19:48:16 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-03-23 19:48:16 +0000 |
commit | e1484ebed6d7a7e193d27e5d5fdf1ee585127081 (patch) | |
tree | 0f169f26370c6f76d65da974d42d0e11035cd82b /libavcodec/avfft.c | |
parent | be548816dc05c7e7a07659d499f1005fc0bc1d55 (diff) | |
download | ffmpeg-e1484ebed6d7a7e193d27e5d5fdf1ee585127081.tar.gz |
Implement the discrete sine/cosine transforms DCT-I and DST-I
Originally committed as revision 22649 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avfft.c')
-rw-r--r-- | libavcodec/avfft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avfft.c b/libavcodec/avfft.c index c49c9de117..25fc4e0955 100644 --- a/libavcodec/avfft.c +++ b/libavcodec/avfft.c @@ -116,7 +116,7 @@ void av_rdft_end(RDFTContext *s) #if CONFIG_DCT -DCTContext *av_dct_init(int nbits, int inverse) +DCTContext *av_dct_init(int nbits, enum DCTTransformType inverse) { DCTContext *s = av_malloc(sizeof(*s)); |