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/vorbis.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/vorbis.c')
-rw-r--r-- | libavcodec/vorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis.c b/libavcodec/vorbis.c index 0bd318d6b1..bf2cb358bf 100644 --- a/libavcodec/vorbis.c +++ b/libavcodec/vorbis.c @@ -1598,7 +1598,7 @@ static int vorbis_parse_audio_packet(vorbis_context *vc) { saved_start=vc->saved_start; - ff_imdct_calc(vc->modes[mode_number].blockflag ? &vc->mdct1 : &vc->mdct0, buf, ch_floor_ptr, buf_tmp); + vc->mdct0.fft.imdct_calc(vc->modes[mode_number].blockflag ? &vc->mdct1 : &vc->mdct0, buf, ch_floor_ptr, buf_tmp); if (vc->modes[mode_number].blockflag) { // -- overlap/add |