[vlc-devel] commit: Live555 demux: fix EOF detection (Sebastien Escudier )

git version control git at videolan.org
Thu Jun 19 18:03:43 CEST 2008


vlc | branch: master | Sebastien Escudier <sebastien-devel at celeos.eu> | Mon Jun 16 11:17:45 2008 +0200| [260c3894961c8a0ccb62cdaf11f07fa54155a514]

Live555 demux: fix EOF detection

Signed-off-by: Rémi Denis-Courmont <rdenis at simphalempin.com>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=260c3894961c8a0ccb62cdaf11f07fa54155a514
---

 modules/demux/live555.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp
index faf92e1..0b3860d 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 ?" );




More information about the vlc-devel mailing list