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
e5030121
Commit
e5030121
authored
Apr 15, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable timeout usage under WIN32 with live555.
It seems to correctly workaround a bug in live555 code.
parent
e35054d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
modules/demux/live555.cpp
modules/demux/live555.cpp
+11
-6
No files found.
modules/demux/live555.cpp
View file @
e5030121
...
@@ -479,7 +479,6 @@ static int Connect( demux_t *p_demux )
...
@@ -479,7 +479,6 @@ static int Connect( demux_t *p_demux )
char
*
p_sdp
=
NULL
;
char
*
p_sdp
=
NULL
;
int
i_http_port
=
0
;
int
i_http_port
=
0
;
int
i_ret
=
VLC_SUCCESS
;
int
i_ret
=
VLC_SUCCESS
;
int
timeout
;
if
(
p_sys
->
url
.
i_port
==
0
)
p_sys
->
url
.
i_port
=
554
;
if
(
p_sys
->
url
.
i_port
==
0
)
p_sys
->
url
.
i_port
=
554
;
if
(
p_sys
->
url
.
psz_username
||
p_sys
->
url
.
psz_password
)
if
(
p_sys
->
url
.
psz_username
||
p_sys
->
url
.
psz_password
)
...
@@ -542,12 +541,16 @@ describe:
...
@@ -542,12 +541,16 @@ describe:
authenticator
.
setUsernameAndPassword
(
(
const
char
*
)
psz_user
,
authenticator
.
setUsernameAndPassword
(
(
const
char
*
)
psz_user
,
(
const
char
*
)
psz_pwd
);
(
const
char
*
)
psz_pwd
);
timeout
=
var_CreateGetInteger
(
p_demux
,
"ipv4-timeout"
);
#if defined(WIN32)
timeout
/=
1000
;
# warning "Disabled live555 timeout because of buggy library"
const
int
i_timeout
=
0
;
#else
const
int
i_timeout
=
var_CreateGetInteger
(
p_demux
,
"ipv4-timeout"
)
/
1000
;
#endif
#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
,
psz_user
,
psz_pwd
,
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
,
psz_user
,
psz_pwd
,
&
authenticator
,
timeout
);
&
authenticator
,
i_
timeout
);
#else
#else
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
,
psz_user
,
psz_pwd
,
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
,
psz_user
,
psz_pwd
,
&
authenticator
);
&
authenticator
);
...
@@ -557,7 +560,7 @@ describe:
...
@@ -557,7 +560,7 @@ describe:
// try again, with the realm set this time
// try again, with the realm set this time
#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
,
psz_user
,
psz_pwd
,
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
,
psz_user
,
psz_pwd
,
&
authenticator
,
timeout
);
&
authenticator
,
i_
timeout
);
#else
#else
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
,
psz_user
,
psz_pwd
,
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
,
psz_user
,
psz_pwd
,
&
authenticator
);
&
authenticator
);
...
@@ -569,7 +572,7 @@ describe:
...
@@ -569,7 +572,7 @@ describe:
#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
p_sdp
=
p_sys
->
rtsp
->
describeWithPassword
(
psz_url
,
(
const
char
*
)
psz_user
,
(
const
char
*
)
psz_pwd
,
p_sdp
=
p_sys
->
rtsp
->
describeWithPassword
(
psz_url
,
(
const
char
*
)
psz_user
,
(
const
char
*
)
psz_pwd
,
var_GetBool
(
p_demux
,
"rtsp-kasenna"
),
timeout
);
var_GetBool
(
p_demux
,
"rtsp-kasenna"
),
i_
timeout
);
#else
#else
p_sdp
=
p_sys
->
rtsp
->
describeWithPassword
(
psz_url
,
(
const
char
*
)
psz_user
,
(
const
char
*
)
psz_pwd
,
p_sdp
=
p_sys
->
rtsp
->
describeWithPassword
(
psz_url
,
(
const
char
*
)
psz_user
,
(
const
char
*
)
psz_pwd
,
var_GetBool
(
p_demux
,
"rtsp-kasenna"
)
);
var_GetBool
(
p_demux
,
"rtsp-kasenna"
)
);
...
@@ -1482,6 +1485,8 @@ static int RollOverTcp( demux_t *p_demux )
...
@@ -1482,6 +1485,8 @@ static int RollOverTcp( demux_t *p_demux )
p_sys
->
rtsp
=
NULL
;
p_sys
->
rtsp
=
NULL
;
p_sys
->
track
=
NULL
;
p_sys
->
track
=
NULL
;
p_sys
->
i_track
=
0
;
p_sys
->
i_track
=
0
;
p_sys
->
b_no_data
=
true
;
p_sys
->
i_no_data_ti
=
0
;
/* Reopen rtsp client */
/* Reopen rtsp client */
if
(
(
i_return
=
Connect
(
p_demux
)
)
!=
VLC_SUCCESS
)
if
(
(
i_return
=
Connect
(
p_demux
)
)
!=
VLC_SUCCESS
)
...
...
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