OSDN Git Service

cosmetics: reindent and reformat function declarations
authorKostya Shishkov <kostya.shishkov@gmail.com>
Mon, 28 Sep 2009 05:19:13 +0000 (05:19 +0000)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Mon, 28 Sep 2009 05:19:13 +0000 (05:19 +0000)
Originally committed as revision 20066 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/faxcompr.c
libavcodec/faxcompr.h

index fb2ae16..3b7d8e6 100644 (file)
@@ -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;
index 2f7926c..04b23c3 100644 (file)
@@ -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 */