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
b2f093c8
Commit
b2f093c8
authored
Aug 23, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
live555: check for error
parent
4e84bd2c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
modules/access/live555.cpp
modules/access/live555.cpp
+8
-7
No files found.
modules/access/live555.cpp
View file @
b2f093c8
...
...
@@ -335,13 +335,14 @@ static int Open ( vlc_object_t *p_this )
if
(
strcasecmp
(
p_demux
->
psz_access
,
"satip"
)
==
0
)
{
asprintf
(
&
p_sys
->
p_sdp
,
"v=0
\r\n
"
if
(
asprintf
(
&
p_sys
->
p_sdp
,
"v=0
\r\n
"
"o=- 0 %s
\r\n
"
"s=SATIP:stream
\r\n
"
"i=SATIP RTP Stream
\r\n
"
"m=video 0 RTP/AVP 33
\r\n
"
"a=control:rtsp://%s
\r\n\r\n
"
,
p_sys
->
url
.
psz_host
,
p_sys
->
psz_path
);
p_sys
->
url
.
psz_host
,
p_sys
->
psz_path
)
<
0
)
abort
();
}
if
(
p_demux
->
s
!=
NULL
)
...
...
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