Commit 51abde8f authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

Fix DVB Subtitling positioning.

parent a560082d
......@@ -301,12 +301,12 @@ static int Open( vlc_object_t *p_this )
i_posy = val.i_int;
/* Check if subpicture position was overridden */
p_sys->b_absolute = VLC_TRUE;
p_sys->b_absolute = VLC_FALSE;
p_sys->i_spu_x = p_sys->i_spu_y = 0;
if( i_posx >= 0 && i_posy >= 0 )
{
p_sys->b_absolute = VLC_FALSE;
p_sys->b_absolute = VLC_TRUE;
p_sys->i_spu_x = i_posx;
p_sys->i_spu_y = i_posy;
}
......
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