diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2006-08-10 19:06:25 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2006-08-10 19:06:25 +0000 |
commit | eb4825b5d43bb6ecfae4d64688f9e2d2ac075263 (patch) | |
tree | 13acab1d16846859f7636ea19f796d02e2ea6da4 /libavcodec/vorbis.h | |
parent | 60ae06e77e6e654b19529e89f8f067abd9a3d71a (diff) | |
download | ffmpeg-eb4825b5d43bb6ecfae4d64688f9e2d2ac075263.tar.gz |
sse and 3dnow implementations of float->int conversion and mdct windowing.
15% faster vorbis.
Originally committed as revision 5975 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis.h')
-rw-r--r-- | libavcodec/vorbis.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vorbis.h b/libavcodec/vorbis.h index 1274f1891f..de150f9940 100644 --- a/libavcodec/vorbis.h +++ b/libavcodec/vorbis.h @@ -120,6 +120,8 @@ typedef struct vorbis_context_s { float *ret; float *buf; float *buf_tmp; + uint_fast32_t add_bias; // for float->int conversion + uint_fast32_t exp_bias; } vorbis_context; |