From: Sebastien Escudier Date: Mon, 16 Jun 2008 09:17:45 +0000 (+0200) Subject: Live555 demux: fix EOF detection X-Git-Tag: 0.9.0-test1~229 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=260c3894961c8a0ccb62cdaf11f07fa54155a514;p=vlc Live555 demux: fix EOF detection Signed-off-by: RĂ©mi Denis-Courmont --- diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp index faf92e196b..0b3860dafc 100644 --- a/modules/demux/live555.cpp +++ b/modules/demux/live555.cpp @@ -1220,7 +1220,7 @@ static int Demux( demux_t *p_demux ) msg_Err( p_demux, "no data received in 10s, aborting" ); return 0; } - else if( !p_sys->b_multicast && p_sys->b_no_data && p_sys->i_no_data_ti > 34 ) + else if( !p_sys->b_multicast && p_sys->i_no_data_ti > 34 ) { /* EOF ? */ msg_Warn( p_demux, "no data received in 10s, eof ?" );