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
3d5f0231
Commit
3d5f0231
authored
Sep 18, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only deinit non-refcounted core data if we're the last instance
parent
e85a5a61
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
12 deletions
+27
-12
src/libvlc-common.c
src/libvlc-common.c
+27
-12
No files found.
src/libvlc-common.c
View file @
3d5f0231
...
@@ -94,6 +94,7 @@
...
@@ -94,6 +94,7 @@
static
libvlc_global_data_t
libvlc_global
;
static
libvlc_global_data_t
libvlc_global
;
static
libvlc_global_data_t
*
p_libvlc_global
;
static
libvlc_global_data_t
*
p_libvlc_global
;
static
libvlc_int_t
*
p_static_vlc
;
static
libvlc_int_t
*
p_static_vlc
;
static
volatile
unsigned
int
i_instances
=
0
;
/*****************************************************************************
/*****************************************************************************
* Local prototypes
* Local prototypes
...
@@ -159,6 +160,9 @@ libvlc_int_t * libvlc_InternalCreate( void )
...
@@ -159,6 +160,9 @@ libvlc_int_t * libvlc_InternalCreate( void )
var_Create
(
p_libvlc_global
,
"libvlc"
,
VLC_VAR_MUTEX
);
var_Create
(
p_libvlc_global
,
"libvlc"
,
VLC_VAR_MUTEX
);
var_Get
(
p_libvlc_global
,
"libvlc"
,
&
lockval
);
var_Get
(
p_libvlc_global
,
"libvlc"
,
&
lockval
);
vlc_mutex_lock
(
lockval
.
p_address
);
vlc_mutex_lock
(
lockval
.
p_address
);
i_instances
++
;
if
(
!
libvlc_global
.
b_ready
)
if
(
!
libvlc_global
.
b_ready
)
{
{
char
*
psz_env
;
char
*
psz_env
;
...
@@ -194,7 +198,7 @@ libvlc_int_t * libvlc_InternalCreate( void )
...
@@ -194,7 +198,7 @@ libvlc_int_t * libvlc_InternalCreate( void )
/* Allocate a libvlc instance object */
/* Allocate a libvlc instance object */
p_libvlc
=
vlc_object_create
(
p_libvlc_global
,
VLC_OBJECT_LIBVLC
);
p_libvlc
=
vlc_object_create
(
p_libvlc_global
,
VLC_OBJECT_LIBVLC
);
if
(
p_libvlc
==
NULL
)
return
NULL
;
if
(
p_libvlc
==
NULL
)
{
i_instances
--
;
return
NULL
;
}
p_libvlc
->
thread_id
=
0
;
p_libvlc
->
thread_id
=
0
;
p_libvlc
->
p_playlist
=
NULL
;
p_libvlc
->
p_playlist
=
NULL
;
p_libvlc
->
psz_object_name
=
"libvlc"
;
p_libvlc
->
psz_object_name
=
"libvlc"
;
...
@@ -868,6 +872,8 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
...
@@ -868,6 +872,8 @@ int libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
*/
*/
int
libvlc_InternalDestroy
(
libvlc_int_t
*
p_libvlc
,
vlc_bool_t
b_release
)
int
libvlc_InternalDestroy
(
libvlc_int_t
*
p_libvlc
,
vlc_bool_t
b_release
)
{
{
vlc_value_t
lockval
;
if
(
p_libvlc
->
p_memcpy_module
)
if
(
p_libvlc
->
p_memcpy_module
)
{
{
module_Unneed
(
p_libvlc
,
p_libvlc
->
p_memcpy_module
);
module_Unneed
(
p_libvlc
,
p_libvlc
->
p_memcpy_module
);
...
@@ -882,18 +888,25 @@ int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, vlc_bool_t b_release )
...
@@ -882,18 +888,25 @@ int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, vlc_bool_t b_release )
FREENULL
(
p_libvlc
->
psz_configfile
);
FREENULL
(
p_libvlc
->
psz_configfile
);
FREENULL
(
p_libvlc
->
p_hotkeys
);
FREENULL
(
p_libvlc
->
p_hotkeys
);
var_Create
(
p_libvlc_global
,
"libvlc"
,
VLC_VAR_MUTEX
);
var_Get
(
p_libvlc_global
,
"libvlc"
,
&
lockval
);
vlc_mutex_lock
(
lockval
.
p_address
);
i_instances
--
;
if
(
i_instances
==
0
)
{
/* System specific cleaning code */
/* System specific cleaning code */
system_End
(
p_libvlc
);
system_End
(
p_libvlc
);
/*
/* Free message queue. Nobody shall use msg_* afterward. */
* Free message queue.
* Nobody shall use msg_* afterward.
*/
msg_Flush
(
p_libvlc
);
msg_Flush
(
p_libvlc
);
msg_Destroy
(
p_libvlc_global
);
msg_Destroy
(
p_libvlc_global
);
/* Destroy global iconv */
/* Destroy global iconv */
LocaleDeinit
();
LocaleDeinit
();
}
vlc_mutex_unlock
(
lockval
.
p_address
);
var_Destroy
(
p_libvlc_global
,
"libvlc"
);
/* Destroy mutexes */
/* Destroy mutexes */
vlc_mutex_destroy
(
&
p_libvlc
->
config_lock
);
vlc_mutex_destroy
(
&
p_libvlc
->
config_lock
);
...
@@ -902,7 +915,9 @@ int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, vlc_bool_t b_release )
...
@@ -902,7 +915,9 @@ int libvlc_InternalDestroy( libvlc_int_t *p_libvlc, vlc_bool_t b_release )
if
(
b_release
)
vlc_object_release
(
p_libvlc
);
if
(
b_release
)
vlc_object_release
(
p_libvlc
);
vlc_object_destroy
(
p_libvlc
);
vlc_object_destroy
(
p_libvlc
);
/* Stop thread system: last one out please shut the door! */
/* Stop thread system: last one out please shut the door!
* The number of initializations of the thread system is counted, we
* can call this each time */
vlc_threads_end
(
p_libvlc_global
);
vlc_threads_end
(
p_libvlc_global
);
return
VLC_SUCCESS
;
return
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