Commit f3b95223 authored by Julien 'Lta' BALLET's avatar Julien 'Lta' BALLET Committed by Felix Paul Kühne

src/playlist/thread.c: Use the macro to lock/unlock the playlist as in the rest of the file

Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent afadabf0
...@@ -525,7 +525,7 @@ static void *Thread ( void *data ) ...@@ -525,7 +525,7 @@ static void *Thread ( void *data )
playlist_t *p_playlist = data; playlist_t *p_playlist = data;
playlist_private_t *p_sys = pl_priv(p_playlist); playlist_private_t *p_sys = pl_priv(p_playlist);
playlist_Lock( p_playlist ); PL_LOCK;
for( ;; ) for( ;; )
{ {
while( p_sys->p_input != NULL ) while( p_sys->p_input != NULL )
...@@ -550,7 +550,7 @@ static void *Thread ( void *data ) ...@@ -550,7 +550,7 @@ static void *Thread ( void *data )
LoopRequest( p_playlist, status ); LoopRequest( p_playlist, status );
} }
p_sys->status.i_status = PLAYLIST_STOPPED; p_sys->status.i_status = PLAYLIST_STOPPED;
playlist_Unlock( p_playlist ); PL_UNLOCK;
input_resource_Terminate( p_sys->p_input_resource ); input_resource_Terminate( p_sys->p_input_resource );
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment