# HG changeset patch # User kostya # Date 1254115153 0 # Node ID 86fadefa11433f8f443a8c9e38cb3d22a7c727ba # Parent 370d05e51d90f214c112e7c443f244dce65996ce cosmetics: reindent and reformat function declarations diff -r 370d05e51d90 -r 86fadefa1143 faxcompr.c --- 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; diff -r 370d05e51d90 -r 86fadefa1143 faxcompr.h --- 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 */