Skip to content
Snippets Groups Projects
Commit 70fa3d8b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

tta: handle seek error

parent cb4a5be2
No related branches found
No related tags found
No related merge requests found
......@@ -256,7 +256,8 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
{
tmp += p_sys->pi_seektable[i];
}
vlc_stream_Seek( p_demux->s, tmp+p_sys->i_start );
if( vlc_stream_Seek( p_demux->s, tmp+p_sys->i_start ) )
return VLC_EGENERIC;
p_sys->i_currentframe = i;
return VLC_SUCCESS;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment