Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-01 16:02:57 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-03-01 16:03:03 +0400
commitfb4b1607561c167b5018641829387447cc8fb51d (patch)
tree144775f4391f51a9ab98ef7cfd954f4acae48719 /libavutil/lls.h
parent41401773d3c2f745605a2a306968b281fdec34bd (diff)
parent7ac6d2423e9bf0f40c67be9a0ca7600b516b0282 (diff)
Merge commit '7ac6d2423e9bf0f40c67be9a0ca7600b516b0282'
* commit '7ac6d2423e9bf0f40c67be9a0ca7600b516b0282': lls: K&R formatting cosmetics Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 d168e59749..bd02f3872f 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);