Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
05fd28dc
Commit
05fd28dc
authored
Jun 28, 2005
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* forwardport of [11522]
parent
8d183679
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/demux/livedotcom.cpp
modules/demux/livedotcom.cpp
+6
-6
No files found.
modules/demux/livedotcom.cpp
View file @
05fd28dc
...
@@ -774,13 +774,13 @@ static int Demux( demux_t *p_demux )
...
@@ -774,13 +774,13 @@ static int Demux( demux_t *p_demux )
return 0;
return 0;
*/
*/
}
}
else
if
(
!
p_sys
->
b_multicast
&&
p_sys
->
b_no_data
&&
p_sys
->
i_no_data_ti
>
3
)
else
if
(
!
p_sys
->
b_multicast
&&
p_sys
->
b_no_data
&&
p_sys
->
i_no_data_ti
>
3
4
)
{
{
vlc_bool_t
b_rtsp_tcp
=
var_GetBool
(
p_demux
,
"rtsp-tcp"
);
vlc_bool_t
b_rtsp_tcp
=
var_GetBool
(
p_demux
,
"rtsp-tcp"
);
if
(
!
b_rtsp_tcp
&&
p_sys
->
rtsp
&&
p_sys
->
ms
)
if
(
!
b_rtsp_tcp
&&
p_sys
->
rtsp
&&
p_sys
->
ms
)
{
{
msg_Warn
(
p_demux
,
"no data received in
900m
s. Switching to TCP"
);
msg_Warn
(
p_demux
,
"no data received in
10
s. Switching to TCP"
);
if
(
RollOverTcp
(
p_demux
)
)
if
(
RollOverTcp
(
p_demux
)
)
{
{
msg_Err
(
p_demux
,
"TCP rollover failed, aborting"
);
msg_Err
(
p_demux
,
"TCP rollover failed, aborting"
);
...
@@ -788,16 +788,16 @@ static int Demux( demux_t *p_demux )
...
@@ -788,16 +788,16 @@ static int Demux( demux_t *p_demux )
}
}
var_SetBool
(
p_demux
,
"rtsp-tcp"
,
VLC_TRUE
);
var_SetBool
(
p_demux
,
"rtsp-tcp"
,
VLC_TRUE
);
}
}
else
if
(
p_sys
->
i_no_data_ti
>
10
)
else
if
(
p_sys
->
i_no_data_ti
>
34
)
{
{
msg_Err
(
p_demux
,
"no data received in
3
s, aborting"
);
msg_Err
(
p_demux
,
"no data received in
10
s, aborting"
);
return
0
;
return
0
;
}
}
}
}
else
if
(
!
p_sys
->
b_multicast
&&
p_sys
->
b_no_data
&&
p_sys
->
i_no_data_ti
>
10
)
else
if
(
!
p_sys
->
b_multicast
&&
p_sys
->
b_no_data
&&
p_sys
->
i_no_data_ti
>
34
)
{
{
/* EOF ? */
/* EOF ? */
msg_Warn
(
p_demux
,
"no data received in
3
s, eof ?"
);
msg_Warn
(
p_demux
,
"no data received in
10
s, eof ?"
);
return
0
;
return
0
;
}
}
...
...
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