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
7c7ad3b0
Commit
7c7ad3b0
authored
Feb 14, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplified and fixed mmst/u pausing (close #2673).
parent
cdc9281c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
73 deletions
+41
-73
modules/access/mms/mmstu.c
modules/access/mms/mmstu.c
+38
-62
modules/access/mms/mmstu.h
modules/access/mms/mmstu.h
+3
-11
No files found.
modules/access/mms/mmstu.c
View file @
7c7ad3b0
...
...
@@ -82,7 +82,8 @@ static int mms_HeaderMediaRead( access_t *, int );
static
int
mms_ReceivePacket
(
access_t
*
);
static
void
*
KeepAliveThread
(
void
*
);
static
void
KeepAliveStart
(
access_t
*
);
static
void
KeepAliveStop
(
access_t
*
);
int
MMSTUOpen
(
access_t
*
p_access
)
{
...
...
@@ -179,6 +180,7 @@ int MMSTUOpen( access_t *p_access )
(
uint64_t
)
p_sys
->
i_header
+
(
uint64_t
)
p_sys
->
i_packet_count
*
(
uint64_t
)
p_sys
->
i_packet_length
;
}
p_sys
->
b_keep_alive
=
false
;
/* *** Start stream *** */
if
(
MMSStart
(
p_access
,
0xffffffff
)
<
0
)
...
...
@@ -188,26 +190,6 @@ int MMSTUOpen( access_t *p_access )
return
VLC_EGENERIC
;
}
/* Keep the connection alive when paused */
p_sys
->
p_keepalive
=
malloc
(
sizeof
(
mmstu_keepalive_t
)
);
if
(
!
p_sys
->
p_keepalive
)
{
MMSTUClose
(
p_access
);
return
VLC_ENOMEM
;
}
p_sys
->
p_keepalive
->
p_access
=
p_access
;
vlc_mutex_init
(
&
p_sys
->
p_keepalive
->
lock
);
vlc_cond_init
(
&
p_sys
->
p_keepalive
->
wait
);
p_sys
->
p_keepalive
->
b_paused
=
false
;
if
(
vlc_clone
(
&
p_sys
->
p_keepalive
->
handle
,
KeepAliveThread
,
p_sys
->
p_keepalive
,
VLC_THREAD_PRIORITY_LOW
)
)
{
vlc_cond_destroy
(
&
p_sys
->
p_keepalive
->
wait
);
vlc_mutex_destroy
(
&
p_sys
->
p_keepalive
->
lock
);
free
(
p_sys
->
p_keepalive
);
p_sys
->
p_keepalive
=
NULL
;
}
return
VLC_SUCCESS
;
}
...
...
@@ -218,21 +200,13 @@ void MMSTUClose( access_t *p_access )
{
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
if
(
p_sys
->
p_keepalive
)
{
vlc_cancel
(
p_sys
->
p_keepalive
->
handle
);
vlc_join
(
p_sys
->
p_keepalive
->
handle
,
NULL
);
vlc_cond_destroy
(
&
p_sys
->
p_keepalive
->
wait
);
vlc_mutex_destroy
(
&
p_sys
->
p_keepalive
->
lock
);
free
(
p_sys
->
p_keepalive
);
}
KeepAliveStop
(
p_access
);
/* close connection with server */
MMSClose
(
p_access
);
/* free memory */
vlc_UrlClean
(
&
p_sys
->
url
);
vlc_mutex_destroy
(
&
p_sys
->
lock_netwrite
);
free
(
p_sys
);
}
...
...
@@ -295,17 +269,14 @@ static int Control( access_t *p_access, int i_query, va_list args )
case
ACCESS_SET_PAUSE_STATE
:
b_bool
=
(
bool
)
va_arg
(
args
,
int
);
if
(
b_bool
)
{
MMSStop
(
p_access
);
KeepAliveStart
(
p_access
);
}
else
Seek
(
p_access
,
p_access
->
info
.
i_pos
);
if
(
p_sys
->
p_keepalive
)
{
vlc_mutex_lock
(
&
p_sys
->
p_keepalive
->
lock
);
p_sys
->
p_keepalive
->
b_paused
=
b_bool
;
if
(
b_bool
)
vlc_cond_signal
(
&
p_sys
->
p_keepalive
->
wait
);
vlc_mutex_unlock
(
&
p_sys
->
p_keepalive
->
lock
);
KeepAliveStop
(
p_access
);
Seek
(
p_access
,
p_access
->
info
.
i_pos
);
}
break
;
...
...
@@ -1018,6 +989,7 @@ static int mms_CommandSend( access_t *p_access, int i_command,
i_ret
=
net_Write
(
p_access
,
p_sys
->
i_handle_tcp
,
NULL
,
buffer
.
p_data
,
buffer
.
i_data
-
(
8
-
(
i_data
-
i_data_old
)
)
);
vlc_mutex_unlock
(
&
p_sys
->
lock_netwrite
);
if
(
i_ret
!=
buffer
.
i_data
-
(
8
-
(
i_data
-
i_data_old
)
)
)
{
var_buffer_free
(
&
buffer
);
...
...
@@ -1582,38 +1554,42 @@ static int mms_HeaderMediaRead( access_t *p_access, int i_type )
return
-
1
;
}
static
void
*
KeepAliveThread
(
void
*
p_data
)
static
void
*
KeepAliveThread
(
void
*
p_data
)
{
mmstu_keepalive_t
*
p_thread
=
(
mmstu_keepalive_t
*
)
p_data
;
access_t
*
p_access
=
p_thread
->
p_access
;
vlc_mutex_lock
(
&
p_thread
->
lock
);
mutex_cleanup_push
(
&
p_thread
->
lock
);
access_t
*
p_access
=
p_data
;
for
(
;;
)
{
/* Do nothing until paused (if ever) */
while
(
!
p_thread
->
b_paused
)
vlc_cond_wait
(
&
p_thread
->
wait
,
&
p_thread
->
lock
);
/* Send keep-alive every ten seconds */
int
canc
=
vlc_savecancel
();
do
{
int
canc
;
mms_CommandSend
(
p_access
,
0x1b
,
0
,
0
,
NULL
,
0
);
/* Send keep-alive every ten seconds */
vlc_mutex_unlock
(
&
p_thread
->
lock
);
canc
=
vlc_savecancel
();
vlc_restorecancel
(
canc
);
mms_CommandSend
(
p_access
,
0x1b
,
0
,
0
,
NULL
,
0
);
msleep
(
10
*
CLOCK_FREQ
);
}
assert
(
0
);
}
static
void
KeepAliveStart
(
access_t
*
p_access
)
{
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
if
(
p_sys
->
b_keep_alive
)
return
;
vlc_restorecancel
(
canc
);
vlc_mutex_lock
(
&
p_thread
->
lock
);
p_sys
->
b_keep_alive
=
!
vlc_clone
(
&
p_sys
->
keep_alive
,
KeepAliveThread
,
p_access
,
VLC_THREAD_PRIORITY_LOW
);
}
msleep
(
10
*
CLOCK_FREQ
);
}
while
(
p_thread
->
b_paused
);
}
static
void
KeepAliveStop
(
access_t
*
p_access
)
{
access_sys_t
*
p_sys
=
p_access
->
p_sys
;
if
(
!
p_sys
->
b_keep_alive
)
return
;
vlc_cleanup_pop
();
assert
(
0
);
vlc_cancel
(
p_sys
->
keep_alive
);
vlc_join
(
p_sys
->
keep_alive
,
NULL
);
p_sys
->
b_keep_alive
=
false
;
}
modules/access/mms/mmstu.h
View file @
7c7ad3b0
...
...
@@ -94,17 +94,9 @@ struct access_sys_t
/* misc */
bool
b_seekable
;
vlc_mutex_t
lock_netwrite
;
struct
mmstu_keepalive_t
*
p_keepalive
;
vlc_mutex_t
lock_netwrite
;
bool
b_keep_alive
;
vlc_thread_t
keep_alive
;
};
typedef
struct
mmstu_keepalive_t
{
access_t
*
p_access
;
vlc_mutex_t
lock
;
vlc_cond_t
wait
;
vlc_thread_t
handle
;
bool
b_paused
;
}
mmstu_keepalive_t
;
#endif
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