Commit 0da2caa3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove no-op combination.

parent e64d892c
...@@ -1501,12 +1501,11 @@ static int ManageVideo( vout_thread_t *p_vout ) ...@@ -1501,12 +1501,11 @@ static int ManageVideo( vout_thread_t *p_vout )
{ {
unsigned int i_width, i_height, i_x, i_y; unsigned int i_width, i_height, i_x, i_y;
p_vout->i_changes &= ~VOUT_SIZE_CHANGE;
#ifdef MODULE_NAME_IS_x11 #ifdef MODULE_NAME_IS_x11
/* We need to signal the vout thread about the size change because it /* We need to signal the vout thread about the size change because it
* is doing the rescaling */ * is doing the rescaling */
p_vout->i_changes |= VOUT_SIZE_CHANGE; #else
p_vout->i_changes &= ~VOUT_SIZE_CHANGE;
#endif #endif
vout_PlacePicture( p_vout, p_vout->p_sys->p_win->i_width, vout_PlacePicture( p_vout, p_vout->p_sys->p_win->i_width,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment