Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
3a6ce961
Commit
3a6ce961
authored
Jun 09, 2010
by
Francois Cartegnie
Committed by
Jean-Baptiste Kempf
Jun 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignore unmute if volume hasn't been set or muted. fixes #3636
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
d704a395
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
src/audio_output/intf.c
src/audio_output/intf.c
+11
-0
No files found.
src/audio_output/intf.c
View file @
3a6ce961
...
...
@@ -122,6 +122,17 @@ int doVolumeChanges( unsigned action, vlc_object_t * p_object, int i_nb_steps,
(
action
==
TOGGLE_MUTE
)
));
/* If muting or unmuting when play hasn't started */
if
(
action
==
SET_MUTE
&&
!
b_unmute_condition
&&
!
b_mute_condition
)
{
if
(
p_aout
)
{
aout_unlock_volume
(
p_aout
);
vlc_object_release
(
p_aout
);
}
return
i_result
;
}
/* On UnMute */
if
(
b_unmute_condition
)
{
...
...
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