vlc/vlc-2.1 | branch: master | Rémi Denis-Courmont <[email protected]> | Fri Jan 24 07:07:55 2014 +0200| [88394fd0b8a75b34cf760b43106309f887e73c00] | committer: Rémi Denis-Courmont
record: fix sout-access-file syntax (fixes #10473) (cherry picked from commit af24f1e83c9aed71f2104b7698e34399539f4f27) > http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=88394fd0b8a75b34cf760b43106309f887e73c00 --- modules/stream_out/record.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/stream_out/record.c b/modules/stream_out/record.c index ac3963f..78b7f12 100644 --- a/modules/stream_out/record.c +++ b/modules/stream_out/record.c @@ -330,8 +330,8 @@ static int OutputNew( sout_stream_t *p_stream, } free( psz_tmp ); - if( asprintf( &psz_output, "std{access=file,mux='%s',dst='%s',no-append," - "no-format}", psz_muxer, psz_file ) < 0 ) + if( asprintf( &psz_output, "std{access=file{no-append,no-format}," + "mux='%s',dst='%s'}", psz_muxer, psz_file ) < 0 ) { psz_output = NULL; goto error; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
