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:
authorAnton Khirnov <anton@khirnov.net>2016-08-09 20:50:56 +0300
committerAnton Khirnov <anton@khirnov.net>2016-09-22 10:47:52 +0300
commitbf58545aace7d14522ce4fa680c7b3ff62109a3a (patch)
tree9bc0c80a54716f5c47912954ea6a44e98ddeed56 /libavcodec/audiodsp.h
parente9ef6171396dc4106526aaa86b620c61ca3d1017 (diff)
audiodsp: fix vector_clipf documentation
The x86 version processes 16 floats per iteration, so len must be a multiple of 16.
Diffstat (limited to 'libavcodec/audiodsp.h')
-rw-r--r--libavcodec/audiodsp.h2
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 */);