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
3d1fee81
Commit
3d1fee81
authored
Feb 09, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audioscrobbler: no need to lock playlist to add callbacks
We already have the variables lock for that.
parent
99f3ffac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
modules/misc/audioscrobbler.c
modules/misc/audioscrobbler.c
+2
-7
No files found.
modules/misc/audioscrobbler.c
View file @
3d1fee81
...
...
@@ -177,7 +177,6 @@ vlc_module_end ()
*****************************************************************************/
static
int
Open
(
vlc_object_t
*
p_this
)
{
playlist_t
*
p_playlist
;
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
intf_sys_t
*
p_sys
=
calloc
(
1
,
sizeof
(
intf_sys_t
)
);
...
...
@@ -189,10 +188,7 @@ static int Open( vlc_object_t *p_this )
vlc_mutex_init
(
&
p_sys
->
lock
);
vlc_cond_init
(
&
p_sys
->
wait
);
p_playlist
=
pl_Get
(
p_intf
);
PL_LOCK
;
var_AddCallback
(
p_playlist
,
"item-current"
,
ItemChange
,
p_intf
);
PL_UNLOCK
;
var_AddCallback
(
pl_Get
(
p_intf
),
"item-current"
,
ItemChange
,
p_intf
);
p_intf
->
pf_run
=
Run
;
...
...
@@ -204,12 +200,11 @@ static int Open( vlc_object_t *p_this )
*****************************************************************************/
static
void
Close
(
vlc_object_t
*
p_this
)
{
playlist_t
*
p_playlist
;
playlist_t
*
p_playlist
=
pl_Get
(
p_this
)
;
input_thread_t
*
p_input
;
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
intf_sys_t
*
p_sys
=
p_intf
->
p_sys
;
p_playlist
=
pl_Get
(
p_intf
);
var_DelCallback
(
p_playlist
,
"item-current"
,
ItemChange
,
p_intf
);
p_input
=
playlist_CurrentInput
(
p_playlist
);
...
...
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