|
|
|
@ -18,6 +18,8 @@ |
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
#include <stddef.h> |
|
|
|
|
|
|
|
|
|
#include "config.h" |
|
|
|
|
|
|
|
|
|
#include "libavutil/x86/cpu.h" |
|
|
|
@ -30,10 +32,10 @@ void ff_ps_mul_pair_single_sse (float (*dst)[2], float (*src0)[2], |
|
|
|
|
float *src1, int n); |
|
|
|
|
void ff_ps_hybrid_analysis_sse (float (*out)[2], float (*in)[2], |
|
|
|
|
const float (*filter)[8][2], |
|
|
|
|
int stride, int n); |
|
|
|
|
ptrdiff_t stride, int n); |
|
|
|
|
void ff_ps_hybrid_analysis_sse3(float (*out)[2], float (*in)[2], |
|
|
|
|
const float (*filter)[8][2], |
|
|
|
|
int stride, int n); |
|
|
|
|
ptrdiff_t stride, int n); |
|
|
|
|
void ff_ps_stereo_interpolate_sse3(float (*l)[2], float (*r)[2], |
|
|
|
|
float h[2][4], float h_step[2][4], |
|
|
|
|
int len); |
|
|
|
|