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
8da3bb94
Commit
8da3bb94
authored
Feb 16, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Less checks on muxer type.
parent
c730890f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/access_output/udp.c
modules/access_output/udp.c
+4
-3
No files found.
modules/access_output/udp.c
View file @
8da3bb94
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* udp.c
* udp.c
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* Copyright (C) 2001, 2002 VideoLAN
* $Id: udp.c,v 1.
2 2003/01/23 15:52:04 sam
Exp $
* $Id: udp.c,v 1.
3 2003/02/16 14:03:56 fenrir
Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
* Eric Petit <titer@videolan.org>
...
@@ -129,8 +129,9 @@ static int Open( vlc_object_t *p_this )
...
@@ -129,8 +129,9 @@ static int Open( vlc_object_t *p_this )
if
(
p_sout
->
psz_access
!=
NULL
&&
if
(
p_sout
->
psz_access
!=
NULL
&&
!
strcmp
(
p_sout
->
psz_access
,
"rtp"
)
)
!
strcmp
(
p_sout
->
psz_access
,
"rtp"
)
)
{
{
if
(
p_sout
->
psz_mux
!=
NULL
&&
if
(
p_sout
->
psz_mux
!=
NULL
&&
*
p_sout
->
psz_mux
&&
strcmp
(
p_sout
->
psz_mux
,
"ts"
)
)
strcmp
(
p_sout
->
psz_mux
,
"ts"
)
&&
strcmp
(
p_sout
->
psz_mux
,
"ts_dvbpsi"
))
{
{
msg_Err
(
p_sout
,
"rtp ouput work only with ts payload"
);
msg_Err
(
p_sout
,
"rtp ouput work only with ts payload"
);
free
(
p_access
);
free
(
p_access
);
...
...
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