]> git.sesse.net Git - vlc/blob - src/audio_output/intf.c
Merge all audio output locks except volume control
[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 *(*pf_find_input) (vlc_object_t *);
46
47     pf_find_input = var_GetAddress (obj, "find-input-callback");
48     if (unlikely(pf_find_input == NULL))
49         return NULL;
50
51     input_thread_t *p_input = pf_find_input (obj);
52     if (p_input == NULL)
53        return NULL;
54
55     aout_instance_t *p_aout = input_GetAout (p_input);
56     vlc_object_release (p_input);
57     return p_aout;
58 }
59 #define findAout(o) findAout(VLC_OBJECT(o))
60
61 /** Start a volume change transaction. */
62 static void prepareVolume (vlc_object_t *obj, aout_instance_t **aoutp,
63                            audio_volume_t *volp, bool *mutep)
64 {
65     aout_instance_t *aout = findAout (obj);
66
67     /* FIXME: we need interlocking even if aout does not exist! */
68     *aoutp = aout;
69     if (aout != NULL)
70         aout_lock_volume (aout);
71     if (volp != NULL)
72         *volp = var_GetInteger (obj, "volume");
73     if (mutep != NULL)
74         *mutep = var_GetBool (obj, "mute");
75 }
76
77 /** Commit a volume change transaction. */
78 static int commitVolume (vlc_object_t *obj, aout_instance_t *aout,
79                          audio_volume_t volume, bool mute)
80 {
81     int ret = 0;
82
83     var_SetInteger (obj, "volume", volume);
84     var_SetBool (obj, "mute", mute);
85
86     if (aout != NULL)
87     {
88         aout_lock (aout);
89 #warning FIXME: wrong test. Need to check that aout_output is ready.
90         if (aout->p_mixer != NULL)
91             ret = aout->output.pf_volume_set (aout, volume, mute);
92         aout_unlock (aout);
93
94         if (ret == 0)
95             var_TriggerCallback (aout, "intf-change");
96         aout_unlock_volume (aout);
97         vlc_object_release (aout);
98     }
99     return ret;
100 }
101
102 #if 0
103 /** Cancel a volume change transaction. */
104 static void cancelVolume (vlc_object_t *obj, aout_instance_t *aout)
105 {
106     (void) obj;
107     if (aout != NULL)
108     {
109         aout_unlock_volume (aout);
110         vlc_object_release (aout);
111     }
112 }
113 #endif
114
115 #undef aout_VolumeGet
116 /**
117  * Gets the volume of the output device (independent of mute).
118  */
119 audio_volume_t aout_VolumeGet (vlc_object_t *obj)
120 {
121 #if 0
122     aout_instance_t *aout;
123     audio_volume_t volume;
124
125     prepareVolume (obj, &aout, &volume, NULL);
126     cancelVolume (obj, aout);
127     return 0;
128 #else
129     return var_GetInteger (obj, "volume");
130 #endif
131 }
132
133 #undef aout_VolumeSet
134 /**
135  * Sets the volume of the output device.
136  * The mute status is not changed.
137  */
138 int aout_VolumeSet (vlc_object_t *obj, audio_volume_t volume)
139 {
140     aout_instance_t *aout;
141     bool mute;
142
143     prepareVolume (obj, &aout, NULL, &mute);
144     return commitVolume (obj, aout, volume, mute);
145 }
146
147 #undef aout_VolumeUp
148 /**
149  * Raises the volume.
150  * \param value how much to increase (> 0) or decrease (< 0) the volume
151  * \param volp if non-NULL, will contain contain the resulting volume
152  */
153 int aout_VolumeUp (vlc_object_t *obj, int value, audio_volume_t *volp)
154 {
155     aout_instance_t *aout;
156     int ret;
157     audio_volume_t volume;
158     bool mute;
159
160     value *= var_InheritInteger (obj, "volume-step");
161
162     prepareVolume (obj, &aout, &volume, &mute);
163     value += volume;
164     if (value < AOUT_VOLUME_MIN)
165         volume = AOUT_VOLUME_MIN;
166     else
167     if (value > AOUT_VOLUME_MAX)
168         volume = AOUT_VOLUME_MAX;
169     else
170         volume = value;
171     ret = commitVolume (obj, aout, volume, mute);
172     if (volp != NULL)
173         *volp = volume;
174     return ret;
175 }
176
177 #undef aout_VolumeDown
178 /**
179  * Lowers the volume. See aout_VolumeUp().
180  */
181 int aout_VolumeDown (vlc_object_t *obj, int steps, audio_volume_t *volp)
182 {
183     return aout_VolumeUp (obj, -steps, volp);
184 }
185
186 #undef aout_ToggleMute
187 /**
188  * Toggles the mute state.
189  */
190 int aout_ToggleMute (vlc_object_t *obj, audio_volume_t *volp)
191 {
192     aout_instance_t *aout;
193     int ret;
194     audio_volume_t volume;
195     bool mute;
196
197     prepareVolume (obj, &aout, &volume, &mute);
198     mute = !mute;
199     ret = commitVolume (obj, aout, volume, mute);
200     if (volp != NULL)
201         *volp = mute ? AOUT_VOLUME_MIN : volume;
202     return ret;
203 }
204
205 /**
206  * Gets the output mute status.
207  */
208 bool aout_IsMuted (vlc_object_t *obj)
209 {
210 #if 0
211     aout_instance_t *aout;
212     bool mute;
213
214     prepareVolume (obj, &aout, NULL, &mute);
215     cancelVolume (obj, aout);
216     return mute;
217 #else
218     return var_GetBool (obj, "mute");
219 #endif
220 }
221
222 /**
223  * Sets mute status.
224  */
225 int aout_SetMute (vlc_object_t *obj, audio_volume_t *volp, bool mute)
226 {
227     aout_instance_t *aout;
228     int ret;
229     audio_volume_t volume;
230
231     prepareVolume (obj, &aout, &volume, NULL);
232     ret = commitVolume (obj, aout, volume, mute);
233     if (volp != NULL)
234         *volp = mute ? AOUT_VOLUME_MIN : volume;
235     return ret;
236 }
237
238
239 /*
240  * The next functions are not supposed to be called by the interface, but
241  * are placeholders for software-only scaling.
242  */
243 static int aout_VolumeSoftSet (aout_instance_t *aout, audio_volume_t volume,
244                                bool mute)
245 {
246     float f = mute ? 0. : (volume / (float)AOUT_VOLUME_DEFAULT);
247     aout->mixer_multiplier = f;
248     return 0;
249 }
250
251 /* Meant to be called by the output plug-in's Open(). */
252 void aout_VolumeSoftInit (aout_instance_t *aout)
253 {
254     audio_volume_t volume = var_InheritInteger (aout, "volume");
255     bool mute = var_InheritBool (aout, "mute");
256
257     aout->output.pf_volume_set = aout_VolumeSoftSet;
258     aout_VolumeSoftSet (aout, volume, mute);
259 }
260
261
262 /*
263  * The next functions are not supposed to be called by the interface, but
264  * are placeholders for unsupported scaling.
265  */
266 static int aout_VolumeNoneSet (aout_instance_t *aout, audio_volume_t volume,
267                                bool mute)
268 {
269     (void)aout; (void)volume; (void)mute;
270     return -1;
271 }
272
273 /* Meant to be called by the output plug-in's Open(). */
274 void aout_VolumeNoneInit( aout_instance_t * p_aout )
275 {
276     p_aout->output.pf_volume_set = aout_VolumeNoneSet;
277 }
278
279
280 /*
281  * Pipelines management
282  */
283
284 /*****************************************************************************
285  * aout_Restart : re-open the output device and rebuild the input and output
286  *                pipelines
287  *****************************************************************************
288  * This function is used whenever the parameters of the output plug-in are
289  * changed (eg. selecting S/PDIF or PCM).
290  *****************************************************************************/
291 static int aout_Restart( aout_instance_t * p_aout )
292 {
293     aout_input_t *p_input;
294
295     aout_lock( p_aout );
296     p_input = p_aout->p_input;
297     if( p_input == NULL )
298     {
299         aout_unlock( p_aout );
300         msg_Err( p_aout, "no decoder thread" );
301         return -1;
302     }
303
304     /* Reinitializes the output */
305     aout_InputDelete( p_aout, p_input );
306     aout_MixerDelete( p_aout );
307     aout_OutputDelete( p_aout );
308
309     /* FIXME: This function is notoriously dangerous/unsafe.
310      * By the way, if OutputNew or MixerNew fails, we are totally screwed. */
311     if ( aout_OutputNew( p_aout, &p_input->input ) == -1 )
312     {
313         /* Release all locks and report the error. */
314         aout_unlock( p_aout );
315         return -1;
316     }
317
318     if ( aout_MixerNew( p_aout ) == -1 )
319     {
320         aout_OutputDelete( p_aout );
321         aout_unlock( p_aout );
322         return -1;
323     }
324
325     if( aout_InputNew( p_aout, p_input, &p_input->request_vout ) )
326     {
327 #warning FIXME: deal with errors
328         aout_unlock( p_aout );
329         return -1;
330     }
331     aout_unlock( p_aout );
332     return 0;
333 }
334
335 /*****************************************************************************
336  * aout_ChannelsRestart : change the audio device or channels and restart
337  *****************************************************************************/
338 int aout_ChannelsRestart( vlc_object_t * p_this, const char * psz_variable,
339                           vlc_value_t oldval, vlc_value_t newval,
340                           void *p_data )
341 {
342     aout_instance_t * p_aout = (aout_instance_t *)p_this;
343     (void)oldval; (void)newval; (void)p_data;
344
345     if ( !strcmp( psz_variable, "audio-device" ) )
346     {
347         /* This is supposed to be a significant change and supposes
348          * rebuilding the channel choices. */
349         var_Destroy( p_aout, "audio-channels" );
350     }
351     aout_Restart( p_aout );
352     return 0;
353 }
354
355 #undef aout_EnableFilter
356 /** Enable or disable an audio filter
357  * \param p_this a vlc object
358  * \param psz_name name of the filter
359  * \param b_add are we adding or removing the filter ?
360  */
361 void aout_EnableFilter( vlc_object_t *p_this, const char *psz_name,
362                         bool b_add )
363 {
364     aout_instance_t *p_aout = findAout( p_this );
365
366     if( aout_ChangeFilterString( p_this, p_aout, "audio-filter", psz_name, b_add ) )
367     {
368         if( p_aout )
369             AoutInputsMarkToRestart( p_aout );
370     }
371
372     if( p_aout )
373         vlc_object_release( p_aout );
374 }