changeset 10305:86fadefa1143 libavcodec

cosmetics: reindent and reformat function declarations
author kostya
date Mon, 28 Sep 2009 05:19:13 +0000
parents 370d05e51d90
children c97a6cabee62
files faxcompr.c faxcompr.h
diffstat 2 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/faxcompr.c	Mon Sep 28 05:17:20 2009 +0000
+++ b/faxcompr.c	Mon Sep 28 05:19:13 2009 +0000
@@ -268,8 +268,9 @@
 }
 
 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;
--- a/faxcompr.h	Mon Sep 28 05:17:20 2009 +0000
+++ b/faxcompr.h	Mon Sep 28 05:19:13 2009 +0000
@@ -39,7 +39,8 @@
  * 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 */