FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions
lls1.h File Reference
#include "version.h"

Go to the source code of this file.

Data Structures

struct  LLSModel
 Linear least squares model. More...
 

Macros

#define MAX_VARS   32
 

Functions

void avpriv_init_lls (LLSModel *m, int indep_count)
 
void avpriv_update_lls (LLSModel *m, double *param, double decay)
 
void avpriv_solve_lls (LLSModel *m, double threshold, unsigned short min_order)
 
double avpriv_evaluate_lls (LLSModel *m, double *param, int 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)
 

Macro Definition Documentation

#define MAX_VARS   32

Definition at line 28 of file lls1.h.

Referenced by avpriv_solve_lls().

Function Documentation

void avpriv_init_lls ( LLSModel m,
int  indep_count 
)

Definition at line 37 of file lls1.c.

Referenced by av_init_lls().

void avpriv_update_lls ( LLSModel m,
double *  param,
double  decay 
)

Definition at line 43 of file lls1.c.

Referenced by av_update_lls().

void avpriv_solve_lls ( LLSModel m,
double  threshold,
unsigned short  min_order 
)

Definition at line 55 of file lls1.c.

Referenced by av_solve_lls().

double avpriv_evaluate_lls ( LLSModel m,
double *  param,
int  order 
)

Definition at line 112 of file lls1.c.

Referenced by av_evaluate_lls().

void av_init_lls ( LLSModel m,
int  indep_count 
)

Definition at line 124 of file lls1.c.

void av_update_lls ( LLSModel m,
double *  param,
double  decay 
)

Definition at line 128 of file lls1.c.

void av_solve_lls ( LLSModel m,
double  threshold,
int  min_order 
)

Definition at line 132 of file lls1.c.

double av_evaluate_lls ( LLSModel m,
double *  param,
int  order 
)

Definition at line 136 of file lls1.c.