Linear least squares model. 
 
av_cold void ff_init_lls_x86(LLSModel *m)
 
static atomic_int cpu_flags
 
void ff_update_lls_avx(LLSModel *m, const double *var)
 
#define EXTERNAL_AVX_FAST(flags)
 
#define EXTERNAL_SSE2(flags)
 
void ff_update_lls_fma3(LLSModel *m, const double *var)
 
double(* evaluate_lls)(struct LLSModel *m, const double *var, int order)
Inner product of var[] and the LPC coefs. 
 
#define EXTERNAL_FMA3_FAST(flags)
 
void ff_update_lls_sse2(LLSModel *m, const double *var)
 
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU. 
 
double ff_evaluate_lls_sse2(LLSModel *m, const double *var, int order)
 
void(* update_lls)(struct LLSModel *m, const double *var)
Take the outer-product of var[] with itself, and add to the covariance matrix.