|
|
|
@@ -25,6 +25,7 @@ |
|
|
|
#include "libavcodec/sbrdsp.h" |
|
|
|
|
|
|
|
float ff_sbr_sum_square_sse(float (*x)[2], int n); |
|
|
|
void ff_sbr_sum64x5_sse(float *z); |
|
|
|
void ff_sbr_hf_g_filt_sse(float (*Y)[2], const float (*X_high)[40][2], |
|
|
|
const float *g_filt, int m_max, intptr_t ixh); |
|
|
|
void ff_sbr_hf_gen_sse(float (*X_high)[2], const float (*X_low)[2], |
|
|
|
@@ -37,6 +38,7 @@ void ff_sbrdsp_init_x86(SBRDSPContext *s) |
|
|
|
|
|
|
|
if (EXTERNAL_SSE(mm_flags)) { |
|
|
|
s->sum_square = ff_sbr_sum_square_sse; |
|
|
|
s->sum64x5 = ff_sbr_sum64x5_sse; |
|
|
|
s->hf_g_filt = ff_sbr_hf_g_filt_sse; |
|
|
|
s->hf_gen = ff_sbr_hf_gen_sse; |
|
|
|
} |
|
|
|
|