diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2006-08-08 04:01:04 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2006-08-08 04:01:04 +0000 |
commit | bcfa3e58ee0ec7f8a739867ea66f9acb834e498a (patch) | |
tree | a7aec9632c7157f03266a46861d4a898ee2340f5 /libavcodec/wmadec.c | |
parent | 2c5ad5fd74a44145459e74acdf486c084f8de4b4 (diff) | |
download | ffmpeg-bcfa3e58ee0ec7f8a739867ea66f9acb834e498a.tar.gz |
3dnow2 implementation of imdct.
6% faster vorbis and wma.
Originally committed as revision 5954 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r-- | libavcodec/wmadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index 227c9695ba..6f33d2a8f8 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -1113,7 +1113,7 @@ static int wma_decode_block(WMADecodeContext *s) n = s->block_len; n4 = s->block_len / 2; - ff_imdct_calc(&s->mdct_ctx[bsize], + s->mdct_ctx[bsize].fft.imdct_calc(&s->mdct_ctx[bsize], output, s->coefs[ch], s->mdct_tmp); /* XXX: optimize all that by build the window and |