Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
c35ce644
Commit
c35ce644
authored
Jan 28, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audio_output/ : removes useless unused parameter warnings
parent
70ac3d92
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
modules/audio_output/oss.c
modules/audio_output/oss.c
+1
-0
modules/audio_output/sdl.c
modules/audio_output/sdl.c
+2
-0
No files found.
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
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