[vlc-devel] commit: Enable XCB X11 output ( Rémi Denis-Courmont )

git version control git at videolan.org
Sun Aug 16 21:37:37 CEST 2009


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Aug 16 22:29:36 2009 +0300| [517484af8d4a71d8bf62e63a176f7633304a2b8b] | committer: Rémi Denis-Courmont 

Enable XCB X11 output

Known issue: mouse hiding is not implemented (yet)

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

 modules/video_output/wrapper.c |    2 +-
 modules/video_output/xcb/x11.c |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/video_output/wrapper.c b/modules/video_output/wrapper.c
index 8cb8c7e..0dddd91 100644
--- a/modules/video_output/wrapper.c
+++ b/modules/video_output/wrapper.c
@@ -73,7 +73,7 @@ vlc_module_begin()
     DECLARE_MODULE(sdl, 60)
 
     add_submodule()
-    DECLARE_MODULE(xcb, 0)
+    DECLARE_MODULE(xcb, 75)
 
     add_submodule()
     DECLARE_MODULE(xcb_xv, 0)
diff --git a/modules/video_output/xcb/x11.c b/modules/video_output/xcb/x11.c
index 58b7d74..c9b4078 100644
--- a/modules/video_output/xcb/x11.c
+++ b/modules/video_output/xcb/x11.c
@@ -53,11 +53,11 @@ static void Close (vlc_object_t *);
  * Module descriptor
  */
 vlc_module_begin ()
-    set_shortname (N_("XCB"))
-    set_description (N_("(Experimental) XCB video output"))
+    set_shortname (N_("X11"))
+    set_description (N_("X11 video output (XCB)"))
     set_category (CAT_VIDEO)
     set_subcategory (SUBCAT_VIDEO_VOUT)
-    set_capability ("vout display", 0)
+    set_capability ("vout display", 75)
     set_callbacks (Open, Close)
 
     add_string ("x11-display", NULL, NULL,




More information about the vlc-devel mailing list