Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
68f5f49e
Commit
68f5f49e
authored
Aug 30, 2011
by
Sebastien Zwickert
Committed by
Jean-Baptiste Kempf
Oct 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlckit: fixes sout chain issue in stream output.
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
14626943
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
projects/macosx/framework/Sources/VLCStreamOutput.m
projects/macosx/framework/Sources/VLCStreamOutput.m
+10
-2
No files found.
projects/macosx/framework/Sources/VLCStreamOutput.m
View file @
68f5f49e
...
...
@@ -190,7 +190,11 @@
if
(
destination
)
[
subOptions
addObject
:[
NSString
stringWithFormat
:
@"dst=
\"
%@
\"
"
,
[
destination
stringByReplacingOccurrencesOfString
:
@"
\"
"
withString
:
@"
\\\"
"
]]];
if
(
url
)
[
subOptions
addObject
:[
NSString
stringWithFormat
:
@"url=
\"
%@
\"
"
,
[
url
stringByReplacingOccurrencesOfString
:
@"
\"
"
withString
:
@"
\\\"
"
]]];
if
(
access
)
[
subOptions
addObject
:[
NSString
stringWithFormat
:
@"access=%@"
,
access
]];
[
optionsAsArray
addObject
:[
NSString
stringWithFormat
:
@"#std{%@}"
,
[
subOptions
componentsJoinedByString
:
@","
]]];
NSString
*
std
=
[
NSString
stringWithFormat
:
@"std{%@}"
,
[
subOptions
componentsJoinedByString
:
@","
]];
if
(
!
transcodingOptions
)
std
=
[
NSString
stringWithFormat
:
@"#%@"
,
std
];
[
optionsAsArray
addObject
:
std
];
[
subOptions
removeAllObjects
];
}
...
...
@@ -207,7 +211,11 @@
if
(
sdp
)
[
subOptions
addObject
:[
NSString
stringWithFormat
:
@"sdp=%@"
,
sdp
]];
if
(
sap
)
[
subOptions
addObject
:
@"sap"
];
if
(
name
)
[
subOptions
addObject
:[
NSString
stringWithFormat
:
@"name=
\"
%@
\"
"
,
name
]];
[
optionsAsArray
addObject
:[
NSString
stringWithFormat
:
@"#rtp{%@}"
,
[
subOptions
componentsJoinedByString
:
@","
]]];
NSString
*
rtp
=
[
NSString
stringWithFormat
:
@"#rtp{%@}"
,
[
subOptions
componentsJoinedByString
:
@","
]];
if
(
!
transcodingOptions
)
rtp
=
[
NSString
stringWithFormat
:
@"#%@"
,
rtp
];
[
optionsAsArray
addObject
:
rtp
];
[
subOptions
removeAllObjects
];
}
representedOptions
=
[
optionsAsArray
componentsJoinedByString
:
@":"
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment