diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-06-08 23:20:59 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-06-18 18:01:14 -0400 |
commit | 82b2df979069063beb14be340350501c8340f9cd (patch) | |
tree | 3c6a61d185f9fbab0d21ebce259ef232973d7219 /libavutil/float_dsp.h | |
parent | cb5042d02c66aed68643633446f6bf623b72416e (diff) | |
download | ffmpeg-82b2df979069063beb14be340350501c8340f9cd.tar.gz |
float_dsp: add x86-optimized functions for vector_fmac_scalar()
Diffstat (limited to 'libavutil/float_dsp.h')
-rw-r--r-- | libavutil/float_dsp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/float_dsp.h b/libavutil/float_dsp.h index 4e266304da..95cef62f29 100644 --- a/libavutil/float_dsp.h +++ b/libavutil/float_dsp.h @@ -42,12 +42,12 @@ typedef struct AVFloatDSPContext { * overlap exactly or not at all. * * @param dst result vector - * constraints: 16-byte aligned + * constraints: 32-byte aligned * @param src input vector - * constraints: 16-byte aligned + * constraints: 32-byte aligned * @param mul scalar value * @param len length of vector - * constraints: multiple of 4 + * constraints: multiple of 16 */ void (*vector_fmac_scalar)(float *dst, const float *src, float mul, int len); |