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_x86 (LLSModel *m) |
void | avpriv_solve_lls (LLSModel *m, double threshold, unsigned short min_order) |
void | av_init_lls (LLSModel *m, int indep_count) |
void | av_update_lls (LLSModel *m, double *param, double decay) |
void | av_solve_lls (LLSModel *m, double threshold, int min_order) |
double | av_evaluate_lls (LLSModel *m, double *param, int order) |
Definition at line 31 of file lls.h.
Referenced by avpriv_solve_lls().
Definition at line 114 of file lls.c.
Referenced by av_init_lls(), and ff_lpc_calc_coefs().
Definition at line 30 of file lls_init.c.
Referenced by avpriv_init_lls().
Definition at line 46 of file lls.c.
Referenced by av_solve_lls(), and ff_lpc_calc_coefs().