[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:25:18 CEST 2010
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Sun May 30 12:52:49 2010 +0200| [71a9a90ceacd66856978d06bb3f494cfa031b5db] | committer: Rémi Duraffort
LuaHttp: Fix #3628 (update the sout mrl).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=71a9a90ceacd66856978d06bb3f494cfa031b5db
---
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