Commit 90f6433d authored by Clément Bœsch's avatar Clément Bœsch

Merge commit 'bf58545a'

* commit 'bf58545a':
  audiodsp: fix vector_clipf documentation
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents 84147554 bf58545a
......@@ -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 */);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment