|
|
@ -24,9 +24,13 @@ |
|
|
|
#include "config.h" |
|
|
|
#include "config.h" |
|
|
|
|
|
|
|
|
|
|
|
void ff_tak_decorrelate_ls_sse2(const int32_t *p1, int32_t *p2, int length); |
|
|
|
void ff_tak_decorrelate_ls_sse2(const int32_t *p1, int32_t *p2, int length); |
|
|
|
|
|
|
|
void ff_tak_decorrelate_ls_avx2(const int32_t *p1, int32_t *p2, int length); |
|
|
|
void ff_tak_decorrelate_sr_sse2(int32_t *p1, const int32_t *p2, int length); |
|
|
|
void ff_tak_decorrelate_sr_sse2(int32_t *p1, const int32_t *p2, int length); |
|
|
|
|
|
|
|
void ff_tak_decorrelate_sr_avx2(int32_t *p1, const int32_t *p2, int length); |
|
|
|
void ff_tak_decorrelate_sm_sse2(int32_t *p1, int32_t *p2, int length); |
|
|
|
void ff_tak_decorrelate_sm_sse2(int32_t *p1, int32_t *p2, int length); |
|
|
|
|
|
|
|
void ff_tak_decorrelate_sm_avx2(int32_t *p1, int32_t *p2, int length); |
|
|
|
void ff_tak_decorrelate_sf_sse4(int32_t *p1, const int32_t *p2, int length, int dshift, int dfactor); |
|
|
|
void ff_tak_decorrelate_sf_sse4(int32_t *p1, const int32_t *p2, int length, int dshift, int dfactor); |
|
|
|
|
|
|
|
void ff_tak_decorrelate_sf_avx2(int32_t *p1, const int32_t *p2, int length, int dshift, int dfactor); |
|
|
|
|
|
|
|
|
|
|
|
av_cold void ff_takdsp_init_x86(TAKDSPContext *c) |
|
|
|
av_cold void ff_takdsp_init_x86(TAKDSPContext *c) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -42,5 +46,12 @@ av_cold void ff_takdsp_init_x86(TAKDSPContext *c) |
|
|
|
if (EXTERNAL_SSE4(cpu_flags)) { |
|
|
|
if (EXTERNAL_SSE4(cpu_flags)) { |
|
|
|
c->decorrelate_sf = ff_tak_decorrelate_sf_sse4; |
|
|
|
c->decorrelate_sf = ff_tak_decorrelate_sf_sse4; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (EXTERNAL_AVX2_FAST(cpu_flags)) { |
|
|
|
|
|
|
|
c->decorrelate_ls = ff_tak_decorrelate_ls_avx2; |
|
|
|
|
|
|
|
c->decorrelate_sr = ff_tak_decorrelate_sr_avx2; |
|
|
|
|
|
|
|
c->decorrelate_sm = ff_tak_decorrelate_sm_avx2; |
|
|
|
|
|
|
|
c->decorrelate_sf = ff_tak_decorrelate_sf_avx2; |
|
|
|
|
|
|
|
} |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
} |
|
|
|
} |
|
|
|