diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 00:38:30 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 00:38:30 +0000 |
commit | d46ac5bfde98b57265de4aaf994e1690afa5d5b5 (patch) | |
tree | 483b38b640129a8c5e45f6d28a21e48de78155b4 /libavcodec/fft.c | |
parent | 0a570e826d7cb6602219236e20a15d85ab68b073 (diff) | |
download | ffmpeg-d46ac5bfde98b57265de4aaf994e1690afa5d5b5.tar.gz |
mdct wrapper function to match fft
Originally committed as revision 14703 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.c')
-rw-r--r-- | libavcodec/fft.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/fft.c b/libavcodec/fft.c index b659de16a1..4e32b039e8 100644 --- a/libavcodec/fft.c +++ b/libavcodec/fft.c @@ -87,8 +87,8 @@ int ff_fft_init(FFTContext *s, int nbits, int inverse) s->fft_permute = ff_fft_permute_c; s->fft_calc = ff_fft_calc_c; - s->imdct_calc = ff_imdct_calc; - s->imdct_half = ff_imdct_half; + s->imdct_calc = ff_imdct_calc_c; + s->imdct_half = ff_imdct_half_c; s->exptab1 = NULL; #if defined HAVE_MMX && defined HAVE_YASM |