Commit ddcb92f0 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

RAM: deactivate start-time in rtsp streams

Our seeking of rm over real-rtsp doesn't work.
Closes #4701 (work-around, in fact)
parent 4e318891
......@@ -287,7 +287,8 @@ static int Demux( demux_t *p_demux )
psz_author = decode_URI_duplicate(psz_value);
EnsureUTF8( psz_author );
}
else if( !strcmp( psz_param, "start" ) )
else if( !strcmp( psz_param, "start" )
&& strncmp( psz_mrl, "rtsp", 4 ) /* Our rtsp-real or our real demuxer is wrong */ )
{
i_start = ParseTime( psz_value, strlen( psz_value ) );
char *temp;
......
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