From d2cdf20147d1bfde627b5548a659470172d03dbd Mon Sep 17 00:00:00 2001
From: Kostya Shishkov <kostya.shishkov@gmail.com>
Date: Mon, 28 Sep 2009 05:19:13 +0000
Subject: [PATCH] cosmetics: reindent and reformat function declarations

Originally committed as revision 20066 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/faxcompr.c | 5 +++--
 libavcodec/faxcompr.h | 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/libavcodec/faxcompr.c b/libavcodec/faxcompr.c
index fb2ae1612fa..3b7d8e61c74 100644
--- a/libavcodec/faxcompr.c
+++ b/libavcodec/faxcompr.c
@@ -268,8 +268,9 @@ static int find_group3_syncmarker(GetBitContext *gb, int srcsize)
 }
 
 int ff_ccitt_unpack(AVCodecContext *avctx,
-                       const uint8_t *src, int srcsize,
-                       uint8_t *dst, int height, int stride, enum TiffCompr compr, int opts)
+                    const uint8_t *src, int srcsize,
+                    uint8_t *dst, int height, int stride,
+                    enum TiffCompr compr, int opts)
 {
     int j;
     GetBitContext gb;
diff --git a/libavcodec/faxcompr.h b/libavcodec/faxcompr.h
index 2f7926c05b9..04b23c31665 100644
--- a/libavcodec/faxcompr.h
+++ b/libavcodec/faxcompr.h
@@ -39,7 +39,8 @@ void ff_ccitt_unpack_init(void);
  * unpack data compressed with CCITT Group 3 1/2-D or Group 4 method
  */
 int ff_ccitt_unpack(AVCodecContext *avctx,
-                       const uint8_t *src, int srcsize,
-                       uint8_t *dst, int height, int stride, enum TiffCompr compr, int opts);
+                    const uint8_t *src, int srcsize,
+                    uint8_t *dst, int height, int stride,
+                    enum TiffCompr compr, int opts);
 
 #endif /* AVCODEC_FAXCOMPR_H */
-- 
GitLab