2009-09-16 00:14:14 +03:00
|
|
|
/*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2009-09-16 00:14:14 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2009-09-16 00:14:14 +03: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.
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2009-09-16 00:14:14 +03: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
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2009-09-16 00:14:14 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2013-08-04 14:24:15 +03:00
|
|
|
#include "config.h"
|
2016-01-30 18:11:41 +02:00
|
|
|
|
2013-08-04 14:24:15 +03:00
|
|
|
#include "libavutil/attributes.h"
|
2010-09-08 18:07:14 +03:00
|
|
|
#include "libavutil/cpu.h"
|
2012-08-29 20:01:05 +03:00
|
|
|
#include "libavutil/x86/cpu.h"
|
2016-01-30 18:11:41 +02:00
|
|
|
|
2009-09-16 00:14:14 +03:00
|
|
|
#include "fft.h"
|
|
|
|
|
2012-10-05 20:54:10 +03:00
|
|
|
av_cold void ff_fft_init_x86(FFTContext *s)
|
2009-09-16 00:14:14 +03:00
|
|
|
{
|
2013-07-17 21:19:24 +03:00
|
|
|
int cpu_flags = av_get_cpu_flags();
|
|
|
|
|
2012-08-01 06:23:39 +03:00
|
|
|
#if ARCH_X86_32
|
2013-07-17 21:19:24 +03:00
|
|
|
if (EXTERNAL_AMD3DNOW(cpu_flags)) {
|
2012-05-27 20:43:56 +03:00
|
|
|
s->fft_calc = ff_fft_calc_3dnow;
|
2012-05-12 09:59:00 +03:00
|
|
|
}
|
2016-01-30 18:11:41 +02:00
|
|
|
|
2013-07-17 21:19:24 +03:00
|
|
|
if (EXTERNAL_AMD3DNOWEXT(cpu_flags)) {
|
2012-08-01 16:31:43 +03:00
|
|
|
s->fft_calc = ff_fft_calc_3dnowext;
|
2012-05-12 09:59:00 +03:00
|
|
|
}
|
2016-01-30 18:11:41 +02:00
|
|
|
#endif /* ARCH_X86_32 */
|
|
|
|
|
2013-07-17 21:19:24 +03:00
|
|
|
if (EXTERNAL_SSE(cpu_flags)) {
|
2009-09-16 00:14:14 +03:00
|
|
|
s->fft_permute = ff_fft_permute_sse;
|
|
|
|
s->fft_calc = ff_fft_calc_sse;
|
2011-02-12 13:48:16 +02:00
|
|
|
s->fft_permutation = FF_FFT_PERM_SWAP_LSBS;
|
2012-05-12 09:59:00 +03:00
|
|
|
}
|
2016-01-30 18:11:41 +02:00
|
|
|
|
2015-05-26 19:29:08 +02:00
|
|
|
if (EXTERNAL_AVX_FAST(cpu_flags) && s->nbits >= 5) {
|
2012-05-12 09:59:00 +03:00
|
|
|
s->fft_calc = ff_fft_calc_avx;
|
|
|
|
s->fft_permutation = FF_FFT_PERM_AVX;
|
2009-09-16 00:14:14 +03:00
|
|
|
}
|
|
|
|
}
|