Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
21859e42
Commit
21859e42
authored
Sep 11, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix segfault
parent
fe63f4c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/stream_output/sdp.c
src/stream_output/sdp.c
+2
-2
No files found.
src/stream_output/sdp.c
View file @
21859e42
...
@@ -232,10 +232,10 @@ char *sdp_AddMedia (char **sdp,
...
@@ -232,10 +232,10 @@ char *sdp_AddMedia (char **sdp,
/* RTP payload type map */
/* RTP payload type map */
if
(
rtpmap
!=
NULL
)
if
(
rtpmap
!=
NULL
)
sdp_AddAttribute
(
"rtpmap"
,
"%u %s"
,
pt
,
rtpmap
);
sdp_AddAttribute
(
sdp
,
"rtpmap"
,
"%u %s"
,
pt
,
rtpmap
);
/* Format parameters */
/* Format parameters */
if
(
fmtp
!=
NULL
)
if
(
fmtp
!=
NULL
)
sdp_AddAttribute
(
"fmtp"
,
"%u %s"
,
pt
,
fmtp
);
sdp_AddAttribute
(
sdp
,
"fmtp"
,
"%u %s"
,
pt
,
fmtp
);
return
newsdp
;
return
newsdp
;
}
}
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