diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-20 19:11:44 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-20 19:11:44 +0100 |
commit | 90f6433dcf374dd81a6b760f49392118cd039fb4 (patch) | |
tree | 49fcb4d086fd1edd8e5736c452032beff6ce195c | |
parent | 84147554865b5e34b8e81d4e9a1a238817e5d81e (diff) | |
parent | bf58545aace7d14522ce4fa680c7b3ff62109a3a (diff) | |
download | ffmpeg-90f6433dcf374dd81a6b760f49392118cd039fb4.tar.gz |
Merge commit 'bf58545aace7d14522ce4fa680c7b3ff62109a3a'
* commit 'bf58545aace7d14522ce4fa680c7b3ff62109a3a':
audiodsp: fix vector_clipf documentation
Merged-by: Clément Bœsch <u@pkh.me>
-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 b55bf858e0..003a1d0ea9 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 */); |