[vlc-commits] sout: record: pass mux unescaped

Francois Cartegnie git at videolan.org
Mon Jul 22 11:42:36 CEST 2019


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Mon Jul 22 11:15:21 2019 +0200| [90e96ae02f853c52615fdb45dd83ca7e792ca251] | committer: Francois Cartegnie

sout: record: pass mux unescaped

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

 modules/stream_out/record.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/stream_out/record.c b/modules/stream_out/record.c
index 219775ade3..570467bd47 100644
--- a/modules/stream_out/record.c
+++ b/modules/stream_out/record.c
@@ -330,7 +330,7 @@ static int OutputNew( sout_stream_t *p_stream,
 
     if( asprintf( &psz_output,
                   "std{access=file{no-append,no-format,no-overwrite},"
-                  "mux='%s',dst='%s'}", psz_muxer, psz_file ) < 0 )
+                  "mux=%s,dst='%s'}", psz_muxer, psz_file ) < 0 )
     {
         psz_output = NULL;
         goto error;



More information about the vlc-commits mailing list