Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
c35ce644
Commit
c35ce644
authored
Jan 28, 2008
by
Rafaël Carré
Browse files
audio_output/ : removes useless unused parameter warnings
parent
70ac3d92
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/audio_output/oss.c
View file @
c35ce644
...
...
@@ -533,6 +533,7 @@ static int Open( vlc_object_t *p_this )
*****************************************************************************/
static
void
Play
(
aout_instance_t
*
p_aout
)
{
VLC_UNUSED
(
p_aout
);
}
/*****************************************************************************
...
...
modules/audio_output/sdl.c
View file @
c35ce644
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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