Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-06-09 07:20:59 +0400
committerJustin Ruggles <justin.ruggles@gmail.com>2012-06-19 02:01:14 +0400
commit82b2df979069063beb14be340350501c8340f9cd (patch)
tree3c6a61d185f9fbab0d21ebce259ef232973d7219 /libavutil/float_dsp.h
parentcb5042d02c66aed68643633446f6bf623b72416e (diff)
float_dsp: add x86-optimized functions for vector_fmac_scalar()
Diffstat (limited to 'libavutil/float_dsp.h')
-rw-r--r--libavutil/float_dsp.h6
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);