Commit d279ea85 authored by Olivier Aubert's avatar Olivier Aubert

Removed call to input_Tell (which is deprecated)

parent 9db201cc
......@@ -344,16 +344,6 @@ static mtime_t snapshot_GetMovietime( vout_thread_t *p_vout )
i_result = val.i_time;
if( i_result <= 0 )
{
/* Either we are at the start, or (more probably) the demuxer
does not support the DEMUX_GET_TIME call. Try to fallback to
another method. */
stream_position_t pos;
input_Tell( p_input, &pos );
i_result = pos.i_mux_rate * 50 * pos.i_tell;
}
return( i_result / 1000 );
}
......
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