Original commit message from CVS:
* sys/xvimage/xvimagesink.c:
Fix typo that causes the overlay keying color to bright green
on a 16-bit display. Dark grey good. Bright green bad.
+2008-04-21 David Schleef <ds@schleef.org>
+
+ * sys/xvimage/xvimagesink.c:
+ Fix typo that causes the overlay keying color to bright green
+ on a 16-bit display. Dark grey good. Bright green bad.
+
2008-04-21 Stefan Kost <ensonic@users.sf.net>
* ext/gnomevfs/gstgnomevfsuri.c:
* they're the only types of devices we've encountered. If we don't
* recognise it, leave it alone */
if (bits == 16)
- ckey = (1 << 10) | (2 << 5) | 3;
+ ckey = (1 << 11) | (2 << 5) | 3;
else if (bits == 24 || bits == 32)
ckey = (1 << 16) | (2 << 8) | 3;
else