diff --git a/ChangeLog b/ChangeLog index b20649f86d..b5db9ca75b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-21 David Schleef + + * 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 * ext/gnomevfs/gstgnomevfsuri.c: diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c index 76290b350a..9bf255c687 100644 --- a/sys/xvimage/xvimagesink.c +++ b/sys/xvimage/xvimagesink.c @@ -1382,7 +1382,7 @@ gst_xvimagesink_get_xv_support (GstXvImageSink * xvimagesink, * 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