1 /*****************************************************************************
2 * intf.c : audio output API towards the interface modules
3 *****************************************************************************
4 * Copyright (C) 2002 VideoLAN
5 * $Id: intf.c,v 1.13 2003/01/16 13:22:30 hartman Exp $
7 * Authors: Christophe Massiot <massiot@via.ecp.fr>
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
22 *****************************************************************************/
24 /*****************************************************************************
26 *****************************************************************************/
27 #include <stdlib.h> /* calloc(), malloc(), free() */
32 #include "audio_output.h"
33 #include "aout_internal.h"
39 * The hardware volume cannot be set if the output module gets deleted, so
40 * we must take the mixer lock. The software volume cannot be set while the
41 * mixer is running, so we need the mixer lock (too).
43 * Here is a schematic of the i_volume range :
45 * |------------------------------+---------------------------------------|
48 * Between 0 and pi_soft, the volume is done in hardware by the output
49 * module. Above, the output module will change p_aout->mixer.i_multiplier
50 * (done in software). This scaling may result * in cropping errors and
51 * should be avoided as much as possible.
53 * It is legal to have *pi_soft == 0, and do everything in software.
54 * It is also legal to have *pi_soft == 1024, and completely avoid
55 * software scaling. However, some streams (esp. A/52) are encoded with
56 * a very low volume and users may complain.
59 /*****************************************************************************
60 * aout_VolumeGet : get the volume of the output device
61 *****************************************************************************/
62 int aout_VolumeGet( aout_instance_t * p_aout, audio_volume_t * pi_volume )
66 vlc_mutex_lock( &p_aout->mixer_lock );
68 if ( p_aout->mixer.b_error )
71 /* The output module is destroyed. */
72 vlc_mutex_unlock( &p_aout->mixer_lock );
73 i = config_GetInt( p_aout, "volume" );
74 if (pi_volume != NULL ) *pi_volume = (audio_volume_t)i;
78 i_result = p_aout->output.pf_volume_get( p_aout, pi_volume );
80 vlc_mutex_unlock( &p_aout->mixer_lock );
84 /*****************************************************************************
85 * aout_VolumeSet : set the volume of the output device
86 *****************************************************************************/
87 int aout_VolumeSet( aout_instance_t * p_aout, audio_volume_t i_volume )
91 vlc_mutex_lock( &p_aout->mixer_lock );
93 if ( p_aout->mixer.b_error )
96 /* The output module is destroyed. */
97 vlc_mutex_unlock( &p_aout->mixer_lock );
98 config_PutInt( p_aout, "volume", i_volume );
102 i_result = p_aout->output.pf_volume_set( p_aout, i_volume );
104 vlc_mutex_unlock( &p_aout->mixer_lock );
108 /*****************************************************************************
109 * aout_VolumeInfos : get the boundary pi_soft
110 *****************************************************************************/
111 int aout_VolumeInfos( aout_instance_t * p_aout, audio_volume_t * pi_soft )
115 vlc_mutex_lock( &p_aout->mixer_lock );
117 if ( p_aout->mixer.b_error )
119 /* The output module is destroyed. */
120 vlc_mutex_unlock( &p_aout->mixer_lock );
121 msg_Err( p_aout, "VolumeInfos called without output module" );
125 i_result = p_aout->output.pf_volume_infos( p_aout, pi_soft );
127 vlc_mutex_unlock( &p_aout->mixer_lock );
131 /*****************************************************************************
132 * aout_VolumeUp : raise the output volume
133 *****************************************************************************
134 * If pi_volume != NULL, *pi_volume will contain the volume at the end of the
136 *****************************************************************************/
137 int aout_VolumeUp( aout_instance_t * p_aout, int i_nb_steps,
138 audio_volume_t * pi_volume )
141 audio_volume_t i_volume;
143 vlc_mutex_lock( &p_aout->mixer_lock );
145 if ( p_aout->mixer.b_error )
148 /* The output module is destroyed. */
149 vlc_mutex_unlock( &p_aout->mixer_lock );
150 i = config_GetInt( p_aout, "volume" );
151 i += AOUT_VOLUME_STEP * i_nb_steps;
152 if ( i > AOUT_VOLUME_MAX )
156 config_PutInt( p_aout, "volume", i );
157 if ( pi_volume != NULL ) *pi_volume = (audio_volume_t)i;
161 if ( p_aout->output.pf_volume_get( p_aout, &i_volume ) )
163 vlc_mutex_unlock( &p_aout->mixer_lock );
167 i_volume += AOUT_VOLUME_STEP * i_nb_steps;
168 if ( i_volume > AOUT_VOLUME_MAX ) i_volume = AOUT_VOLUME_MAX;
170 i_result = p_aout->output.pf_volume_set( p_aout, i_volume );
172 vlc_mutex_unlock( &p_aout->mixer_lock );
174 if ( pi_volume != NULL ) *pi_volume = i_volume;
178 /*****************************************************************************
179 * aout_VolumeDown : lower the output volume
180 *****************************************************************************
181 * If pi_volume != NULL, *pi_volume will contain the volume at the end of the
183 *****************************************************************************/
184 int aout_VolumeDown( aout_instance_t * p_aout, int i_nb_steps,
185 audio_volume_t * pi_volume )
188 audio_volume_t i_volume;
190 vlc_mutex_lock( &p_aout->mixer_lock );
192 if ( p_aout->mixer.b_error )
195 /* The output module is destroyed. */
196 vlc_mutex_unlock( &p_aout->mixer_lock );
197 i = config_GetInt( p_aout, "volume" );
198 i -= AOUT_VOLUME_STEP * i_nb_steps;
203 config_PutInt( p_aout, "volume", i );
204 if ( pi_volume != NULL ) *pi_volume = (audio_volume_t)i;
208 if ( p_aout->output.pf_volume_get( p_aout, &i_volume ) )
210 vlc_mutex_unlock( &p_aout->mixer_lock );
214 if ( i_volume < AOUT_VOLUME_STEP * i_nb_steps )
217 i_volume -= AOUT_VOLUME_STEP * i_nb_steps;
219 i_result = p_aout->output.pf_volume_set( p_aout, i_volume );
221 vlc_mutex_unlock( &p_aout->mixer_lock );
223 if ( pi_volume != NULL ) *pi_volume = i_volume;
227 /*****************************************************************************
228 * aout_VolumeMute : Mute/un-mute the output volume
229 *****************************************************************************
230 * If pi_volume != NULL, *pi_volume will contain the volume at the end of the
231 * function (muted => 0).
232 *****************************************************************************/
233 int aout_VolumeMute( aout_instance_t * p_aout, audio_volume_t * pi_volume )
236 audio_volume_t i_volume;
238 vlc_mutex_lock( &p_aout->mixer_lock );
240 if ( p_aout->mixer.b_error )
242 /* The output module is destroyed. */
243 vlc_mutex_unlock( &p_aout->mixer_lock );
244 config_PutInt( p_aout, "volume", 0 );
245 if ( pi_volume != NULL ) *pi_volume = 0;
249 if ( p_aout->output.pf_volume_get( p_aout, &i_volume ) )
251 vlc_mutex_unlock( &p_aout->mixer_lock );
257 i_volume = p_aout->output.i_saved_volume;
261 p_aout->output.i_saved_volume = i_volume;
265 i_result = p_aout->output.pf_volume_set( p_aout, i_volume );
267 vlc_mutex_unlock( &p_aout->mixer_lock );
269 if ( pi_volume != NULL ) *pi_volume = i_volume;
274 * The next functions are not supposed to be called by the interface, but
275 * are placeholders for software-only scaling.
278 /* Meant to be called by the output plug-in's Open(). */
279 void aout_VolumeSoftInit( aout_instance_t * p_aout )
283 p_aout->output.pf_volume_infos = aout_VolumeSoftInfos;
284 p_aout->output.pf_volume_get = aout_VolumeSoftGet;
285 p_aout->output.pf_volume_set = aout_VolumeSoftSet;
287 i_volume = config_GetInt( p_aout, "volume" );
290 i_volume = AOUT_VOLUME_DEFAULT;
292 else if ( i_volume > AOUT_VOLUME_MAX )
294 i_volume = AOUT_VOLUME_MAX;
297 aout_VolumeSoftSet( p_aout, (audio_volume_t)i_volume );
300 /* Placeholder for pf_volume_infos(). */
301 int aout_VolumeSoftInfos( aout_instance_t * p_aout, audio_volume_t * pi_soft )
307 /* Placeholder for pf_volume_get(). */
308 int aout_VolumeSoftGet( aout_instance_t * p_aout, audio_volume_t * pi_volume )
310 *pi_volume = p_aout->output.i_volume;
315 /* Placeholder for pf_volume_set(). */
316 int aout_VolumeSoftSet( aout_instance_t * p_aout, audio_volume_t i_volume )
318 aout_MixerMultiplierSet( p_aout, (float)i_volume / AOUT_VOLUME_DEFAULT );
319 p_aout->output.i_volume = i_volume;
324 * The next functions are not supposed to be called by the interface, but
325 * are placeholders for unsupported scaling.
328 /* Meant to be called by the output plug-in's Open(). */
329 void aout_VolumeNoneInit( aout_instance_t * p_aout )
331 p_aout->output.pf_volume_infos = aout_VolumeNoneInfos;
332 p_aout->output.pf_volume_get = aout_VolumeNoneGet;
333 p_aout->output.pf_volume_set = aout_VolumeNoneSet;
336 /* Placeholder for pf_volume_infos(). */
337 int aout_VolumeNoneInfos( aout_instance_t * p_aout, audio_volume_t * pi_soft )
342 /* Placeholder for pf_volume_get(). */
343 int aout_VolumeNoneGet( aout_instance_t * p_aout, audio_volume_t * pi_volume )
348 /* Placeholder for pf_volume_set(). */
349 int aout_VolumeNoneSet( aout_instance_t * p_aout, audio_volume_t i_volume )
356 * Pipelines management
359 /*****************************************************************************
360 * aout_Restart : re-open the output device and rebuild the input and output
362 *****************************************************************************
363 * This function is used whenever the parameters of the output plug-in are
364 * changed (eg. selecting S/PDIF or PCM).
365 *****************************************************************************/
366 int aout_Restart( aout_instance_t * p_aout )
369 vlc_bool_t b_error = 0;
371 vlc_mutex_lock( &p_aout->mixer_lock );
373 if ( p_aout->i_nb_inputs == 0 )
375 vlc_mutex_unlock( &p_aout->mixer_lock );
376 msg_Err( p_aout, "no decoder thread" );
380 /* Lock all inputs. */
381 for ( i = 0; i < p_aout->i_nb_inputs; i++ )
383 vlc_mutex_lock( &p_aout->pp_inputs[i]->lock );
384 aout_InputDelete( p_aout, p_aout->pp_inputs[i] );
387 aout_MixerDelete( p_aout );
389 /* Re-open the output plug-in. */
390 aout_OutputDelete( p_aout );
392 if ( aout_OutputNew( p_aout, &p_aout->pp_inputs[0]->input ) == -1 )
394 /* Release all locks and report the error. */
395 for ( i = 0; i < p_aout->i_nb_inputs; i++ )
397 vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );
399 vlc_mutex_unlock( &p_aout->mixer_lock );
403 if ( aout_MixerNew( p_aout ) == -1 )
405 aout_OutputDelete( p_aout );
406 for ( i = 0; i < p_aout->i_nb_inputs; i++ )
408 vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );
410 vlc_mutex_unlock( &p_aout->mixer_lock );
414 /* Re-open all inputs. */
415 for ( i = 0; i < p_aout->i_nb_inputs; i++ )
417 aout_input_t * p_input = p_aout->pp_inputs[i];
419 b_error |= aout_InputNew( p_aout, p_input );
420 vlc_mutex_unlock( &p_input->lock );
423 vlc_mutex_unlock( &p_aout->mixer_lock );
428 /*****************************************************************************
429 * aout_FindAndRestart : find the audio output instance and restart
430 *****************************************************************************
431 * This is used for callbacks of the configuration variables, and we believe
432 * that when those are changed, it is a significant change which implies
433 * rebuilding the audio-device and audio-channels variables.
434 *****************************************************************************/
435 void aout_FindAndRestart( vlc_object_t * p_this )
437 aout_instance_t * p_aout = vlc_object_find( p_this, VLC_OBJECT_AOUT,
440 if ( p_aout == NULL ) return;
442 if ( var_Type( p_aout, "audio-device" ) != 0 )
444 var_Destroy( p_aout, "audio-device" );
446 if ( var_Type( p_aout, "audio-channels" ) != 0 )
448 var_Destroy( p_aout, "audio-channels" );
451 aout_Restart( p_aout );
452 vlc_object_release( p_aout );
455 /*****************************************************************************
456 * aout_ChannelsRestart : change the audio device or channels and restart
457 *****************************************************************************/
458 int aout_ChannelsRestart( vlc_object_t * p_this, const char * psz_variable,
459 vlc_value_t old_value, vlc_value_t new_value,
462 aout_instance_t * p_aout = (aout_instance_t *)p_this;
464 if ( !strcmp( psz_variable, "audio-device" ) )
466 /* This is supposed to be a significant change and supposes
467 * rebuilding the channel choices. */
468 if ( var_Type( p_aout, "audio-channels" ) >= 0 )
470 var_Destroy( p_aout, "audio-channels" );
473 aout_Restart( p_aout );