]> git.sesse.net Git - vlc/blob - src/audio_output/intf.c
03da3e6b57ddda151a252e0b956b7e180051933e
[vlc] / src / audio_output / intf.c
1 /*****************************************************************************
2  * intf.c : audio output API towards the interface modules
3  *****************************************************************************
4  * Copyright (C) 2002-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33
34 #include <stdio.h>
35 #include <stdlib.h>                            /* calloc(), malloc(), free() */
36 #include <string.h>
37
38 #include <vlc_aout.h>
39 #include "aout_internal.h"
40
41 #include <vlc_playlist.h>
42
43 static aout_instance_t *findAout (vlc_object_t *obj)
44 {
45     input_thread_t *p_input = playlist_CurrentInput (pl_Get (obj));
46     if (p_input == NULL)
47        return NULL;
48
49     aout_instance_t *p_aout = input_GetAout (p_input);
50     vlc_object_release (p_input);
51     return p_aout;
52 }
53 #define findAout(o) findAout(VLC_OBJECT(o))
54
55 /*
56  * Volume management
57  *
58  * The hardware volume cannot be set if the output module gets deleted, so
59  * we must take the mixer lock. The software volume cannot be set while the
60  * mixer is running, so we need the mixer lock (too).
61  *
62  * Here is a schematic of the i_volume range :
63  *
64  * |------------------------------+---------------------------------------|
65  * 0                           pi_soft                                   1024
66  *
67  * Between 0 and pi_soft, the volume is done in hardware by the output
68  * module. Above, the output module will change p_aout->mixer.i_multiplier
69  * (done in software). This scaling may result * in cropping errors and
70  * should be avoided as much as possible.
71  *
72  * It is legal to have *pi_soft == 0, and do everything in software.
73  * It is also legal to have *pi_soft == 1024, and completely avoid
74  * software scaling. However, some streams (esp. A/52) are encoded with
75  * a very low volume and users may complain.
76  */
77
78 enum {
79     SET_MUTE=1,
80     SET_VOLUME=2,
81     INCREMENT_VOLUME=4,
82     TOGGLE_MUTE=8
83 };
84 /*****************************************************************************
85  * doVolumeChanges : handle all volume changes. Internal use only to ease
86  *                   variables locking.
87  *****************************************************************************/
88 int doVolumeChanges( unsigned action, vlc_object_t * p_object, int i_nb_steps,
89                 audio_volume_t i_volume, audio_volume_t * i_return_volume,
90                 bool b_mute )
91 {
92     int i_result = VLC_SUCCESS;
93     int i_volume_step = 1, i_new_volume = 0;
94     bool b_var_mute = false;
95     aout_instance_t *p_aout = findAout( p_object );
96
97     if ( p_aout ) aout_lock_volume( p_aout );
98
99     b_var_mute = (bool)var_GetBool( p_object->p_libvlc, "volume-muted");
100
101     const bool b_unmute_condition = ( /* Also unmute on increments */
102                     ( action == INCREMENT_VOLUME )
103                     || /* On explicit unmute */
104                     ( ( action == SET_MUTE ) && ( b_var_mute && !b_mute ) )
105                     || /* On toggle from muted */
106                     ( ( action == TOGGLE_MUTE ) && b_var_mute ) );
107
108     const bool b_mute_condition = ( !b_var_mute
109                     && ( /* explicit */
110                         ( ( action == SET_MUTE ) && b_mute )
111                         || /* or toggle */
112                         ( action == TOGGLE_MUTE )
113                     ));
114
115     /* On UnMute */
116     if ( b_unmute_condition )
117     {
118         /* Restore saved volume */
119         var_Create( p_object->p_libvlc, "saved-volume", VLC_VAR_INTEGER );
120         i_volume = (audio_volume_t)var_GetInteger( p_object->p_libvlc,
121                                                    "saved-volume" );
122         var_SetBool( p_object->p_libvlc, "volume-muted", false );
123     }
124     else if ( b_mute_condition )
125     {
126         /* We need an initial value to backup later */
127         i_volume = config_GetInt( p_object, "volume" );
128     }
129
130     if ( action == INCREMENT_VOLUME )
131     {
132         i_volume_step = config_GetInt( p_object->p_libvlc, "volume-step" );
133
134         if ( !b_unmute_condition )
135             i_volume = config_GetInt( p_object, "volume" );
136
137         i_new_volume = (int) i_volume + i_volume_step * i_nb_steps;
138
139         if ( i_new_volume > AOUT_VOLUME_MAX )
140             i_volume = AOUT_VOLUME_MAX;
141         else if ( i_new_volume < AOUT_VOLUME_MIN )
142             i_volume = AOUT_VOLUME_MIN;
143         else
144             i_volume = i_new_volume;
145
146         if ( i_return_volume != NULL )
147             *i_return_volume = i_volume;
148     }
149
150     var_Create( p_object->p_libvlc, "saved-volume", VLC_VAR_INTEGER );
151     var_SetInteger( p_object->p_libvlc, "saved-volume" , i_volume );
152
153     /* On Mute */
154     if ( b_mute_condition )
155     {
156         i_volume = AOUT_VOLUME_MIN;
157         var_SetBool( p_object->p_libvlc, "volume-muted", true );
158     }
159
160     /* Commit volume changes */
161     config_PutInt( p_object, "volume", i_volume );
162
163     if ( p_aout )
164     {
165         aout_lock_mixer( p_aout );
166         aout_lock_input_fifos( p_aout );
167             if ( p_aout->p_mixer )
168                 i_result = p_aout->output.pf_volume_set( p_aout, i_volume );
169         aout_unlock_input_fifos( p_aout );
170         aout_unlock_mixer( p_aout );
171     }
172
173     /* trigger callbacks */
174     var_TriggerCallback( p_object->p_libvlc, "volume-change");
175     if ( p_aout )
176     {
177         var_SetBool( p_aout, "intf-change", true );
178         aout_unlock_volume( p_aout );
179         vlc_object_release( p_aout );
180     }
181
182     return i_result;
183 }
184
185 #undef aout_VolumeGet
186 /*****************************************************************************
187  * aout_VolumeGet : get the volume of the output device
188  *****************************************************************************/
189 int aout_VolumeGet( vlc_object_t * p_object, audio_volume_t * pi_volume )
190 {
191     int i_result = 0;
192     aout_instance_t * p_aout = findAout( p_object );
193
194     if ( pi_volume == NULL ) return -1;
195
196     if ( p_aout == NULL )
197     {
198         *pi_volume = (audio_volume_t)config_GetInt( p_object, "volume" );
199         return 0;
200     }
201
202     aout_lock_volume( p_aout );
203     aout_lock_mixer( p_aout );
204     if ( p_aout->p_mixer )
205     {
206         i_result = p_aout->output.pf_volume_get( p_aout, pi_volume );
207     }
208     else
209     {
210         *pi_volume = (audio_volume_t)config_GetInt( p_object, "volume" );
211     }
212     aout_unlock_mixer( p_aout );
213     aout_unlock_volume( p_aout );
214
215     vlc_object_release( p_aout );
216     return i_result;
217 }
218
219 #undef aout_VolumeSet
220 /*****************************************************************************
221  * aout_VolumeSet : set the volume of the output device
222  *****************************************************************************/
223 int aout_VolumeSet( vlc_object_t * p_object, audio_volume_t i_volume )
224 {
225     return doVolumeChanges( SET_VOLUME, p_object, 1, i_volume, NULL, true );
226 }
227
228 #undef aout_VolumeUp
229 /*****************************************************************************
230  * aout_VolumeUp : raise the output volume
231  *****************************************************************************
232  * If pi_volume != NULL, *pi_volume will contain the volume at the end of the
233  * function.
234  *****************************************************************************/
235 int aout_VolumeUp( vlc_object_t * p_object, int i_nb_steps,
236                    audio_volume_t * pi_volume )
237 {
238     return doVolumeChanges( INCREMENT_VOLUME, p_object, i_nb_steps, 0, pi_volume, true );
239 }
240
241 #undef aout_VolumeDown
242 /*****************************************************************************
243  * aout_VolumeDown : lower the output volume
244  *****************************************************************************
245  * If pi_volume != NULL, *pi_volume will contain the volume at the end of the
246  * function.
247  *****************************************************************************/
248 int aout_VolumeDown( vlc_object_t * p_object, int i_nb_steps,
249                      audio_volume_t * pi_volume )
250 {
251     return aout_VolumeUp( p_object, -i_nb_steps, pi_volume );
252 }
253
254 #undef aout_ToggleMute
255 /*****************************************************************************
256  * aout_ToggleMute : Mute/un-mute the output volume
257  *****************************************************************************
258  * If pi_volume != NULL, *pi_volume will contain the volume at the end of the
259  * function (muted => 0).
260  *****************************************************************************/
261 int aout_ToggleMute( vlc_object_t * p_object, audio_volume_t * pi_volume )
262 {
263     return doVolumeChanges( TOGGLE_MUTE, p_object, 1, 0, pi_volume, true );
264 }
265
266 /*****************************************************************************
267  * aout_IsMuted : Get the output volume mute status
268  *****************************************************************************/
269 bool aout_IsMuted( vlc_object_t * p_object )
270 {
271     bool b_return_val;
272     aout_instance_t * p_aout = findAout( p_object );
273     if ( p_aout ) aout_lock_volume( p_aout );
274     b_return_val = var_GetBool( p_object->p_libvlc, "volume-muted");
275     if ( p_aout )
276     {
277         aout_unlock_volume( p_aout );
278         vlc_object_release( p_aout );
279     }
280     return b_return_val;
281 }
282
283 /*****************************************************************************
284  * aout_SetMute : Sets mute status
285  *****************************************************************************
286  * If pi_volume != NULL, *pi_volume will contain the volume at the end of the
287  * function (muted => 0).
288  *****************************************************************************/
289 int aout_SetMute( vlc_object_t * p_object, audio_volume_t * pi_volume,
290                   bool b_mute )
291 {
292     return doVolumeChanges( SET_MUTE, p_object, 1, 0, pi_volume, b_mute );
293 }
294
295 /*
296  * The next functions are not supposed to be called by the interface, but
297  * are placeholders for software-only scaling.
298  */
299
300 /* Meant to be called by the output plug-in's Open(). */
301 void aout_VolumeSoftInit( aout_instance_t * p_aout )
302 {
303     int i_volume;
304
305     p_aout->output.pf_volume_get = aout_VolumeSoftGet;
306     p_aout->output.pf_volume_set = aout_VolumeSoftSet;
307
308     i_volume = config_GetInt( p_aout, "volume" );
309     if ( i_volume < AOUT_VOLUME_MIN )
310     {
311         i_volume = AOUT_VOLUME_DEFAULT;
312     }
313     else if ( i_volume > AOUT_VOLUME_MAX )
314     {
315         i_volume = AOUT_VOLUME_MAX;
316     }
317
318     aout_VolumeSoftSet( p_aout, (audio_volume_t)i_volume );
319 }
320
321 /* Placeholder for pf_volume_get(). */
322 int aout_VolumeSoftGet( aout_instance_t * p_aout, audio_volume_t * pi_volume )
323 {
324     *pi_volume = p_aout->output.i_volume;
325     return 0;
326 }
327
328
329 /* Placeholder for pf_volume_set(). */
330 int aout_VolumeSoftSet( aout_instance_t * p_aout, audio_volume_t i_volume )
331 {
332     aout_MixerMultiplierSet( p_aout, (float)i_volume / AOUT_VOLUME_DEFAULT );
333     p_aout->output.i_volume = i_volume;
334     return 0;
335 }
336
337 /*
338  * The next functions are not supposed to be called by the interface, but
339  * are placeholders for unsupported scaling.
340  */
341
342 /* Meant to be called by the output plug-in's Open(). */
343 void aout_VolumeNoneInit( aout_instance_t * p_aout )
344 {
345     p_aout->output.pf_volume_get = aout_VolumeNoneGet;
346     p_aout->output.pf_volume_set = aout_VolumeNoneSet;
347 }
348
349 /* Placeholder for pf_volume_get(). */
350 int aout_VolumeNoneGet( aout_instance_t * p_aout, audio_volume_t * pi_volume )
351 {
352     (void)p_aout; (void)pi_volume;
353     return -1;
354 }
355
356 /* Placeholder for pf_volume_set(). */
357 int aout_VolumeNoneSet( aout_instance_t * p_aout, audio_volume_t i_volume )
358 {
359     (void)p_aout; (void)i_volume;
360     return -1;
361 }
362
363
364 /*
365  * Pipelines management
366  */
367
368 /*****************************************************************************
369  * aout_Restart : re-open the output device and rebuild the input and output
370  *                pipelines
371  *****************************************************************************
372  * This function is used whenever the parameters of the output plug-in are
373  * changed (eg. selecting S/PDIF or PCM).
374  *****************************************************************************/
375 static int aout_Restart( aout_instance_t * p_aout )
376 {
377     int i;
378     bool b_error = 0;
379
380     aout_lock_mixer( p_aout );
381
382     if ( p_aout->i_nb_inputs == 0 )
383     {
384         aout_unlock_mixer( p_aout );
385         msg_Err( p_aout, "no decoder thread" );
386         return -1;
387     }
388
389     for ( i = 0; i < p_aout->i_nb_inputs; i++ )
390     {
391         aout_lock_input( p_aout, p_aout->pp_inputs[i] );
392         aout_lock_input_fifos( p_aout );
393         aout_InputDelete( p_aout, p_aout->pp_inputs[i] );
394         aout_unlock_input_fifos( p_aout );
395     }
396
397     /* Lock all inputs. */
398     aout_lock_input_fifos( p_aout );
399     aout_MixerDelete( p_aout );
400
401     /* Re-open the output plug-in. */
402     aout_OutputDelete( p_aout );
403
404     if ( aout_OutputNew( p_aout, &p_aout->pp_inputs[0]->input ) == -1 )
405     {
406         /* Release all locks and report the error. */
407         for ( i = 0; i < p_aout->i_nb_inputs; i++ )
408         {
409             vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );
410         }
411         aout_unlock_input_fifos( p_aout );
412         aout_unlock_mixer( p_aout );
413         return -1;
414     }
415
416     if ( aout_MixerNew( p_aout ) == -1 )
417     {
418         aout_OutputDelete( p_aout );
419         for ( i = 0; i < p_aout->i_nb_inputs; i++ )
420         {
421             vlc_mutex_unlock( &p_aout->pp_inputs[i]->lock );
422         }
423         aout_unlock_input_fifos( p_aout );
424         aout_unlock_mixer( p_aout );
425         return -1;
426     }
427
428     /* Re-open all inputs. */
429     for ( i = 0; i < p_aout->i_nb_inputs; i++ )
430     {
431         aout_input_t * p_input = p_aout->pp_inputs[i];
432         b_error |= aout_InputNew( p_aout, p_input, &p_input->request_vout );
433         p_input->b_changed = 1;
434         aout_unlock_input( p_aout, p_input );
435     }
436
437     aout_unlock_input_fifos( p_aout );
438     aout_unlock_mixer( p_aout );
439
440     return b_error;
441 }
442
443 /*****************************************************************************
444  * aout_FindAndRestart : find the audio output instance and restart
445  *****************************************************************************
446  * This is used for callbacks of the configuration variables, and we believe
447  * that when those are changed, it is a significant change which implies
448  * rebuilding the audio-device and audio-channels variables.
449  *****************************************************************************/
450 int aout_FindAndRestart( vlc_object_t * p_this, const char *psz_name,
451                          vlc_value_t oldval, vlc_value_t newval, void *p_data )
452 {
453     aout_instance_t * p_aout = findAout( pl_Get(p_this) );
454
455     (void)psz_name; (void)oldval; (void)newval; (void)p_data;
456     if ( p_aout == NULL ) return VLC_SUCCESS;
457
458     var_Destroy( p_aout, "audio-device" );
459     var_Destroy( p_aout, "audio-channels" );
460
461     aout_Restart( p_aout );
462     vlc_object_release( p_aout );
463
464     return VLC_SUCCESS;
465 }
466
467 /*****************************************************************************
468  * aout_ChannelsRestart : change the audio device or channels and restart
469  *****************************************************************************/
470 int aout_ChannelsRestart( vlc_object_t * p_this, const char * psz_variable,
471                           vlc_value_t oldval, vlc_value_t newval,
472                           void *p_data )
473 {
474     aout_instance_t * p_aout = (aout_instance_t *)p_this;
475     (void)oldval; (void)newval; (void)p_data;
476
477     if ( !strcmp( psz_variable, "audio-device" ) )
478     {
479         /* This is supposed to be a significant change and supposes
480          * rebuilding the channel choices. */
481         var_Destroy( p_aout, "audio-channels" );
482     }
483     aout_Restart( p_aout );
484     return 0;
485 }
486
487 #undef aout_EnableFilter
488 /** Enable or disable an audio filter
489  * \param p_this a vlc object
490  * \param psz_name name of the filter
491  * \param b_add are we adding or removing the filter ?
492  */
493 void aout_EnableFilter( vlc_object_t *p_this, const char *psz_name,
494                         bool b_add )
495 {
496     aout_instance_t *p_aout = findAout( p_this );
497
498     if( AoutChangeFilterString( p_this, p_aout, "audio-filter", psz_name, b_add ) )
499     {
500         if( p_aout )
501             AoutInputsMarkToRestart( p_aout );
502     }
503
504     if( p_aout )
505         vlc_object_release( p_aout );
506 }