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
7b753608
Commit
7b753608
authored
Apr 08, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Really fix audio volume underflow (audio_volume_t is unsigned)
This reverts commit
164c18c9
.
parent
268fc5d2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
15 deletions
+13
-15
src/audio_output/intf.c
src/audio_output/intf.c
+13
-15
No files found.
src/audio_output/intf.c
View file @
7b753608
...
...
@@ -76,17 +76,10 @@ static void prepareVolume (vlc_object_t *obj, aout_instance_t **aoutp,
/** Commit a volume change transaction. */
static
int
commitVolume
(
vlc_object_t
*
obj
,
aout_instance_t
*
aout
,
audio_volume_t
*
volp
,
bool
mute
)
audio_volume_t
volume
,
bool
mute
)
{
int
ret
=
0
;
audio_volume_t
volume
=
*
volp
;
if
(
volume
<
AOUT_VOLUME_MIN
)
volume
=
AOUT_VOLUME_MIN
;
if
(
volume
>
AOUT_VOLUME_MAX
)
volume
=
AOUT_VOLUME_MAX
;
*
volp
=
volume
;
var_SetInteger
(
obj
,
"volume"
,
volume
);
var_SetBool
(
obj
,
"mute"
,
mute
);
...
...
@@ -149,7 +142,7 @@ int aout_VolumeSet (vlc_object_t *obj, audio_volume_t volume)
bool
mute
;
prepareVolume
(
obj
,
&
aout
,
NULL
,
&
mute
);
return
commitVolume
(
obj
,
aout
,
&
volume
,
mute
);
return
commitVolume
(
obj
,
aout
,
volume
,
mute
);
}
#undef aout_VolumeUp
...
...
@@ -161,13 +154,18 @@ int aout_VolumeUp (vlc_object_t *obj, int steps, audio_volume_t *volp)
{
aout_instance_t
*
aout
;
int
ret
;
int
stepsize
=
var_InheritInteger
(
obj
,
"volume-step"
);
audio_volume_t
volume
;
int
volume
;
bool
mute
;
steps
*=
var_InheritInteger
(
obj
,
"volume-step"
);
prepareVolume
(
obj
,
&
aout
,
&
volume
,
&
mute
);
volume
+=
stepsize
*
steps
;
ret
=
commitVolume
(
obj
,
aout
,
&
volume
,
mute
);
volume
+=
steps
;
if
(
volume
<
AOUT_VOLUME_MIN
)
volume
=
AOUT_VOLUME_MIN
;
if
(
volume
>
AOUT_VOLUME_MAX
)
volume
=
AOUT_VOLUME_MAX
;
ret
=
commitVolume
(
obj
,
aout
,
volume
,
mute
);
if
(
volp
!=
NULL
)
*
volp
=
volume
;
return
ret
;
...
...
@@ -195,7 +193,7 @@ int aout_ToggleMute (vlc_object_t *obj, audio_volume_t *volp)
prepareVolume
(
obj
,
&
aout
,
&
volume
,
&
mute
);
mute
=
!
mute
;
ret
=
commitVolume
(
obj
,
aout
,
&
volume
,
mute
);
ret
=
commitVolume
(
obj
,
aout
,
volume
,
mute
);
if
(
volp
!=
NULL
)
*
volp
=
mute
?
AOUT_VOLUME_MIN
:
volume
;
return
ret
;
...
...
@@ -228,7 +226,7 @@ int aout_SetMute (vlc_object_t *obj, audio_volume_t *volp, bool mute)
audio_volume_t
volume
;
prepareVolume
(
obj
,
&
aout
,
&
volume
,
NULL
);
ret
=
commitVolume
(
obj
,
aout
,
&
volume
,
mute
);
ret
=
commitVolume
(
obj
,
aout
,
volume
,
mute
);
if
(
volp
!=
NULL
)
*
volp
=
mute
?
AOUT_VOLUME_MIN
:
volume
;
return
ret
;
...
...
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