[vlc-commits] commit: LuaHttp: Fix #3628 (update the sout mrl). ( Rémi Duraffort )
git at videolan.org
git at videolan.org
Sun May 30 17:54:02 CEST 2010
vlc/vlc-1.1 | branch: master | Rémi Duraffort <ivoire at videolan.org> | Sun May 30 12:52:49 2010 +0200| [6364e14fc71d3489248b46080fbca474e54ff48c] | committer: Rémi Duraffort
LuaHttp: Fix #3628 (update the sout mrl).
(cherry picked from commit 71a9a90ceacd66856978d06bb3f494cfa031b5db)
Signed-off-by: Rémi Duraffort <ivoire at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=6364e14fc71d3489248b46080fbca474e54ff48c
---
share/lua/http/js/functions.js | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/share/lua/http/js/functions.js b/share/lua/http/js/functions.js
index 56b6481..d965e06 100644
--- a/share/lua/http/js/functions.js
+++ b/share/lua/http/js/functions.js
@@ -1035,8 +1035,8 @@ function update_sout()
if( ( transcode || output ) && checked( 'sout_all' ) )
input_options.push( ":sout-all" );
- /*var mrl = document.getElementById( 'sout_mrl' );
- mrl.value = input_options.join( " " )*/
+ var mrl = document.getElementById( 'sout_mrl' );
+ mrl.value = option;
refresh_input_options_list();
}
More information about the vlc-commits
mailing list