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
035898d1
Commit
035898d1
authored
Jul 02, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aout_MuteGet: fix name and add VLC_OBJECT() magic cast
parent
18a70b6d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
9 deletions
+12
-9
include/vlc_aout_intf.h
include/vlc_aout_intf.h
+2
-1
lib/audio.c
lib/audio.c
+1
-1
modules/control/hotkeys.c
modules/control/hotkeys.c
+1
-1
modules/gui/macosx/CoreInteraction.m
modules/gui/macosx/CoreInteraction.m
+1
-1
modules/gui/qt4/components/controller_widget.cpp
modules/gui/qt4/components/controller_widget.cpp
+1
-1
modules/gui/skins2/src/vlcproc.cpp
modules/gui/skins2/src/vlcproc.cpp
+2
-2
src/audio_output/intf.c
src/audio_output/intf.c
+3
-1
src/libvlccore.sym
src/libvlccore.sym
+1
-1
No files found.
include/vlc_aout_intf.h
View file @
035898d1
...
@@ -40,7 +40,8 @@ VLC_API int aout_MuteToggle( vlc_object_t * );
...
@@ -40,7 +40,8 @@ VLC_API int aout_MuteToggle( vlc_object_t * );
#define aout_MuteToggle(a) aout_MuteToggle(VLC_OBJECT(a))
#define aout_MuteToggle(a) aout_MuteToggle(VLC_OBJECT(a))
VLC_API
int
aout_MuteSet
(
vlc_object_t
*
,
bool
);
VLC_API
int
aout_MuteSet
(
vlc_object_t
*
,
bool
);
#define aout_MuteSet(a, b) aout_MuteSet(VLC_OBJECT(a), b)
#define aout_MuteSet(a, b) aout_MuteSet(VLC_OBJECT(a), b)
VLC_API
bool
aout_IsMuted
(
vlc_object_t
*
);
VLC_API
int
aout_MuteGet
(
vlc_object_t
*
);
#define aout_MuteGet(a) aout_MuteGet(VLC_OBJECT(a))
VLC_API
void
aout_EnableFilter
(
vlc_object_t
*
,
const
char
*
,
bool
);
VLC_API
void
aout_EnableFilter
(
vlc_object_t
*
,
const
char
*
,
bool
);
#define aout_EnableFilter( o, n, b ) \
#define aout_EnableFilter( o, n, b ) \
...
...
lib/audio.c
View file @
035898d1
...
@@ -318,7 +318,7 @@ void libvlc_audio_toggle_mute( libvlc_media_player_t *mp )
...
@@ -318,7 +318,7 @@ void libvlc_audio_toggle_mute( libvlc_media_player_t *mp )
int
libvlc_audio_get_mute
(
libvlc_media_player_t
*
mp
)
int
libvlc_audio_get_mute
(
libvlc_media_player_t
*
mp
)
{
{
return
aout_
IsMuted
(
VLC_OBJECT
(
mp
)
);
return
aout_
MuteGet
(
mp
);
}
}
void
libvlc_audio_set_mute
(
libvlc_media_player_t
*
mp
,
int
mute
)
void
libvlc_audio_set_mute
(
libvlc_media_player_t
*
mp
,
int
mute
)
...
...
modules/control/hotkeys.c
View file @
035898d1
...
@@ -203,7 +203,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
...
@@ -203,7 +203,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
case
ACTIONID_VOL_MUTE
:
case
ACTIONID_VOL_MUTE
:
if
(
aout_MuteToggle
(
p_playlist
)
==
0
&&
p_vout
!=
NULL
)
if
(
aout_MuteToggle
(
p_playlist
)
==
0
&&
p_vout
!=
NULL
)
{
{
if
(
aout_
IsMuted
(
VLC_OBJECT
(
p_playlist
)
)
)
if
(
aout_
MuteGet
(
p_playlist
)
>
0
)
{
{
ClearChannels
(
p_intf
,
p_vout
);
ClearChannels
(
p_intf
,
p_vout
);
DisplayIcon
(
p_vout
,
OSD_MUTE_ICON
);
DisplayIcon
(
p_vout
,
OSD_MUTE_ICON
);
...
...
modules/gui/macosx/CoreInteraction.m
View file @
035898d1
...
@@ -504,7 +504,7 @@ static VLCCoreInteraction *_o_sharedInstance = nil;
...
@@ -504,7 +504,7 @@ static VLCCoreInteraction *_o_sharedInstance = nil;
return
NO
;
return
NO
;
BOOL
b_is_muted
=
NO
;
BOOL
b_is_muted
=
NO
;
b_is_muted
=
aout_
IsMuted
(
VLC_OBJECT
(
pl_Get
(
p_intf
))
)
;
b_is_muted
=
aout_
MuteGet
(
pl_Get
(
p_intf
)
)
>
0
;
return
b_is_muted
;
return
b_is_muted
;
}
}
...
...
modules/gui/qt4/components/controller_widget.cpp
View file @
035898d1
...
@@ -185,7 +185,7 @@ void SoundWidget::valueChangedFilter( int i_val )
...
@@ -185,7 +185,7 @@ void SoundWidget::valueChangedFilter( int i_val )
void
SoundWidget
::
updateMuteStatus
()
void
SoundWidget
::
updateMuteStatus
()
{
{
playlist_t
*
p_playlist
=
pl_Get
(
p_intf
);
playlist_t
*
p_playlist
=
pl_Get
(
p_intf
);
b_is_muted
=
aout_
IsMuted
(
VLC_OBJECT
(
p_playlist
)
)
;
b_is_muted
=
aout_
MuteGet
(
p_playlist
)
>
0
;
SoundSlider
*
soundSlider
=
qobject_cast
<
SoundSlider
*>
(
volumeSlider
);
SoundSlider
*
soundSlider
=
qobject_cast
<
SoundSlider
*>
(
volumeSlider
);
if
(
soundSlider
)
if
(
soundSlider
)
...
...
modules/gui/skins2/src/vlcproc.cpp
View file @
035898d1
...
@@ -695,7 +695,7 @@ void VlcProc::on_volume_changed( vlc_object_t* p_obj, vlc_value_t newVal )
...
@@ -695,7 +695,7 @@ void VlcProc::on_volume_changed( vlc_object_t* p_obj, vlc_value_t newVal )
audio_volume_t
volume
=
aout_VolumeGet
(
pPlaylist
);
audio_volume_t
volume
=
aout_VolumeGet
(
pPlaylist
);
SET_VOLUME
(
m_cVarVolume
,
volume
,
false
);
SET_VOLUME
(
m_cVarVolume
,
volume
,
false
);
bool
b_is_muted
=
aout_
IsMuted
(
VLC_OBJECT
(
pPlaylist
)
)
;
bool
b_is_muted
=
aout_
MuteGet
(
pPlaylist
)
>
0
;
SET_BOOL
(
m_cVarMute
,
b_is_muted
);
SET_BOOL
(
m_cVarMute
,
b_is_muted
);
}
}
...
@@ -800,7 +800,7 @@ void VlcProc::init_variables()
...
@@ -800,7 +800,7 @@ void VlcProc::init_variables()
audio_volume_t
volume
=
aout_VolumeGet
(
pPlaylist
);
audio_volume_t
volume
=
aout_VolumeGet
(
pPlaylist
);
SET_VOLUME
(
m_cVarVolume
,
volume
,
false
);
SET_VOLUME
(
m_cVarVolume
,
volume
,
false
);
bool
b_is_muted
=
aout_
IsMuted
(
VLC_OBJECT
(
pPlaylist
)
)
;
bool
b_is_muted
=
aout_
MuteGet
(
pPlaylist
)
>
0
;
SET_BOOL
(
m_cVarMute
,
b_is_muted
);
SET_BOOL
(
m_cVarMute
,
b_is_muted
);
update_equalizer
();
update_equalizer
();
...
...
src/audio_output/intf.c
View file @
035898d1
...
@@ -195,10 +195,12 @@ int aout_MuteToggle (vlc_object_t *obj)
...
@@ -195,10 +195,12 @@ int aout_MuteToggle (vlc_object_t *obj)
return
commitVolume
(
obj
,
aout
,
vol
,
mute
);
return
commitVolume
(
obj
,
aout
,
vol
,
mute
);
}
}
#undef aout_MuteGet
/**
/**
* Gets the output mute status.
* Gets the output mute status.
* \return 0 if not muted, 1 if muted, -1 if undefined.
*/
*/
bool
aout_IsMuted
(
vlc_object_t
*
obj
)
int
aout_MuteGet
(
vlc_object_t
*
obj
)
{
{
audio_output_t
*
aout
;
audio_output_t
*
aout
;
bool
mute
;
bool
mute
;
...
...
src/libvlccore.sym
View file @
035898d1
...
@@ -19,7 +19,7 @@ aout_VolumeSet
...
@@ -19,7 +19,7 @@ aout_VolumeSet
aout_VolumeUp
aout_VolumeUp
aout_MuteToggle
aout_MuteToggle
aout_MuteSet
aout_MuteSet
aout_
IsMuted
aout_
MuteGet
aout_VolumeSoftInit
aout_VolumeSoftInit
aout_VolumeHardInit
aout_VolumeHardInit
block_Alloc
block_Alloc
...
...
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