Commit 5d9873ec authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'd0dce15d'

* commit 'd0dce15d':
  quickdraw: Make the palette opaque

Conflicts:
	libavcodec/qdrw.c

See: 9f9a1f42Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents cb7c4f73 d0dce15d
......@@ -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] = 0xFFU << 24 | r << 16 | g << 8 | b;
pal[idx] = (0xFFU << 24) | (r << 16) | (g << 8) | b;
}
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment