[vlc-commits] commit: livehttp: add missing , to EXTINF after duration (Ilkka Ollakka )

git at videolan.org git at videolan.org
Sun Sep 19 22:51:20 CEST 2010


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Sun Sep 19 23:36:53 2010 +0300| [b1ed84080be06cf581a97ff9483e9e37874d4c85] | committer: Ilkka Ollakka 

livehttp: add missing , to EXTINF after duration

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

 modules/access_output/livehttp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/access_output/livehttp.c b/modules/access_output/livehttp.c
index 805a6c5..10e3908 100644
--- a/modules/access_output/livehttp.c
+++ b/modules/access_output/livehttp.c
@@ -275,7 +275,7 @@ static int updateIndexAndDel( sout_access_out_t *p_access, sout_access_out_sys_t
                 fclose( fp );
                 return -1;
             }
-            val = fprintf( fp, "#EXTINF:%zu\n%s\n", p_sys->i_seglen, psz_name );
+            val = fprintf( fp, "#EXTINF:%zu,\n%s\n", p_sys->i_seglen, psz_name );
             free( psz_name );
             if ( val < 0 )
             {



More information about the vlc-commits mailing list