#define EXTERNAL_SSE(flags)
void(* vector_fmac_scalar)(float *dst, const float *src, float mul, int len)
Multiply a vector of floats by a scalar float and add to destination vector.
#define EXTERNAL_SSE2(flags)
void(* vector_fmul)(float *dst, const float *src0, const float *src1, int len)
Calculate the product of two vectors of floats and store the result in a vector of floats...
void(* vector_dmul_scalar)(double *dst, const double *src, double mul, int len)
Multiply a vector of double by a scalar double.
void(* vector_fmul_scalar)(float *dst, const float *src, float mul, int len)
Multiply a vector of floats by a scalar float.
void ff_vector_fmac_scalar_avx(float *dst, const float *src, float mul, int len)
void ff_vector_dmul_scalar_sse2(double *dst, const double *src, double mul, int len)
void ff_vector_dmul_scalar_avx(double *dst, const double *src, double mul, int len)
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
void ff_vector_fmul_sse(float *dst, const float *src0, const float *src1, int len)
void ff_vector_fmac_scalar_sse(float *dst, const float *src, float mul, int len)
void ff_vector_fmul_scalar_sse(float *dst, const float *src, float mul, int len)
void ff_float_dsp_init_x86(AVFloatDSPContext *fdsp)
void ff_vector_fmul_avx(float *dst, const float *src0, const float *src1, int len)
#define EXTERNAL_AVX(flags)