vlc | branch: master | Marvin Scholz <epira...@gmail.com> | Sun Aug 19 02:50:42 
2018 +0200| [feb75e4148220664fc3c38766390083b19077904] | committer: Marvin 
Scholz

macosx: Fix argument order when constructing stream chain

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

 modules/gui/macosx/VLCConvertAndSaveWindowController.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/gui/macosx/VLCConvertAndSaveWindowController.m 
b/modules/gui/macosx/VLCConvertAndSaveWindowController.m
index 91bda74f16..f663075179 100644
--- a/modules/gui/macosx/VLCConvertAndSaveWindowController.m
+++ b/modules/gui/macosx/VLCConvertAndSaveWindowController.m
@@ -973,7 +973,7 @@
         else if ([[[_streamTypePopup selectedItem] title] 
isEqualToString:@"MMSH"])
             [composedOptions 
appendFormat:@":standard{mux=asfh,dst=%@,port=%@,access=mmsh", 
_outputDestination, [_streamPortField stringValue]];
         else
-            [composedOptions 
appendFormat:@":standard{mux=%@,dst=%@,port=%@,access=http", 
[self.currentProfile firstObject], [_streamPortField stringValue], 
_outputDestination];
+            [composedOptions 
appendFormat:@":standard{mux=%@,dst=%@,port=%@,access=http", 
[self.currentProfile firstObject], _outputDestination, [_streamPortField 
stringValue]];
 
         if ([_streamSAPCheckbox state])
             [composedOptions appendFormat:@",sap,name=\"%@\"", 
[_streamChannelField stringValue]];

_______________________________________________
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to