Commit 0f3ae54f authored by Laurent Aimar's avatar Laurent Aimar

Fixed TCP rollover.

The timeout parameters were not reinitialized.
parent 607f8a8a
......@@ -1028,7 +1028,13 @@ static int SessionsSetup( demux_t *p_demux )
/* Retrieve the duration if possible */
p_sys->i_npt_length = p_sys->ms->playEndTime();
/* */
msg_Dbg( p_demux, "setup start: %f stop:%f", p_sys->i_npt_start, p_sys->i_npt_length );
/* */
p_sys->b_no_data = true;
p_sys->i_no_data_ti = 0;
return i_return;
}
......
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