Commit d966d7bf authored by Laurent Aimar's avatar Laurent Aimar

Do not show hidden lines in subrip subtitle.

parent 039dbffd
...@@ -892,7 +892,8 @@ static int ParseSubRipSubViewer( demux_t *p_demux, subtitle_t *p_subtitle, ...@@ -892,7 +892,8 @@ static int ParseSubRipSubViewer( demux_t *p_demux, subtitle_t *p_subtitle,
(int64_t)m2 * 60*1000 + (int64_t)m2 * 60*1000 +
(int64_t)s2 * 1000 + (int64_t)s2 * 1000 +
(int64_t)d2 ) * 1000; (int64_t)d2 ) * 1000;
break; if( p_subtitle->i_start < p_subtitle->i_stop )
break;
} }
} }
......
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