Module: libav Branch: master Commit: d0dce15da34c0e4eee6c683be299de0221db00d3
Author: Carl Eugen Hoyos <[email protected]> Committer: Vittorio Giovara <[email protected]> Date: Mon May 11 20:11:03 2015 +0100 quickdraw: Make the palette opaque Additional overflow fix by Michael Niedermayer <[email protected]>. Signed-off-by: Vittorio Giovara <[email protected]> --- libavcodec/qdrw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/qdrw.c b/libavcodec/qdrw.c index 1eb2a76..f7a4377 100644 --- a/libavcodec/qdrw.c +++ b/libavcodec/qdrw.c @@ -61,7 +61,7 @@ static int parse_palette(AVCodecContext *avctx, GetByteContext *gbc, bytestream2_skip(gbc, 1); b = bytestream2_get_byte(gbc); bytestream2_skip(gbc, 1); - pal[idx] = (r << 16) | (g << 8) | b; + pal[idx] = (0xFFU << 24) | (r << 16) | (g << 8) | b; } return 0; } _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
