summaryrefslogtreecommitdiff
path: root/libavfilter/drawutils.h
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2015-10-25 11:27:15 +0100
committerNicolas George <george@nsup.org>2015-10-25 20:58:21 +0100
commit559603dae1f67b851cea52cbfc0525bf8fa6b8c2 (patch)
tree47a0a6076015c9680e21c17bac21a441f141442e /libavfilter/drawutils.h
parentbbd6bc6bd0889627a3bd70e14005664e06d466bc (diff)
lavfi/drawutils: add const to blending mask.
Diffstat (limited to 'libavfilter/drawutils.h')
-rw-r--r--libavfilter/drawutils.h2
1 files changed, 1 insertions, 1 deletions
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);
/**