Commit 984533a2 authored by Rafaël Carré's avatar Rafaël Carré

opensles: Clear() -> rename

parent d8ea040a
...@@ -104,7 +104,7 @@ vlc_module_end () ...@@ -104,7 +104,7 @@ vlc_module_end ()
goto error; \ goto error; \
} }
static void Clear( aout_sys_t *p_sys ) static void Clean( aout_sys_t *p_sys )
{ {
// Destroy buffer queue audio player object // Destroy buffer queue audio player object
// and invalidate all associated interfaces // and invalidate all associated interfaces
...@@ -306,7 +306,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -306,7 +306,7 @@ static int Open( vlc_object_t *p_this )
return VLC_SUCCESS; return VLC_SUCCESS;
error: error:
Clear( p_sys ); Clean( p_sys );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
...@@ -321,6 +321,6 @@ static void Close( vlc_object_t *p_this ) ...@@ -321,6 +321,6 @@ static void Close( vlc_object_t *p_this )
(*p_sys->playerPlay)->SetPlayState( p_sys->playerPlay, SL_PLAYSTATE_STOPPED ); (*p_sys->playerPlay)->SetPlayState( p_sys->playerPlay, SL_PLAYSTATE_STOPPED );
//Flush remaining buffers if any. //Flush remaining buffers if any.
(*p_sys->playerBufferQueue)->Clear( p_sys->playerBufferQueue ); (*p_sys->playerBufferQueue)->Clear( p_sys->playerBufferQueue );
Clear( p_sys ); Clean( p_sys );
} }
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