diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-08-01 23:52:25 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-08-02 12:32:48 +0200 |
commit | 3bcde3f06c6ad397cd3b99c786829db132d26c87 (patch) | |
tree | efc70f94727bd3d96dd24a451f9680ae0a385c84 /libavfilter/drawutils.c | |
parent | 65520f5933b41f779a161c3896c64e63007b6f38 (diff) | |
download | ffmpeg-3bcde3f06c6ad397cd3b99c786829db132d26c87.tar.gz |
lavfi/drawutils: make ff_draw_color() accept a const rgba map
Diffstat (limited to 'libavfilter/drawutils.c')
-rw-r--r-- | libavfilter/drawutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/drawutils.c b/libavfilter/drawutils.c index 83968abf7d..0a6435a299 100644 --- a/libavfilter/drawutils.c +++ b/libavfilter/drawutils.c @@ -173,7 +173,7 @@ int ff_draw_init(FFDrawContext *draw, enum PixelFormat format, unsigned flags) return 0; } -void ff_draw_color(FFDrawContext *draw, FFDrawColor *color, uint8_t rgba[4]) +void ff_draw_color(FFDrawContext *draw, FFDrawColor *color, const uint8_t rgba[4]) { unsigned i; uint8_t rgba_map[4]; |