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
1ac60c8c
Commit
1ac60c8c
authored
May 23, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Keep a thread-safe list of interfaces
parent
f645d20b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
17 deletions
+45
-17
include/vlc_interface.h
include/vlc_interface.h
+1
-0
src/interface/interface.c
src/interface/interface.c
+39
-17
src/libvlc.h
src/libvlc.h
+5
-0
No files found.
include/vlc_interface.h
View file @
1ac60c8c
...
...
@@ -51,6 +51,7 @@ typedef struct intf_thread_t
{
VLC_COMMON_MEMBERS
struct
intf_thread_t
*
p_next
;
/** LibVLC interfaces book keeping */
/* Thread properties and locks */
#if defined( __APPLE__ ) || defined( WIN32 )
bool
b_should_run_on_first_thread
;
...
...
src/interface/interface.c
View file @
1ac60c8c
...
...
@@ -37,6 +37,7 @@
# include "config.h"
#endif
#include <assert.h>
#include <vlc_common.h>
#include <vlc_aout.h>
...
...
@@ -58,6 +59,8 @@ static void * MonitorLibVLCDeath( vlc_object_t *p_this );
static
int
AddIntfCallback
(
vlc_object_t
*
,
char
const
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
static
vlc_mutex_t
lock
=
VLC_STATIC_MUTEX
;
#undef intf_Create
/**
* Create and start an interface.
...
...
@@ -68,10 +71,11 @@ static int AddIntfCallback( vlc_object_t *, char const *,
*/
int
intf_Create
(
vlc_object_t
*
p_this
,
const
char
*
psz_module
)
{
libvlc_int_t
*
p_libvlc
=
p_this
->
p_libvlc
;
intf_thread_t
*
p_intf
;
/* Allocate structure */
p_intf
=
vlc_object_create
(
p_
this
,
VLC_OBJECT_INTF
);
p_intf
=
vlc_object_create
(
p_
libvlc
,
VLC_OBJECT_INTF
);
if
(
!
p_intf
)
return
VLC_ENOMEM
;
...
...
@@ -100,8 +104,8 @@ int intf_Create( vlc_object_t *p_this, const char *psz_module )
var_AddCallback
(
p_intf
,
"intf-add"
,
AddIntfCallback
,
NULL
);
/* Attach interface to
its parent object
*/
vlc_object_attach
(
p_intf
,
p_
this
);
/* Attach interface to
LibVLC
*/
vlc_object_attach
(
p_intf
,
p_
libvlc
);
#if defined( __APPLE__ ) || defined( WIN32 )
p_intf
->
b_should_run_on_first_thread
=
false
;
#endif
...
...
@@ -122,9 +126,12 @@ int intf_Create( vlc_object_t *p_this, const char *psz_module )
goto
error
;
}
if
(
p_intf
->
pf_run
==
NULL
)
return
VLC_SUCCESS
;
vlc_mutex_lock
(
&
lock
);
if
(
!
vlc_object_alive
(
p_libvlc
)
)
{
vlc_mutex_unlock
(
&
lock
);
goto
error
;
/* Too late! */
}
#if defined( __APPLE__ ) || defined( WIN32 )
/* Hack to get Mac OS X Cocoa runtime running
* (it needs access to the main thread) */
...
...
@@ -134,8 +141,10 @@ int intf_Create( vlc_object_t *p_this, const char *psz_module )
VLC_THREAD_PRIORITY_LOW
)
)
{
msg_Err
(
p_intf
,
"cannot spawn libvlc death monitoring thread"
);
vlc_mutex_unlock
(
&
lock
);
goto
error
;
}
assert
(
p_intf
->
pf_run
);
p_intf
->
pf_run
(
p_intf
);
/* It is monitoring libvlc, not the p_intf */
...
...
@@ -144,13 +153,19 @@ int intf_Create( vlc_object_t *p_this, const char *psz_module )
else
#endif
/* Run the interface in a separate thread */
if
(
vlc_thread_create
(
p_intf
,
"interface"
,
RunInterface
,
if
(
p_intf
->
pf_run
&&
vlc_thread_create
(
p_intf
,
"interface"
,
RunInterface
,
VLC_THREAD_PRIORITY_LOW
)
)
{
msg_Err
(
p_intf
,
"cannot spawn interface thread"
);
vlc_mutex_unlock
(
&
lock
);
goto
error
;
}
p_intf
->
p_next
=
libvlc_priv
(
p_libvlc
)
->
p_intf
;
libvlc_priv
(
p_libvlc
)
->
p_intf
=
p_intf
;
vlc_mutex_unlock
(
&
lock
);
return
VLC_SUCCESS
;
error:
...
...
@@ -169,28 +184,35 @@ error:
*/
void
intf_DestroyAll
(
libvlc_int_t
*
p_libvlc
)
{
vlc_list_t
*
l
=
vlc_list_find
(
VLC_OBJECT
(
p_libvlc
),
VLC_OBJECT_INTF
,
FIND_CHILD
);
intf_thread_t
*
p_first
;
assert
(
!
vlc_object_alive
(
p_libvlc
)
);
vlc_mutex_lock
(
&
lock
);
p_first
=
libvlc_priv
(
p_libvlc
)
->
p_intf
;
#ifndef NDEBUG
libvlc_priv
(
p_libvlc
)
->
p_intf
=
NULL
;
#endif
vlc_mutex_unlock
(
&
lock
);
/* Tell the interfaces to die */
for
(
int
i
=
0
;
i
<
l
->
i_count
;
i
++
)
vlc_object_kill
(
l
->
p_values
[
i
].
p_object
);
for
(
int
f_thread_t
*
p_intf
=
p_first
;
p_intf
;
p_intf
=
p_intf
->
p_next
)
vlc_object_kill
(
p_intf
);
/* Cleanup the interfaces */
for
(
int
i
=
0
;
i
<
l
->
i_count
;
i
++
)
for
(
int
f_thread_t
*
p_intf
=
p_first
;
p_intf
!=
NULL
;
)
{
intf_thread_t
*
p_
intf
=
(
intf_thread_t
*
)
l
->
p_values
[
i
].
p_objec
t
;
intf_thread_t
*
p_
next
=
p_intf
->
p_nex
t
;
if
(
p_intf
->
pf_run
)
vlc_thread_join
(
p_intf
);
module_unneed
(
p_intf
,
p_intf
->
p_module
);
free
(
p_intf
->
psz_intf
);
config_ChainDestroy
(
p_intf
->
p_cfg
);
}
vlc_object_release
(
p_intf
);
/* Destroy objects */
for
(
int
i
=
0
;
i
<
l
->
i_count
;
i
++
)
vlc_object_release
(
l
->
p_values
[
i
].
p_object
);
/* for intf_Create() */
vlc_list_release
(
l
);
p_intf
=
p_next
;
}
}
/* Following functions are local */
...
...
src/libvlc.h
View file @
1ac60c8c
...
...
@@ -224,6 +224,11 @@ typedef struct libvlc_priv_t
#ifdef ENABLE_SOUT
sap_handler_t
*
p_sap
;
///< SAP SDP advertiser
#endif
/* Interfaces */
struct
intf_thread_t
*
p_intf
;
///< Interfaces linked-list
/* Objects tree */
vlc_mutex_t
structure_lock
;
}
libvlc_priv_t
;
...
...
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