2013-06-18 21:30:42 +00:00
|
|
|
/*
|
|
|
|
* linear least squares model
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013 Loren Merritt
|
|
|
|
*
|
2013-06-30 09:30:07 +00:00
|
|
|
* This file is part of FFmpeg.
|
2013-06-18 21:30:42 +00:00
|
|
|
*
|
2013-06-30 09:30:07 +00:00
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2013-06-18 21:30:42 +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.
|
|
|
|
*
|
2013-06-30 09:30:07 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2013-06-18 21:30:42 +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
|
2013-06-30 09:30:07 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2013-06-18 21:30:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2013-11-15 21:35:46 +00:00
|
|
|
#include "libavutil/lls2.h"
|
2013-06-18 21:30:42 +00:00
|
|
|
#include "libavutil/x86/cpu.h"
|
|
|
|
|
2013-11-16 15:42:57 +00:00
|
|
|
void ff_update_lls_sse2(LLSModel2 *m, double *var);
|
|
|
|
void ff_update_lls_avx(LLSModel2 *m, double *var);
|
|
|
|
double ff_evaluate_lls_sse2(LLSModel2 *m, double *var, int order);
|
2013-06-18 21:30:42 +00:00
|
|
|
|
2013-11-16 15:42:57 +00:00
|
|
|
av_cold void ff_init_lls_x86(LLSModel2 *m)
|
2013-06-18 21:30:42 +00:00
|
|
|
{
|
|
|
|
int cpu_flags = av_get_cpu_flags();
|
|
|
|
if (EXTERNAL_SSE2(cpu_flags)) {
|
|
|
|
m->update_lls = ff_update_lls_sse2;
|
2013-07-01 00:27:47 +00:00
|
|
|
if (m->indep_count >= 4)
|
2013-06-18 21:30:43 +00:00
|
|
|
m->evaluate_lls = ff_evaluate_lls_sse2;
|
2013-06-18 21:30:42 +00:00
|
|
|
}
|
2013-07-02 09:58:08 +00:00
|
|
|
if (EXTERNAL_AVX(cpu_flags)) {
|
2013-06-18 21:30:42 +00:00
|
|
|
m->update_lls = ff_update_lls_avx;
|
|
|
|
}
|
|
|
|
}
|