summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-01 13:02:57 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-01 13:03:03 +0100
commitfb4b1607561c167b5018641829387447cc8fb51d (patch)
tree144775f4391f51a9ab98ef7cfd954f4acae48719
parent41401773d3c2f745605a2a306968b281fdec34bd (diff)
parent7ac6d2423e9bf0f40c67be9a0ca7600b516b0282 (diff)
downloadffmpeg-streaming-fb4b1607561c167b5018641829387447cc8fb51d.zip
ffmpeg-streaming-fb4b1607561c167b5018641829387447cc8fb51d.tar.gz
Merge commit '7ac6d2423e9bf0f40c67be9a0ca7600b516b0282'
* commit '7ac6d2423e9bf0f40c67be9a0ca7600b516b0282': lls: K&R formatting cosmetics Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavutil/lls.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/lls.h b/libavutil/lls.h
index d168e59..bd02f38 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);
OpenPOWER on IntegriCloud