summaryrefslogtreecommitdiff
path: root/libavutil/lls.h
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-02-25 07:59:51 +0100
committerLuca Barbato <lu_zero@gentoo.org>2013-02-28 17:39:24 +0100
commit7ac6d2423e9bf0f40c67be9a0ca7600b516b0282 (patch)
treeb3c9be9ee7a6b67ff71b1719aa2564bd95f35047 /libavutil/lls.h
parentdf0229a7caa124dcfb84c34b48d316744c467311 (diff)
lls: K&R formatting cosmetics
Diffstat (limited to 'libavutil/lls.h')
-rw-r--r--libavutil/lls.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/lls.h b/libavutil/lls.h
index 3db391bb93..5c51b7446f 100644
--- a/libavutil/lls.h
+++ b/libavutil/lls.h
@@ -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);