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
5995f330
Commit
5995f330
authored
Aug 30, 2009
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc: Remove unused mutex.
parent
129fbb17
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
3 deletions
+0
-3
src/control/core.c
src/control/core.c
+0
-2
src/control/libvlc_internal.h
src/control/libvlc_internal.h
+0
-1
No files found.
src/control/core.c
View file @
5995f330
...
...
@@ -142,7 +142,6 @@ libvlc_instance_t * libvlc_new( int argc, const char *const *argv,
p_new
->
verbosity
=
1
;
p_new
->
p_callback_list
=
NULL
;
vlc_mutex_init
(
&
p_new
->
instance_lock
);
vlc_mutex_init
(
&
p_new
->
event_callback_lock
);
return
p_new
;
}
...
...
@@ -170,7 +169,6 @@ void libvlc_release( libvlc_instance_t *p_instance )
if
(
refs
==
0
)
{
vlc_mutex_destroy
(
lock
);
vlc_mutex_destroy
(
&
p_instance
->
event_callback_lock
);
if
(
p_instance
->
libvlc_vlm
.
pf_release
)
p_instance
->
libvlc_vlm
.
pf_release
(
p_instance
);
libvlc_InternalCleanup
(
p_instance
->
p_libvlc_int
);
...
...
src/control/libvlc_internal.h
View file @
5995f330
...
...
@@ -67,7 +67,6 @@ struct libvlc_instance_t
unsigned
ref_count
;
int
verbosity
;
vlc_mutex_t
instance_lock
;
vlc_mutex_t
event_callback_lock
;
struct
libvlc_callback_entry_list_t
*
p_callback_list
;
};
...
...
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