mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 19:49:56 +00:00
lls: K&R formatting cosmetics
This commit is contained in:
parent
df0229a7ca
commit
7ac6d2423e
@ -30,12 +30,12 @@
|
||||
/**
|
||||
* Linear least squares model.
|
||||
*/
|
||||
typedef struct LLSModel{
|
||||
double covariance[MAX_VARS+1][MAX_VARS+1];
|
||||
typedef struct LLSModel {
|
||||
double covariance[MAX_VARS + 1][MAX_VARS + 1];
|
||||
double coeff[MAX_VARS][MAX_VARS];
|
||||
double variance[MAX_VARS];
|
||||
int indep_count;
|
||||
}LLSModel;
|
||||
} LLSModel;
|
||||
|
||||
void av_init_lls(LLSModel *m, int indep_count);
|
||||
void av_update_lls(LLSModel *m, double *param, double decay);
|
||||
|
Loading…
Reference in New Issue
Block a user