|
@@ -175,7 +175,7 @@
|
|
if( audioBitrate ) [subOptions addObject:[NSString stringWithFormat:@"ab=%@", audioBitrate]];
|
|
if( audioBitrate ) [subOptions addObject:[NSString stringWithFormat:@"ab=%@", audioBitrate]];
|
|
if( channels ) [subOptions addObject:[NSString stringWithFormat:@"channels=%@", channels]];
|
|
if( channels ) [subOptions addObject:[NSString stringWithFormat:@"channels=%@", channels]];
|
|
if( audioSync ) [subOptions addObject:[NSString stringWithFormat:@"audioSync", width]];
|
|
if( audioSync ) [subOptions addObject:[NSString stringWithFormat:@"audioSync", width]];
|
|
- [optionsAsArray addObject: [NSString stringWithFormat:@"transcode{%@}", [subOptions componentsJoinedByString:@","]]];
|
|
|
|
|
|
+ [optionsAsArray addObject: [NSString stringWithFormat:@"#transcode{%@}", [subOptions componentsJoinedByString:@","]]];
|
|
[subOptions removeAllObjects];
|
|
[subOptions removeAllObjects];
|
|
}
|
|
}
|
|
|
|
|
|
@@ -190,7 +190,7 @@
|
|
if( destination ) [subOptions addObject:[NSString stringWithFormat:@"dst=\"%@\"", [destination stringByReplacingOccurrencesOfString:@"\"" withString:@"\\\""]]];
|
|
if( destination ) [subOptions addObject:[NSString stringWithFormat:@"dst=\"%@\"", [destination stringByReplacingOccurrencesOfString:@"\"" withString:@"\\\""]]];
|
|
if( url ) [subOptions addObject:[NSString stringWithFormat:@"url=\"%@\"", [url stringByReplacingOccurrencesOfString:@"\"" withString:@"\\\""]]];
|
|
if( url ) [subOptions addObject:[NSString stringWithFormat:@"url=\"%@\"", [url stringByReplacingOccurrencesOfString:@"\"" withString:@"\\\""]]];
|
|
if( access ) [subOptions addObject:[NSString stringWithFormat:@"access=%@", access]];
|
|
if( access ) [subOptions addObject:[NSString stringWithFormat:@"access=%@", access]];
|
|
- [optionsAsArray addObject:[NSString stringWithFormat:@"std{%@}", [subOptions componentsJoinedByString:@","]]];
|
|
|
|
|
|
+ [optionsAsArray addObject:[NSString stringWithFormat:@"#std{%@}", [subOptions componentsJoinedByString:@","]]];
|
|
[subOptions removeAllObjects];
|
|
[subOptions removeAllObjects];
|
|
}
|
|
}
|
|
|
|
|
|
@@ -207,7 +207,7 @@
|
|
if( sdp ) [subOptions addObject:[NSString stringWithFormat:@"sdp=%@", sdp]];
|
|
if( sdp ) [subOptions addObject:[NSString stringWithFormat:@"sdp=%@", sdp]];
|
|
if( sap ) [subOptions addObject:@"sap"];
|
|
if( sap ) [subOptions addObject:@"sap"];
|
|
if( name ) [subOptions addObject:[NSString stringWithFormat:@"name=\"%@\"", name]];
|
|
if( name ) [subOptions addObject:[NSString stringWithFormat:@"name=\"%@\"", name]];
|
|
- [optionsAsArray addObject:[NSString stringWithFormat:@"rtp{%@}", [subOptions componentsJoinedByString:@","]]];
|
|
|
|
|
|
+ [optionsAsArray addObject:[NSString stringWithFormat:@"#rtp{%@}", [subOptions componentsJoinedByString:@","]]];
|
|
[subOptions removeAllObjects];
|
|
[subOptions removeAllObjects];
|
|
}
|
|
}
|
|
representedOptions = [optionsAsArray componentsJoinedByString:@":"];
|
|
representedOptions = [optionsAsArray componentsJoinedByString:@":"];
|