# HG changeset patch # User conrad # Date 1264067531 0 # Node ID 39bf760bf7ce70551f1fe1c04b267e6888fdfce6 # Parent 4f25e4d519f4d1872a80935655fa8c532da3307c More const-correctness for sws_scale diff -r 4f25e4d519f4 -r 39bf760bf7ce libswscale/swscale.c --- a/libswscale/swscale.c Wed Jan 20 03:26:12 2010 +0000 +++ b/libswscale/swscale.c Thu Jan 21 09:52:11 2010 +0000 @@ -2927,8 +2927,8 @@ * swscale wrapper, so we don't need to export the SwsContext. * Assumes planar YUV to be in YUV order instead of YVU. */ -int sws_scale(SwsContext *c, const uint8_t* const src[], int srcStride[], int srcSliceY, - int srcSliceH, uint8_t* dst[], int dstStride[]) +int sws_scale(SwsContext *c, const uint8_t* const src[], const int srcStride[], int srcSliceY, + int srcSliceH, uint8_t* const dst[], const int dstStride[]) { int i; const uint8_t* src2[4]= {src[0], src[1], src[2], src[3]}; diff -r 4f25e4d519f4 -r 39bf760bf7ce libswscale/swscale.h --- a/libswscale/swscale.h Wed Jan 20 03:26:12 2010 +0000 +++ b/libswscale/swscale.h Thu Jan 21 09:52:11 2010 +0000 @@ -30,7 +30,7 @@ #include "libavutil/avutil.h" #define LIBSWSCALE_VERSION_MAJOR 0 -#define LIBSWSCALE_VERSION_MINOR 8 +#define LIBSWSCALE_VERSION_MINOR 9 #define LIBSWSCALE_VERSION_MICRO 0 #define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \ @@ -184,8 +184,8 @@ * the destination image * @return the height of the output slice */ -int sws_scale(struct SwsContext *context, const uint8_t* const srcSlice[], int srcStride[], - int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]); +int sws_scale(struct SwsContext *context, const uint8_t* const srcSlice[], const int srcStride[], + int srcSliceY, int srcSliceH, uint8_t* const dst[], const int dstStride[]); #if LIBSWSCALE_VERSION_MAJOR < 1 /** * @deprecated Use sws_scale() instead.