[demux/avi] Enable dirac support (Set PTS on first output block)
[vlc/davidf-public.git] / src / control / audio.c
blob6bacd3ce822011c750989606f0999635d5d7a96d
1 /*****************************************************************************
2 * libvlc_audio.c: New libvlc audio control API
3 *****************************************************************************
4 * Copyright (C) 2006 the VideoLAN team
5 * $Id$
7 * Authors: Filippo Carone <filippo@carone.org>
8 * Jean-Paul Saman <jpsaman _at_ m2x _dot_ nl>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #include "libvlc_internal.h"
26 #include <vlc/libvlc.h>
28 #include <vlc_input.h>
29 #include <vlc_aout.h>
33 * Remember to release the returned aout_instance_t since it is locked at
34 * the end of this function.
36 static aout_instance_t *GetAOut( libvlc_instance_t *p_instance,
37 libvlc_exception_t *p_exception )
39 aout_instance_t * p_aout = NULL;
41 p_aout = vlc_object_find( p_instance->p_libvlc_int, VLC_OBJECT_AOUT, FIND_CHILD );
42 if( !p_aout )
44 libvlc_exception_raise( p_exception, "No active audio output" );
45 return NULL;
48 return p_aout;
52 /*****************************************************************************
53 * libvlc_audio_get_mute : Get the volume state, true if muted
54 *****************************************************************************/
55 void libvlc_audio_toggle_mute( libvlc_instance_t *p_instance,
56 libvlc_exception_t *p_e )
58 VLC_UNUSED(p_e);
60 aout_VolumeMute( p_instance->p_libvlc_int, NULL );
63 int libvlc_audio_get_mute( libvlc_instance_t *p_instance,
64 libvlc_exception_t *p_e )
67 * If the volume level is 0, then the channel is muted
69 audio_volume_t i_volume;
71 i_volume = libvlc_audio_get_volume(p_instance, p_e);
72 if ( i_volume == 0 )
73 return true;
74 return false;
77 void libvlc_audio_set_mute( libvlc_instance_t *p_instance, int mute,
78 libvlc_exception_t *p_e )
80 if ( mute ^ libvlc_audio_get_mute( p_instance, p_e ) )
82 aout_VolumeMute( p_instance->p_libvlc_int, NULL );
86 /*****************************************************************************
87 * libvlc_audio_get_volume : Get the current volume (range 0-200 %)
88 *****************************************************************************/
89 int libvlc_audio_get_volume( libvlc_instance_t *p_instance,
90 libvlc_exception_t *p_e )
92 VLC_UNUSED(p_e);
94 audio_volume_t i_volume;
96 aout_VolumeGet( p_instance->p_libvlc_int, &i_volume );
98 return (i_volume*200+AOUT_VOLUME_MAX/2)/AOUT_VOLUME_MAX;
102 /*****************************************************************************
103 * libvlc_audio_set_volume : Set the current volume
104 *****************************************************************************/
105 void libvlc_audio_set_volume( libvlc_instance_t *p_instance, int i_volume,
106 libvlc_exception_t *p_e )
108 if( i_volume >= 0 && i_volume <= 200 )
110 i_volume = (i_volume * AOUT_VOLUME_MAX + 100) / 200;
112 aout_VolumeSet( p_instance->p_libvlc_int, i_volume );
114 else
116 libvlc_exception_raise( p_e, "Volume out of range" );
120 /*****************************************************************************
121 * libvlc_audio_get_track_count : Get the number of available audio tracks
122 *****************************************************************************/
123 int libvlc_audio_get_track_count( libvlc_media_player_t *p_mi,
124 libvlc_exception_t *p_e )
126 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi, p_e );
127 vlc_value_t val_list;
129 if( !p_input_thread )
130 return -1;
132 var_Change( p_input_thread, "audio-es", VLC_VAR_GETCHOICES, &val_list, NULL );
133 vlc_object_release( p_input_thread );
134 return val_list.p_list->i_count;
137 /*****************************************************************************
138 * libvlc_audio_get_track_description : Get the description of available audio tracks
139 *****************************************************************************/
140 libvlc_track_description_t *
141 libvlc_audio_get_track_description( libvlc_media_player_t *p_mi,
142 libvlc_exception_t *p_e )
144 return libvlc_get_track_description( p_mi, "audio-es", p_e);
147 /*****************************************************************************
148 * libvlc_audio_get_track : Get the current audio track
149 *****************************************************************************/
150 int libvlc_audio_get_track( libvlc_media_player_t *p_mi,
151 libvlc_exception_t *p_e )
153 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi, p_e );
154 vlc_value_t val_list;
155 vlc_value_t val;
156 int i_track = -1;
157 int i_ret = -1;
158 int i;
160 if( !p_input_thread )
161 return -1;
163 i_ret = var_Get( p_input_thread, "audio-es", &val );
164 if( i_ret < 0 )
166 libvlc_exception_raise( p_e, "Getting Audio track information failed" );
167 vlc_object_release( p_input_thread );
168 return i_ret;
171 var_Change( p_input_thread, "audio-es", VLC_VAR_GETCHOICES, &val_list, NULL );
172 for( i = 0; i < val_list.p_list->i_count; i++ )
174 vlc_value_t track_val = val_list.p_list->p_values[i];
175 if( track_val.i_int == val.i_int )
177 i_track = i;
178 break;
181 vlc_object_release( p_input_thread );
182 return i_track;
185 /*****************************************************************************
186 * libvlc_audio_set_track : Set the current audio track
187 *****************************************************************************/
188 void libvlc_audio_set_track( libvlc_media_player_t *p_mi, int i_track,
189 libvlc_exception_t *p_e )
191 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi, p_e );
192 vlc_value_t val_list;
193 vlc_value_t newval;
194 int i_ret = -1;
196 if( !p_input_thread )
197 return;
199 var_Change( p_input_thread, "audio-es", VLC_VAR_GETCHOICES, &val_list, NULL );
200 if( (i_track < 0) && (i_track > val_list.p_list->i_count) )
202 libvlc_exception_raise( p_e, "Audio track out of range" );
203 vlc_object_release( p_input_thread );
204 return;
207 newval = val_list.p_list->p_values[i_track];
208 i_ret = var_Set( p_input_thread, "audio-es", newval );
209 if( i_ret < 0 )
211 libvlc_exception_raise( p_e, "Setting audio track failed" );
213 vlc_object_release( p_input_thread );
216 /*****************************************************************************
217 * libvlc_audio_get_channel : Get the current audio channel
218 *****************************************************************************/
219 int libvlc_audio_get_channel( libvlc_instance_t *p_instance,
220 libvlc_exception_t *p_e )
222 aout_instance_t *p_aout = GetAOut( p_instance, p_e );
223 if( p_aout )
225 vlc_value_t val;
227 var_Get( p_aout, "audio-channels", &val );
228 vlc_object_release( p_aout );
229 return val.i_int;
231 return -1;
234 /*****************************************************************************
235 * libvlc_audio_set_channel : Set the current audio channel
236 *****************************************************************************/
237 void libvlc_audio_set_channel( libvlc_instance_t *p_instance, int i_channel,
238 libvlc_exception_t *p_e )
240 aout_instance_t *p_aout = GetAOut( p_instance, p_e );
241 if( p_aout )
243 vlc_value_t val;
244 int i_ret = -1;
246 val.i_int = i_channel;
247 switch( i_channel )
249 case AOUT_VAR_CHAN_RSTEREO:
250 case AOUT_VAR_CHAN_STEREO:
251 case AOUT_VAR_CHAN_LEFT:
252 case AOUT_VAR_CHAN_RIGHT:
253 case AOUT_VAR_CHAN_DOLBYS:
254 i_ret = var_Set( p_aout, "audio-channels", val );
255 if( i_ret < 0 )
257 libvlc_exception_raise( p_e, "Failed setting audio channel" );
258 vlc_object_release( p_aout );
259 return;
261 vlc_object_release( p_aout );
262 return; /* Found */
263 default:
264 libvlc_exception_raise( p_e, "Audio channel out of range" );
265 break;
267 vlc_object_release( p_aout );