Skip to content
Snippets Groups Projects
Commit 3dd65c56 authored by yhuelf's avatar yhuelf Committed by Rémi Denis-Courmont
Browse files

src/input/stream_demux.c: fix DStreamThread()


Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 8dd70b01
No related branches found
No related tags found
No related merge requests found
......@@ -337,7 +337,7 @@ static void* DStreamThread( void *obj )
newpos = 0.;
if( demux_Control( p_demux, DEMUX_GET_LENGTH, &newlen ) )
newlen = 0;
if( demux_Control( p_demux, DEMUX_GET_POSITION, &newtime ) )
if( demux_Control( p_demux, DEMUX_GET_TIME, &newtime ) )
newtime = 0;
vlc_mutex_lock( &p_sys->lock );
......
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