|
|
@ -53,6 +53,8 @@ void ff_vector_fmul_reverse_avx(float *dst, const float *src0, |
|
|
|
|
|
|
|
|
|
|
|
float ff_scalarproduct_float_sse(const float *v1, const float *v2, int order); |
|
|
|
float ff_scalarproduct_float_sse(const float *v1, const float *v2, int order); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ff_butterflies_float_sse(float *src0, float *src1, int len); |
|
|
|
|
|
|
|
|
|
|
|
#if HAVE_6REGS && HAVE_INLINE_ASM |
|
|
|
#if HAVE_6REGS && HAVE_INLINE_ASM |
|
|
|
static void vector_fmul_window_3dnowext(float *dst, const float *src0, |
|
|
|
static void vector_fmul_window_3dnowext(float *dst, const float *src0, |
|
|
|
const float *src1, const float *win, |
|
|
|
const float *src1, const float *win, |
|
|
@ -138,6 +140,7 @@ void ff_float_dsp_init_x86(AVFloatDSPContext *fdsp) |
|
|
|
fdsp->vector_fmul_add = ff_vector_fmul_add_sse; |
|
|
|
fdsp->vector_fmul_add = ff_vector_fmul_add_sse; |
|
|
|
fdsp->vector_fmul_reverse = ff_vector_fmul_reverse_sse; |
|
|
|
fdsp->vector_fmul_reverse = ff_vector_fmul_reverse_sse; |
|
|
|
fdsp->scalarproduct_float = ff_scalarproduct_float_sse; |
|
|
|
fdsp->scalarproduct_float = ff_scalarproduct_float_sse; |
|
|
|
|
|
|
|
fdsp->butterflies_float = ff_butterflies_float_sse; |
|
|
|
} |
|
|
|
} |
|
|
|
if (EXTERNAL_SSE2(mm_flags)) { |
|
|
|
if (EXTERNAL_SSE2(mm_flags)) { |
|
|
|
fdsp->vector_dmul_scalar = ff_vector_dmul_scalar_sse2; |
|
|
|
fdsp->vector_dmul_scalar = ff_vector_dmul_scalar_sse2; |
|
|
|