[vlc-commits] macosx: Fix argument order when constructing stream chain
Marvin Scholz
git at videolan.org
Sun Aug 19 02:51:07 CEST 2018
vlc | branch: master | Marvin Scholz <epirat07 at 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]];
More information about the vlc-commits
mailing list