diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-01 13:02:57 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-01 13:03:03 +0100 |
commit | fb4b1607561c167b5018641829387447cc8fb51d (patch) | |
tree | 144775f4391f51a9ab98ef7cfd954f4acae48719 /libavutil | |
parent | 41401773d3c2f745605a2a306968b281fdec34bd (diff) | |
parent | 7ac6d2423e9bf0f40c67be9a0ca7600b516b0282 (diff) | |
download | ffmpeg-fb4b1607561c167b5018641829387447cc8fb51d.tar.gz |
Merge commit '7ac6d2423e9bf0f40c67be9a0ca7600b516b0282'
* commit '7ac6d2423e9bf0f40c67be9a0ca7600b516b0282':
lls: K&R formatting cosmetics
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/lls.h | 6 |
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); |