Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
663e69a6
Commit
663e69a6
authored
Feb 14, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make doVolumeChanges static
parent
1e2fab29
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
src/audio_output/aout_internal.h
src/audio_output/aout_internal.h
+0
-3
src/audio_output/intf.c
src/audio_output/intf.c
+2
-0
No files found.
src/audio_output/aout_internal.h
View file @
663e69a6
...
...
@@ -151,9 +151,6 @@ int aout_VolumeSoftInfos( aout_instance_t *, audio_volume_t * );
int
aout_VolumeNoneGet
(
aout_instance_t
*
,
audio_volume_t
*
);
int
aout_VolumeNoneSet
(
aout_instance_t
*
,
audio_volume_t
);
int
aout_VolumeNoneInfos
(
aout_instance_t
*
,
audio_volume_t
*
);
int
doVolumeChanges
(
unsigned
action
,
vlc_object_t
*
p_object
,
int
i_nb_steps
,
audio_volume_t
i_volume
,
audio_volume_t
*
i_return_volume
,
bool
b_mute
);
/* From dec.c */
#define aout_DecNew(a, b, c, d, e) __aout_DecNew(VLC_OBJECT(a), b, c, d, e)
...
...
src/audio_output/intf.c
View file @
663e69a6
...
...
@@ -81,10 +81,12 @@ enum {
INCREMENT_VOLUME
=
4
,
TOGGLE_MUTE
=
8
};
/*****************************************************************************
* doVolumeChanges : handle all volume changes. Internal use only to ease
* variables locking.
*****************************************************************************/
static
int
doVolumeChanges
(
unsigned
action
,
vlc_object_t
*
p_object
,
int
i_nb_steps
,
audio_volume_t
i_volume
,
audio_volume_t
*
i_return_volume
,
bool
b_mute
)
...
...
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