FFmpeg
|
Go to the source code of this file.
Data Structures | |
struct | LLSModel |
Linear least squares model. More... | |
Macros | |
#define | MAX_VARS 32 |
#define | MAX_VARS_ALIGN FFALIGN(MAX_VARS+1,4) |
Functions | |
void | avpriv_init_lls (LLSModel *m, int indep_count) |
void | ff_init_lls_riscv (LLSModel *m) |
void | ff_init_lls_x86 (LLSModel *m) |
void | avpriv_solve_lls (LLSModel *m, double threshold, unsigned short min_order) |
void avpriv_init_lls | ( | LLSModel * | m, |
int | indep_count | ||
) |
Definition at line 109 of file lls.c.
Referenced by checkasm_check_lls(), ff_lpc_calc_coefs(), and main().
void ff_init_lls_riscv | ( | LLSModel * | m | ) |
Definition at line 45 of file lls_init.c.
Referenced by avpriv_init_lls().
void ff_init_lls_x86 | ( | LLSModel * | m | ) |
Definition at line 32 of file lls_init.c.
Referenced by avpriv_init_lls().