Skip to content

Commit 76b1810

Browse files
admlckmstorsjo
authored andcommitted
libswscale/arm/swscale_unscaled: Fix function prototype
Constify dstStrice argument of rgbx_to_nv12_neon_16_wrapper to be compatible with other functions as used in function assignment. Signed-off-by: Adam Lackorzynski <[email protected]> Signed-off-by: Martin Storsjö <[email protected]>
1 parent 0245e93 commit 76b1810

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libswscale/arm/swscale_unscaled.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static int rgbx_to_nv12_neon_32_wrapper(SwsInternal *context, const uint8_t *con
5050

5151
static int rgbx_to_nv12_neon_16_wrapper(SwsInternal *context, const uint8_t *const src[],
5252
const int srcStride[], int srcSliceY, int srcSliceH,
53-
uint8_t *const dst[], int dstStride[]) {
53+
uint8_t *const dst[], const int dstStride[]) {
5454

5555
rgbx_to_nv12_neon_16(src[0] + srcSliceY * srcStride[0],
5656
dst[0] + srcSliceY * dstStride[0],

0 commit comments

Comments
 (0)