FFmpeg
|
#include <audiodsp.h>
Data Fields | |
int32_t(* | scalarproduct_int16 )(const int16_t *v1, const int16_t *v2, int len) |
Calculate scalar product of two vectors. More... | |
void(* | vector_clip_int32 )(int32_t *dst, const int32_t *src, int32_t min, int32_t max, unsigned int len) |
Clip each element in an array of int32_t to a given minimum and maximum value. More... | |
void(* | vector_clipf )(float *dst, const float *src, int len, float min, float max) |
Definition at line 24 of file audiodsp.h.
Calculate scalar product of two vectors.
len | length of vectors, should be multiple of 16 |
Definition at line 29 of file audiodsp.h.
Referenced by checkasm_check_audiodsp(), ff_acelp_decode_gain_code(), ff_irms(), get_tilt_comp(), and long_term_filter().
void(* AudioDSPContext::vector_clip_int32) (int32_t *dst, const int32_t *src, int32_t min, int32_t max, unsigned int len) |
Clip each element in an array of int32_t to a given minimum and maximum value.
dst | destination array constraints: 16-byte aligned |
src | source array constraints: 16-byte aligned |
min | minimum value constraints: must be in the range [-(1 << 24), 1 << 24] |
max | maximum value constraints: must be in the range [-(1 << 24), 1 << 24] |
len | number of elements in the array constraints: multiple of 32 greater than zero |
Definition at line 46 of file audiodsp.h.
Referenced by checkasm_check_audiodsp(), and clip_coefficients().
Definition at line 49 of file audiodsp.h.
Referenced by checkasm_check_audiodsp(), and clip_coefficients().