[FFmpeg-cvslog] lls: K&R formatting cosmetics

Luca Barbato git at videolan.org
Fri Mar 1 13:11:12 CET 2013


ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Mon Feb 25 07:59:51 2013 +0100| [7ac6d2423e9bf0f40c67be9a0ca7600b516b0282] | committer: Luca Barbato

lls: K&R formatting cosmetics

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7ac6d2423e9bf0f40c67be9a0ca7600b516b0282
---

 libavutil/lls.h |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavutil/lls.h b/libavutil/lls.h
index 3db391b..5c51b74 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);



More information about the ffmpeg-cvslog mailing list