Commit df146da7 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: seekpoints: only read chapters with timestamp

parent 63d82736
......@@ -54,7 +54,8 @@ void SeekPoints::update()
if ( !access() ) return;
pointsList.clear();
for ( int i=0; i<p_title->i_seekpoint ; i++ )
pointsList << SeekPoint( p_title->seekpoint[i] );
if ( p_title->seekpoint[i]->i_time_offset > 0 )
pointsList << SeekPoint( p_title->seekpoint[i] );
vlc_input_title_Delete( p_title );
release();
......
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