git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
df0229a
)
lls: K&R formatting cosmetics
author
Luca Barbato
<lu_zero@gentoo.org>
Mon, 25 Feb 2013 06:59:51 +0000
(07:59 +0100)
committer
Luca Barbato
<lu_zero@gentoo.org>
Thu, 28 Feb 2013 16:39:24 +0000
(17:39 +0100)
libavutil/lls.h
patch
|
blob
|
history
diff --git
a/libavutil/lls.h
b/libavutil/lls.h
index
3db391b
..
5c51b74
100644
(file)
--- 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);