whitespace cosmetics: Break some overly long lines.

Originally committed as revision 29180 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Diego Biurrun 2009-04-14 14:39:04 +00:00
parent 39e5f87b1a
commit d648c720af

View File

@ -127,8 +127,10 @@ void sws_freeContext(struct SwsContext *swsContext);
* @param flags specify which algorithm and options to use for rescaling * @param flags specify which algorithm and options to use for rescaling
* @return a pointer to an allocated context, or NULL in case of error * @return a pointer to an allocated context, or NULL in case of error
*/ */
struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat, int dstW, int dstH, enum PixelFormat dstFormat, int flags, struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat,
SwsFilter *srcFilter, SwsFilter *dstFilter, double *param); int dstW, int dstH, enum PixelFormat dstFormat,
int flags, SwsFilter *srcFilter,
SwsFilter *dstFilter, double *param);
/** /**
* Scales the image slice in \p srcSlice and puts the resulting scaled * Scales the image slice in \p srcSlice and puts the resulting scaled
@ -152,19 +154,24 @@ struct SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat
* the destination image * the destination image
* @return the height of the output slice * @return the height of the output slice
*/ */
int sws_scale(struct SwsContext *context, uint8_t* srcSlice[], int srcStride[], int srcSliceY, int sws_scale(struct SwsContext *context, uint8_t* srcSlice[], int srcStride[],
int srcSliceH, uint8_t* dst[], int dstStride[]); int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]);
#if LIBSWSCALE_VERSION_MAJOR < 1 #if LIBSWSCALE_VERSION_MAJOR < 1
/** /**
* @deprecated Use sws_scale() instead. * @deprecated Use sws_scale() instead.
*/ */
int sws_scale_ordered(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY, int sws_scale_ordered(struct SwsContext *context, uint8_t* src[],
int srcSliceH, uint8_t* dst[], int dstStride[]) attribute_deprecated; int srcStride[], int srcSliceY, int srcSliceH,
uint8_t* dst[], int dstStride[]) attribute_deprecated;
#endif #endif
int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, int contrast, int saturation); int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4],
int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation); int srcRange, const int table[4], int dstRange,
int brightness, int contrast, int saturation);
int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table,
int *srcRange, int **table, int *dstRange,
int *brightness, int *contrast, int *saturation);
/** /**
* Returns a normalized Gaussian curve used to filter stuff * Returns a normalized Gaussian curve used to filter stuff
@ -241,7 +248,8 @@ void sws_freeFilter(SwsFilter *filter);
*/ */
struct SwsContext *sws_getCachedContext(struct SwsContext *context, struct SwsContext *sws_getCachedContext(struct SwsContext *context,
int srcW, int srcH, enum PixelFormat srcFormat, int srcW, int srcH, enum PixelFormat srcFormat,
int dstW, int dstH, enum PixelFormat dstFormat, int flags, int dstW, int dstH, enum PixelFormat dstFormat,
SwsFilter *srcFilter, SwsFilter *dstFilter, double *param); int flags, SwsFilter *srcFilter,
SwsFilter *dstFilter, double *param);
#endif /* SWSCALE_SWSCALE_H */ #endif /* SWSCALE_SWSCALE_H */