sys/xvimage/xvimagesink.c: Fix typo that causes the overlay keying color to bright...
authorDavid Schleef <ds@schleef.org>
Tue, 22 Apr 2008 06:13:43 +0000 (06:13 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 22 Apr 2008 06:13:43 +0000 (06:13 +0000)
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.

ChangeLog
sys/xvimage/xvimagesink.c

index b20649f86daa6ac751e855764aafd7ded5af522d..b5db9ca75b22cd3bcb525ce7d445b17b81f83592 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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:
index 76290b350a27f080d657b757882cb1c6ba14f457..9bf255c6870a139148883aea8fe6c0e5a3680955 100644 (file)
@@ -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