[vlc-commits] Turn on XVideo color key automatic painting (fix #4643)

Rémi Denis-Courmont git at videolan.org
Fri Oct 7 22:21:39 CEST 2011


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Oct  7 20:47:26 2011 +0300| [136b09ae7215ae28098c91c76b04486c5498c5b1] | committer: Rémi Denis-Courmont

Turn on XVideo color key automatic painting (fix #4643)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=136b09ae7215ae28098c91c76b04486c5498c5b1
---

 modules/video_output/xcb/xvideo.c |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/modules/video_output/xcb/xvideo.c b/modules/video_output/xcb/xvideo.c
index b69ecbd..f732a46 100644
--- a/modules/video_output/xcb/xvideo.c
+++ b/modules/video_output/xcb/xvideo.c
@@ -513,7 +513,7 @@ static int Open (vlc_object_t *obj)
         msg_Err (vd, "no available XVideo adaptor");
         goto error;
     }
-    else
+    /* Compute video (window) placement within the parent window */
     {
         xcb_map_window (conn, p_sys->window);
 
@@ -539,6 +539,15 @@ static int Open (vlc_object_t *obj)
     xcb_create_gc (conn, p_sys->gc, p_sys->window, 0, NULL);
     msg_Dbg (vd, "using X11 graphic context 0x%08"PRIx32, p_sys->gc);
 
+    /* Disable color keying if applicable */
+    {
+        xcb_intern_atom_reply_t *r =
+            xcb_intern_atom_reply (conn,
+                xcb_intern_atom (conn, 1, 21, "XV_AUTOPAINT_COLORKEY"), NULL);
+        if (r != NULL && r->atom != 0)
+            xcb_xv_set_port_attribute(conn, p_sys->port, r->atom, 1);
+    }
+
     /* Create cursor */
     p_sys->cursor = CreateBlankCursor (conn, screen);
 



More information about the vlc-commits mailing list