diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2006-08-03 03:18:47 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2006-08-03 03:18:47 +0000 |
commit | 2dac4acfc0f2abbe28082cdb5c3ed775a78d2867 (patch) | |
tree | ae3bf6a7ddd9bb5bf29a305eef842488629965d9 /libavcodec/vorbis.h | |
parent | 7bf0049623652b92a566999d37f0b481c2056d6e (diff) | |
download | ffmpeg-2dac4acfc0f2abbe28082cdb5c3ed775a78d2867.tar.gz |
sse & sse2 implementations of vorbis channel coupling.
9% faster vorbis (on a K8).
Originally committed as revision 5898 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis.h')
-rw-r--r-- | libavcodec/vorbis.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vorbis.h b/libavcodec/vorbis.h index c818207d92..1274f1891f 100644 --- a/libavcodec/vorbis.h +++ b/libavcodec/vorbis.h @@ -87,6 +87,7 @@ typedef struct { typedef struct vorbis_context_s { AVCodecContext *avccontext; GetBitContext gb; + DSPContext dsp; MDCTContext mdct0; MDCTContext mdct1; |