Commit 97be5672 authored by Marian Durkovic's avatar Marian Durkovic

make deinterlace and zoom work together

parent 4ba8f356
......@@ -166,6 +166,11 @@ struct vout_sys_t
*****************************************************************************/
static int Control( vout_thread_t *p_vout, int i_query, va_list args )
{
if( i_query == VOUT_SET_ZOOM )
{
p_vout->p_sys->p_vout->i_window_width = p_vout->i_window_width;
p_vout->p_sys->p_vout->i_window_height = p_vout->i_window_height;
}
return vout_vaControl( p_vout->p_sys->p_vout, i_query, args );
}
......
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