[vlc-devel] commit: Remove no-op combination. ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat Apr 25 22:43:18 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Apr 25 23:39:26 2009 +0300| [0da2caa373b4a5ce63d5589487969a6b10e65e8c] | committer: Rémi Denis-Courmont
Remove no-op combination.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0da2caa373b4a5ce63d5589487969a6b10e65e8c
---
modules/video_output/x11/xcommon.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/modules/video_output/x11/xcommon.c b/modules/video_output/x11/xcommon.c
index bf05bf3..ea973d8 100644
--- a/modules/video_output/x11/xcommon.c
+++ b/modules/video_output/x11/xcommon.c
@@ -1501,12 +1501,11 @@ static int ManageVideo( vout_thread_t *p_vout )
{
unsigned int i_width, i_height, i_x, i_y;
- p_vout->i_changes &= ~VOUT_SIZE_CHANGE;
-
#ifdef MODULE_NAME_IS_x11
/* We need to signal the vout thread about the size change because it
* is doing the rescaling */
- p_vout->i_changes |= VOUT_SIZE_CHANGE;
+#else
+ p_vout->i_changes &= ~VOUT_SIZE_CHANGE;
#endif
vout_PlacePicture( p_vout, p_vout->p_sys->p_win->i_width,
More information about the vlc-devel
mailing list