diff libswscale/swscale.h @ 30332:b4c3e12c9a08

Make const prototypes for input sources of sws_scale_* stricter. Patch by Alexis Ballier gmailify($firstname, $familyname)
author benoit
date Tue, 19 Jan 2010 16:30:20 +0000
parents 1032ff2e83f1
children 39bf760bf7ce
line wrap: on
line diff
--- a/libswscale/swscale.h	Tue Jan 19 15:42:51 2010 +0000
+++ b/libswscale/swscale.h	Tue Jan 19 16:30:20 2010 +0000
@@ -184,13 +184,13 @@
  *                  the destination image
  * @return          the height of the output slice
  */
-int sws_scale(struct SwsContext *context, const uint8_t* srcSlice[], int srcStride[],
+int sws_scale(struct SwsContext *context, const uint8_t* const srcSlice[], int srcStride[],
               int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]);
 #if LIBSWSCALE_VERSION_MAJOR < 1
 /**
  * @deprecated Use sws_scale() instead.
  */
-int sws_scale_ordered(struct SwsContext *context, const uint8_t* src[],
+int sws_scale_ordered(struct SwsContext *context, const uint8_t* const src[],
                       int srcStride[], int srcSliceY, int srcSliceH,
                       uint8_t* dst[], int dstStride[]) attribute_deprecated;
 #endif