From 06d01188e94321113684a271f62f6b0f2b818e53 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Wed, 30 Jun 2010 20:11:27 +0000 Subject: More mp{1,2,3} 32-point DCT transform to our common DCT framework. Should allow for future SIMD optimizations. Originally committed as revision 23912 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegaudiodec_float.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/mpegaudiodec_float.c') diff --git a/libavcodec/mpegaudiodec_float.c b/libavcodec/mpegaudiodec_float.c index 578270be1e..a8aebba654 100644 --- a/libavcodec/mpegaudiodec_float.c +++ b/libavcodec/mpegaudiodec_float.c @@ -34,7 +34,7 @@ void ff_mpa_synth_filter_float(MPADecodeContext *s, float *synth_buf_ptr, offset = *synth_buf_offset; synth_buf = synth_buf_ptr + offset; - dct32(synth_buf, sb_samples); + s->dct.dct32(synth_buf, sb_samples); s->apply_window_mp3(synth_buf, window, dither_state, samples, incr); offset = (offset - 32) & 511; -- cgit v1.2.3