Commit 1da96fec authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

DVB subtitles are really ephemer.

parent eeb4bbe5
......@@ -1461,10 +1461,10 @@ static subpicture_t *render( decoder_t *p_dec )
/* Set the pf_render callback */
p_spu->i_start = p_sys->i_pts;
p_spu->i_stop = (i_timeout == 0) ? (mtime_t) 0
: p_spu->i_start + (mtime_t) (i_timeout * 1000000);
p_spu->b_ephemer = (i_timeout == 0) ? VLC_TRUE : VLC_FALSE;
p_spu->b_fade = VLC_TRUE;
p_spu->i_stop = (mtime_t) 0;
p_spu->b_ephemer = VLC_TRUE;
p_spu->b_pausable = VLC_TRUE;
//p_spu->b_fade = VLC_TRUE;
#ifdef DEBUG_DVBSUB
msg_Dbg( p_dec, "rendering start time "I64Fd" stop time "I64Fd" timeout %d",
......
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