diff mpegaudiodec_float.c @ 12026:3f3d08bb5cf8 libavcodec

More mp{1,2,3} 32-point DCT transform to our common DCT framework. Should allow for future SIMD optimizations.
author vitor
date Wed, 30 Jun 2010 20:11:27 +0000
parents 5e8770f9d8f1
children 49c528a39187
line wrap: on
line diff
--- a/mpegaudiodec_float.c	Wed Jun 30 20:09:37 2010 +0000
+++ b/mpegaudiodec_float.c	Wed Jun 30 20:11:27 2010 +0000
@@ -34,7 +34,7 @@
     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;