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
604adb7a
Commit
604adb7a
authored
Jul 09, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aout_VolumeMute -> aout_ToggleMute
parent
385b4ac8
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
13 additions
and
13 deletions
+13
-13
include/vlc_aout.h
include/vlc_aout.h
+2
-2
modules/control/gestures.c
modules/control/gestures.c
+1
-1
modules/control/hotkeys.c
modules/control/hotkeys.c
+1
-1
modules/gui/beos/InterfaceWindow.cpp
modules/gui/beos/InterfaceWindow.cpp
+1
-1
modules/gui/qt4/actions_manager.cpp
modules/gui/qt4/actions_manager.cpp
+1
-1
modules/gui/qt4/components/controller_widget.cpp
modules/gui/qt4/components/controller_widget.cpp
+1
-1
modules/gui/skins2/commands/cmd_input.cpp
modules/gui/skins2/commands/cmd_input.cpp
+1
-1
src/audio_output/intf.c
src/audio_output/intf.c
+2
-2
src/control/audio.c
src/control/audio.c
+2
-2
src/libvlccore.sym
src/libvlccore.sym
+1
-1
No files found.
include/vlc_aout.h
View file @
604adb7a
...
...
@@ -451,8 +451,8 @@ VLC_EXPORT( int, __aout_VolumeInfos, ( vlc_object_t *, audio_volume_t * ) );
VLC_EXPORT
(
int
,
__aout_VolumeUp
,
(
vlc_object_t
*
,
int
,
audio_volume_t
*
)
);
#define aout_VolumeDown(a, b, c) __aout_VolumeDown(VLC_OBJECT(a), b, c)
VLC_EXPORT
(
int
,
__aout_VolumeDown
,
(
vlc_object_t
*
,
int
,
audio_volume_t
*
)
);
#define aout_
VolumeMute(a, b) __aout_Volum
eMute(VLC_OBJECT(a), b)
VLC_EXPORT
(
int
,
__aout_
Volum
eMute
,
(
vlc_object_t
*
,
audio_volume_t
*
)
);
#define aout_
ToggleMute(a, b) __aout_Toggl
eMute(VLC_OBJECT(a), b)
VLC_EXPORT
(
int
,
__aout_
Toggl
eMute
,
(
vlc_object_t
*
,
audio_volume_t
*
)
);
VLC_EXPORT
(
int
,
aout_FindAndRestart
,
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
,
vlc_value_t
,
void
*
)
);
VLC_EXPORT
(
int
,
aout_ChannelsRestart
,
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
,
vlc_value_t
,
void
*
)
);
...
...
modules/control/gestures.c
View file @
604adb7a
...
...
@@ -286,7 +286,7 @@ static void RunIntf( intf_thread_t *p_intf )
case
GESTURE
(
UP
,
DOWN
,
NONE
,
NONE
):
case
GESTURE
(
DOWN
,
UP
,
NONE
,
NONE
):
msg_Dbg
(
p_intf
,
"Mute sound"
);
aout_
Volum
eMute
(
p_intf
,
NULL
);
aout_
Toggl
eMute
(
p_intf
,
NULL
);
break
;
case
GESTURE
(
UP
,
RIGHT
,
NONE
,
NONE
):
...
...
modules/control/hotkeys.c
View file @
604adb7a
...
...
@@ -197,7 +197,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
case
ACTIONID_VOL_MUTE
:
{
audio_volume_t
i_newvol
=
-
1
;
aout_
Volum
eMute
(
p_intf
,
&
i_newvol
);
aout_
Toggl
eMute
(
p_intf
,
&
i_newvol
);
if
(
p_vout
)
{
if
(
i_newvol
==
0
)
...
...
modules/gui/beos/InterfaceWindow.cpp
View file @
604adb7a
...
...
@@ -542,7 +542,7 @@ void InterfaceWindow::MessageReceived( BMessage * p_message )
break
;
case
VOLUME_MUTE
:
aout_
Volum
eMute
(
p_intf
,
NULL
);
aout_
Toggl
eMute
(
p_intf
,
NULL
);
break
;
case
SELECT_CHANNEL
:
...
...
modules/gui/qt4/actions_manager.cpp
View file @
604adb7a
...
...
@@ -170,7 +170,7 @@ void ActionsManager::frame()
void
ActionsManager
::
toggleMuteAudio
()
{
aout_
Volum
eMute
(
p_intf
,
NULL
);
aout_
Toggl
eMute
(
p_intf
,
NULL
);
}
void
ActionsManager
::
AudioUp
()
...
...
modules/gui/qt4/components/controller_widget.cpp
View file @
604adb7a
...
...
@@ -184,7 +184,7 @@ bool SoundWidget::eventFilter( QObject *obj, QEvent *e )
}
else
{
aout_
Volum
eMute
(
p_intf
,
NULL
);
aout_
Toggl
eMute
(
p_intf
,
NULL
);
}
e
->
accept
();
return
true
;
...
...
modules/gui/skins2/commands/cmd_input.cpp
View file @
604adb7a
...
...
@@ -111,7 +111,7 @@ void CmdFaster::execute()
void
CmdMute
::
execute
()
{
aout_
Volum
eMute
(
getIntf
(),
NULL
);
aout_
Togl
eMute
(
getIntf
(),
NULL
);
}
...
...
src/audio_output/intf.c
View file @
604adb7a
...
...
@@ -228,12 +228,12 @@ int __aout_VolumeDown( vlc_object_t * p_object, int i_nb_steps,
}
/*****************************************************************************
* aout_
Volum
eMute : Mute/un-mute the output volume
* aout_
Toggl
eMute : Mute/un-mute the output volume
*****************************************************************************
* If pi_volume != NULL, *pi_volume will contain the volume at the end of the
* function (muted => 0).
*****************************************************************************/
int
__aout_
Volum
eMute
(
vlc_object_t
*
p_object
,
audio_volume_t
*
pi_volume
)
int
__aout_
Toggl
eMute
(
vlc_object_t
*
p_object
,
audio_volume_t
*
pi_volume
)
{
int
i_result
;
audio_volume_t
i_volume
;
...
...
src/control/audio.c
View file @
604adb7a
...
...
@@ -321,7 +321,7 @@ void libvlc_audio_toggle_mute( libvlc_instance_t *p_instance,
{
VLC_UNUSED
(
p_e
);
aout_
Volum
eMute
(
p_instance
->
p_libvlc_int
,
NULL
);
aout_
Toggl
eMute
(
p_instance
->
p_libvlc_int
,
NULL
);
}
int
libvlc_audio_get_mute
(
libvlc_instance_t
*
p_instance
,
...
...
@@ -335,7 +335,7 @@ void libvlc_audio_set_mute( libvlc_instance_t *p_instance, int mute,
{
if
(
mute
^
libvlc_audio_get_mute
(
p_instance
,
p_e
)
)
{
aout_
Volum
eMute
(
p_instance
->
p_libvlc_int
,
NULL
);
aout_
Toggl
eMute
(
p_instance
->
p_libvlc_int
,
NULL
);
}
}
...
...
src/libvlccore.sym
View file @
604adb7a
...
...
@@ -30,7 +30,7 @@ aout_VisualChange
__aout_VolumeDown
__aout_VolumeGet
__aout_VolumeInfos
__aout_
Volum
eMute
__aout_
Toggl
eMute
aout_VolumeNoneInit
__aout_VolumeSet
aout_VolumeSoftInit
...
...
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