git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
8414755
)
Merge commit 'bf58545aace7d14522ce4fa680c7b3ff62109a3a'
author
Clément Bœsch
<u@pkh.me>
Mon, 20 Mar 2017 18:11:44 +0000
(19:11 +0100)
committer
Clément Bœsch
<u@pkh.me>
Mon, 20 Mar 2017 18:11:44 +0000
(19:11 +0100)
* commit '
bf58545aace7d14522ce4fa680c7b3ff62109a3a
':
audiodsp: fix vector_clipf documentation
Merged-by: Clément Bœsch <u@pkh.me>
libavcodec/audiodsp.h
patch
|
blob
|
history
diff --git
a/libavcodec/audiodsp.h
b/libavcodec/audiodsp.h
index
b55bf85
..
003a1d0
100644
(file)
--- 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 */);