diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-29 22:11:05 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-29 22:11:05 +0000 |
commit | 13c2469d7fc6d10acfcb651c2cadf482f43cc4eb (patch) | |
tree | 89beeaed08aec21a974563eed2c45057c9286ab1 /libavcodec/vorbis.h | |
parent | 6d1feb028f5e245477da71848e702388dca91ce0 (diff) | |
download | ffmpeg-13c2469d7fc6d10acfcb651c2cadf482f43cc4eb.tar.gz |
Vorbis sse fix by (Balatoni Denes: dbalatoni, programozo hu)
Originally committed as revision 4317 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 8e946c8b75..a9e88cbd65 100644 --- a/libavcodec/vorbis.h +++ b/libavcodec/vorbis.h @@ -88,6 +88,8 @@ typedef struct { float *saved; uint_fast16_t saved_start; float *ret; + float *buf; + float *buf_tmp; } vorbis_context; |