Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
db8bc2b4
Commit
db8bc2b4
authored
Feb 20, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplifications.
parent
1dd4f850
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
16 deletions
+2
-16
modules/demux/playlist/sgimb.c
modules/demux/playlist/sgimb.c
+2
-16
No files found.
modules/demux/playlist/sgimb.c
View file @
db8bc2b4
...
...
@@ -398,23 +398,9 @@ static int Demux ( demux_t *p_demux )
}
}
if
(
!
p_sys
->
psz_mcast_ip
)
{
char
*
psz_option
;
if
(
asprintf
(
&
psz_option
,
"rtsp-caching=5000"
)
!=
-
1
)
{
input_item_AddOption
(
p_child
,
psz_option
,
VLC_INPUT_OPTION_TRUSTED
);
free
(
psz_option
);
}
}
input_item_AddOption
(
p_child
,
"rtsp-caching=5000"
,
VLC_INPUT_OPTION_TRUSTED
);
if
(
!
p_sys
->
psz_mcast_ip
&&
p_sys
->
b_rtsp_kasenna
)
{
char
*
psz_option
;
if
(
asprintf
(
&
psz_option
,
"rtsp-kasenna"
)
!=
-
1
)
{
input_item_AddOption
(
p_child
,
psz_option
,
VLC_INPUT_OPTION_TRUSTED
);
free
(
psz_option
);
}
}
input_item_AddOption
(
p_child
,
"rtsp-kasenna"
,
VLC_INPUT_OPTION_TRUSTED
);
input_item_AddSubItem
(
p_current_input
,
p_child
);
vlc_gc_decref
(
p_child
);
...
...
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