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