vlc | branch: master | Alexandre Janniaux <[email protected]> | Tue Oct 27 10:09:19 2020 +0100| [a56e857e0367e5eff7ac9cda8f1d64b715ca5e3b] | committer: Alexandre Janniaux
libvlc-module: fix sout-keep longtext The longtext help is implying that --sout-keep will automatically add the gather stream output filter which is not accurate. It has never been the case as seen in original commit adding this: 4b7cff4d248bea925e6bb19157f6a65aed3f3788. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a56e857e0367e5eff7ac9cda8f1d64b715ca5e3b --- src/libvlc-module.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libvlc-module.c b/src/libvlc-module.c index aea70ed995..4ce09adfa7 100644 --- a/src/libvlc-module.c +++ b/src/libvlc-module.c @@ -1014,8 +1014,7 @@ static const char *const ppsz_prefres[] = { #define SOUT_KEEP_TEXT N_("Keep stream output open" ) #define SOUT_KEEP_LONGTEXT N_( \ "This allows you to keep an unique stream output instance across " \ - "multiple playlist item (automatically insert the gather stream output " \ - "if not specified)" ) + "multiple playlist item." ) #define SOUT_MUX_CACHING_TEXT N_("Stream output muxer caching (ms)") #define SOUT_MUX_CACHING_LONGTEXT N_( \ _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
