diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-08-09 19:50:56 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-09-22 09:47:52 +0200 |
commit | bf58545aace7d14522ce4fa680c7b3ff62109a3a (patch) | |
tree | 9bc0c80a54716f5c47912954ea6a44e98ddeed56 | |
parent | e9ef6171396dc4106526aaa86b620c61ca3d1017 (diff) | |
download | ffmpeg-bf58545aace7d14522ce4fa680c7b3ff62109a3a.tar.gz |
audiodsp: fix vector_clipf documentation
The x86 version processes 16 floats per iteration, so len must be a
multiple of 16.
-rw-r--r-- | libavcodec/audiodsp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/audiodsp.h b/libavcodec/audiodsp.h index 58205a1f19..e48cdb092e 100644 --- a/libavcodec/audiodsp.h +++ b/libavcodec/audiodsp.h @@ -45,7 +45,7 @@ typedef struct AudioDSPContext { */ void (*vector_clip_int32)(int32_t *dst, const int32_t *src, int32_t min, int32_t max, unsigned int len); - /* assume len is a multiple of 8, and arrays are 16-byte aligned */ + /* assume len is a multiple of 16, and arrays are 16-byte aligned */ void (*vector_clipf)(float *dst /* align 16 */, const float *src /* align 16 */, float min, float max, int len /* align 16 */); |