]> git.sesse.net Git - vlc/blob - src/control/audio.c
src/control: a bit of cleanup here and there
[vlc] / src / control / audio.c
1 /*****************************************************************************
2  * libvlc_audio.c: New libvlc audio control API
3  *****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Filippo Carone <filippo@carone.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include <libvlc_internal.h>
25 #include <vlc/libvlc.h>
26
27 #include <audio_output.h> /* for audio_volume_t, AOUT_VOLUME_MAX */
28 #include <vlc/intf.h>
29
30 /*****************************************************************************
31  * libvlc_audio_get_mute : Get the volume state, true if muted
32  *****************************************************************************/
33 void libvlc_audio_toggle_mute( libvlc_instance_t *p_instance,
34                                libvlc_exception_t *p_e )
35 {
36     aout_VolumeMute( p_instance->p_vlc, NULL );
37 }
38
39 vlc_bool_t libvlc_audio_get_mute( libvlc_instance_t *p_instance,
40                                   libvlc_exception_t *p_e )
41 {
42     /*
43      * If the volume level is 0, then the channel is muted
44      */
45     audio_volume_t i_volume;
46
47     i_volume = libvlc_audio_get_volume(p_instance, p_e);
48     if ( i_volume == 0 )
49         return VLC_TRUE;
50     return VLC_FALSE;
51 }
52
53 void libvlc_audio_set_mute( libvlc_instance_t *p_instance, vlc_bool_t status,
54                             libvlc_exception_t *p_e )
55 {
56     if ( status )
57     {
58         /* Check if the volume is already muted */
59         if (! libvlc_audio_get_volume( p_instance, p_e ) )
60         {
61             return;
62         }
63         aout_VolumeMute( p_instance->p_vlc, NULL );
64     }
65     else
66     {
67         /* the aout_VolumeMute is a toggle function, so this is enough. */
68         aout_VolumeMute( p_instance->p_vlc, NULL );
69     }
70 }
71
72 /*****************************************************************************
73  * libvlc_audio_get_volume : Get the current volume (range 0-200 %)
74  *****************************************************************************/
75 int libvlc_audio_get_volume( libvlc_instance_t *p_instance,
76                              libvlc_exception_t *p_e )
77 {
78     audio_volume_t i_volume;
79
80     aout_VolumeGet( p_instance->p_vlc, &i_volume );
81
82     return i_volume*200/AOUT_VOLUME_MAX;
83 }
84
85
86 /*****************************************************************************
87  * libvlc_audio_set_volume : Set the current volume
88  *****************************************************************************/
89 void libvlc_audio_set_volume( libvlc_instance_t *p_instance, int i_volume,
90                               libvlc_exception_t *p_e )
91 {
92     if( i_volume >= 0 && i_volume <= 200 )
93     {
94         i_volume = i_volume * AOUT_VOLUME_MAX / 200;
95         aout_VolumeSet( p_instance->p_vlc, i_volume );
96     }
97     else
98     {
99         libvlc_exception_raise( p_e, "Volume out of range" );
100     }
101 }
102