diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-30 18:37:16 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-08 23:32:56 +0100 |
commit | 83890c66c4db13153f771332f04afeffb1fb6a54 (patch) | |
tree | 50a2d1cc7cf3f7b8157a72e2e0eb0b118099c7dd /libswscale/swscale.h | |
parent | a83f5b8a9670e87fa41ab1db6922773a2978d42f (diff) | |
download | ffmpeg-83890c66c4db13153f771332f04afeffb1fb6a54.tar.gz |
swscale: K&R reformatting cosmetics for header files
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 5cd55a70ba..b5a6a57681 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -132,7 +132,6 @@ const char *swscale_license(void); */ const int *sws_getCoefficients(int colorspace); - // when used for filters they must have an odd number of elements // coeffs cannot be shared between vectors typedef struct { @@ -232,9 +231,9 @@ struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat * the destination image * @return the height of the output slice */ -int sws_scale(struct SwsContext *c, const uint8_t* const srcSlice[], +int sws_scale(struct SwsContext *c, const uint8_t *const srcSlice[], const int srcStride[], int srcSliceY, int srcSliceH, - uint8_t* const dst[], const int dstStride[]); + uint8_t *const dst[], const int dstStride[]); /** * @param inv_table the yuv2rgb coefficients, normally ff_yuv2rgb_coeffs[x] |