Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
aballier 08/10/15 16:41:16
Added: embeddedvideo.patch
Log:
Backport a change from upstream to reenable the qt embedded video output due to numerous requests and jb's explanations. Bug #240714.
(Portage version: 2.2_rc12/cvs/Linux 2.6.26.6 x86_64)
Revision Changes Path
1.1 media-video/vlc/files/embeddedvideo.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/files/embeddedvideo.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/vlc/files/embeddedvideo.patch?rev=1.1&content-type=text/plain
Index: embeddedvideo.patch
===================================================================
Re-enable the embedded video; Patch ported from this commit:
commit 9c26b8e2a04468aa4b4a158f072d760a991932db
Author: Rémi Denis-Courmont <rdenis@...>
Date: Thu Oct 9 23:06:21 2008 +0300
Enable embedded video with Qt >= 4.3 - hopefully fixes #2136
Index: vlc-0.9.4/modules/gui/qt4/qt4.cpp
===================================================================
--- vlc-0.9.4.orig/modules/gui/qt4/qt4.cpp
+++ vlc-0.9.4/modules/gui/qt4/qt4.cpp
@@ -213,7 +213,7 @@ vlc_module_begin();
set_callbacks( OpenDialogs, Close );
-#ifdef WIN32
+#if !defined (Q_WS_X11) || HAS_QT43
add_submodule();
set_capability( "vout window", 50 );
set_callbacks( WindowOpen, WindowClose );
|
|