diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2006-08-11 18:19:37 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2006-08-11 18:19:37 +0000 |
commit | 069720565ce0f2cc94fa2474f30d155b2755e350 (patch) | |
tree | 698c1af640613775fa246d8cfb822922aeaac085 /libavcodec/dsputil.h | |
parent | 49a0122c99dcbdf2960ea36e10ded5d608d2e287 (diff) | |
download | ffmpeg-069720565ce0f2cc94fa2474f30d155b2755e350.tar.gz |
vorbis simd tweaks
Originally committed as revision 5983 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 5c31a87dcf..ef4db63c85 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -313,8 +313,8 @@ typedef struct DSPContext { /* assume len is a multiple of 4, and arrays are 16-byte aligned */ void (*vorbis_inverse_coupling)(float *mag, float *ang, int blocksize); - void (*vector_fmul)(float *dst, const float *src, int len); /* assume len is a multiple of 8, and arrays are 16-byte aligned */ + void (*vector_fmul)(float *dst, const float *src, int len); void (*vector_fmul_reverse)(float *dst, const float *src0, const float *src1, int len); /* assume len is a multiple of 8, and src arrays are 16-byte aligned */ void (*vector_fmul_add_add)(float *dst, const float *src0, const float *src1, const float *src2, int src3, int len, int step); |