From feb75e4148220664fc3c38766390083b19077904 Mon Sep 17 00:00:00 2001 From: Marvin Scholz Date: Sun, 19 Aug 2018 02:50:42 +0200 Subject: [PATCH] macosx: Fix argument order when constructing stream chain --- 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]];