Commit 18305c12 authored by Dennis Hamester's avatar Dennis Hamester Committed by Jean-Baptiste Kempf

zvbi: Set stop pts only for subtitle teletext

A maximum display time does not make sense for real teletext pages. Instead
they should be displayed until the user disables teletext or the page is
updated. Therefore do not set a stop timestamp on normal pages, but only when
rendering in text mode, which is meant for subtitles, where the timeout makes
sense.
Signed-off-by: default avatarDennis Hamester <dhamester@jusst.de>
Signed-off-by: default avatarJulian Scheel <julian@jusst.de>
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 8d6db3ac
......@@ -533,7 +533,7 @@ static subpicture_t *Subpicture( decoder_t *p_dec, video_format_t *p_fmt,
p_spu->p_region->i_y = 0;
p_spu->i_start = i_pts;
p_spu->i_stop = i_pts + 10000000;
p_spu->i_stop = b_text ? i_pts + 1000000 : 0;
p_spu->b_ephemer = true;
p_spu->b_absolute = b_text ? false : true;
......
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