From 260c3894961c8a0ccb62cdaf11f07fa54155a514 Mon Sep 17 00:00:00 2001 From: Sebastien Escudier Date: Mon, 16 Jun 2008 11:17:45 +0200 Subject: [PATCH] Live555 demux: fix EOF detection MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémi Denis-Courmont --- modules/demux/live555.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ?" ); -- 2.39.2