[x264-devel] Cosmetics: Fix indentation for multiline function prototypes

Anton Mitrofanov git at videolan.org
Tue Aug 7 00:05:35 CEST 2018


x264 | branch: master | Anton Mitrofanov <BugMaster at narod.ru> | Mon Jul  2 20:20:03 2018 +0300| [bc136ec6a0f863c42686a3bc9fa4c7820f83d413] | committer: Henrik Gramner

Cosmetics: Fix indentation for multiline function prototypes

It was broken in "Drop the x264 prefix" patch.

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=bc136ec6a0f863c42686a3bc9fa4c7820f83d413
---

 common/set.c        | 2 +-
 encoder/cabac.c     | 2 +-
 encoder/slicetype.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/set.c b/common/set.c
index b664e98a..1a74efb1 100644
--- a/common/set.c
+++ b/common/set.c
@@ -301,7 +301,7 @@ void x264_cqm_delete( x264_t *h )
 }
 
 static int cqm_parse_jmlist( x264_t *h, const char *buf, const char *name,
-                                  uint8_t *cqm, const uint8_t *jvt, int length )
+                             uint8_t *cqm, const uint8_t *jvt, int length )
 {
     int i;
 
diff --git a/encoder/cabac.c b/encoder/cabac.c
index 6500174b..379c92e6 100644
--- a/encoder/cabac.c
+++ b/encoder/cabac.c
@@ -33,7 +33,7 @@
 #endif
 
 static inline void cabac_mb_type_intra( x264_t *h, x264_cabac_t *cb, int i_mb_type,
-                    int ctx0, int ctx1, int ctx2, int ctx3, int ctx4, int ctx5 )
+                                        int ctx0, int ctx1, int ctx2, int ctx3, int ctx4, int ctx5 )
 {
     if( i_mb_type == I_4x4 || i_mb_type == I_8x8 )
     {
diff --git a/encoder/slicetype.c b/encoder/slicetype.c
index 8215eb75..8c3ef3ba 100644
--- a/encoder/slicetype.c
+++ b/encoder/slicetype.c
@@ -33,7 +33,7 @@
 static const uint8_t delta_tfi_divisor[10] = { 0, 2, 1, 1, 2, 2, 3, 3, 4, 6 };
 
 static int slicetype_frame_cost( x264_t *h, x264_mb_analysis_t *a,
-                                      x264_frame_t **frames, int p0, int p1, int b );
+                                 x264_frame_t **frames, int p0, int p1, int b );
 
 #define x264_weights_analyse x264_template(weights_analyse)
 void x264_weights_analyse( x264_t *h, x264_frame_t *fenc, x264_frame_t *ref, int b_lookahead );



More information about the x264-devel mailing list