Commit a041f7ee authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

input/input.c: Misformatted if statement fix. Could someone check if that's...

input/input.c: Misformatted if statement fix. Could someone check if that's really the wanted behaviour though. 
parent d9cb27ec
......@@ -2192,10 +2192,11 @@ static int InputSourceInit( input_thread_t *p_input,
if( !psz_access ||
(strncmp( psz_access, "udp", 3 ) &&
strncmp( psz_access, "rtp", 3 )) )
{
/* Find optional titles and seekpoints */
MRLSections( p_input, psz_path, &in->i_title_start, &in->i_title_end,
&in->i_seekpoint_start, &in->i_seekpoint_end );
}
if( psz_forced_demux && *psz_forced_demux )
{
......
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