From 559603dae1f67b851cea52cbfc0525bf8fa6b8c2 Mon Sep 17 00:00:00 2001 From: Nicolas George Date: Sun, 25 Oct 2015 11:27:15 +0100 Subject: lavfi/drawutils: add const to blending mask. --- libavfilter/drawutils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/drawutils.h') diff --git a/libavfilter/drawutils.h b/libavfilter/drawutils.h index 5ffffe77c1..e247dd6440 100644 --- a/libavfilter/drawutils.h +++ b/libavfilter/drawutils.h @@ -130,7 +130,7 @@ void ff_blend_rectangle(FFDrawContext *draw, FFDrawColor *color, */ void ff_blend_mask(FFDrawContext *draw, FFDrawColor *color, uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h, - uint8_t *mask, int mask_linesize, int mask_w, int mask_h, + const uint8_t *mask, int mask_linesize, int mask_w, int mask_h, int l2depth, unsigned endianness, int x0, int y0); /** -- cgit v1.2.1