Commit c35ce644 authored by Rafaël Carré's avatar Rafaël Carré

audio_output/ : removes useless unused parameter warnings

parent 70ac3d92
......@@ -533,6 +533,7 @@ static int Open( vlc_object_t *p_this )
*****************************************************************************/
static void Play( aout_instance_t *p_aout )
{
VLC_UNUSED(p_aout);
}
/*****************************************************************************
......
......@@ -229,6 +229,7 @@ static int Open ( vlc_object_t *p_this )
*****************************************************************************/
static void Play( aout_instance_t * p_aout )
{
VLC_UNUSED(p_aout);
}
/*****************************************************************************
......@@ -236,6 +237,7 @@ static void Play( aout_instance_t * p_aout )
*****************************************************************************/
static void Close ( vlc_object_t *p_this )
{
VLC_UNUSED(p_this);
SDL_PauseAudio( 1 );
SDL_CloseAudio();
SDL_QuitSubSystem( SDL_INIT_AUDIO );
......
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