2012-05-21 16:58:41 +00:00
|
|
|
/*
|
2012-06-08 21:02:54 +00:00
|
|
|
* This file is part of FFmpeg.
|
2012-05-21 16:58:41 +00:00
|
|
|
*
|
2012-06-08 21:02:54 +00:00
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2012-05-21 16:58:41 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2012-06-08 21:02:54 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2012-05-21 16:58:41 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-06-08 21:02:54 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2012-05-21 16:58:41 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "libavutil/cpu.h"
|
|
|
|
#include "libavutil/float_dsp.h"
|
2012-08-29 17:01:05 +00:00
|
|
|
#include "cpu.h"
|
2012-05-21 16:58:41 +00:00
|
|
|
|
|
|
|
extern void ff_vector_fmul_sse(float *dst, const float *src0, const float *src1,
|
|
|
|
int len);
|
|
|
|
extern void ff_vector_fmul_avx(float *dst, const float *src0, const float *src1,
|
|
|
|
int len);
|
|
|
|
|
2012-06-09 03:20:59 +00:00
|
|
|
extern void ff_vector_fmac_scalar_sse(float *dst, const float *src, float mul,
|
|
|
|
int len);
|
|
|
|
extern void ff_vector_fmac_scalar_avx(float *dst, const float *src, float mul,
|
|
|
|
int len);
|
|
|
|
|
2012-05-21 16:58:41 +00:00
|
|
|
void ff_float_dsp_init_x86(AVFloatDSPContext *fdsp)
|
|
|
|
{
|
|
|
|
int mm_flags = av_get_cpu_flags();
|
|
|
|
|
2012-08-29 17:01:05 +00:00
|
|
|
if (EXTERNAL_SSE(mm_flags)) {
|
2012-05-21 16:58:41 +00:00
|
|
|
fdsp->vector_fmul = ff_vector_fmul_sse;
|
2012-06-09 03:20:59 +00:00
|
|
|
fdsp->vector_fmac_scalar = ff_vector_fmac_scalar_sse;
|
2012-05-21 16:58:41 +00:00
|
|
|
}
|
2012-08-29 17:01:05 +00:00
|
|
|
if (EXTERNAL_AVX(mm_flags)) {
|
2012-05-21 16:58:41 +00:00
|
|
|
fdsp->vector_fmul = ff_vector_fmul_avx;
|
2012-06-09 03:20:59 +00:00
|
|
|
fdsp->vector_fmac_scalar = ff_vector_fmac_scalar_avx;
|
2012-05-21 16:58:41 +00:00
|
|
|
}
|
|
|
|
}
|