]> git.sesse.net Git - vlc/blob - src/audio_output/intf.c
Replace AOUT_VOLUME_MIN with 0
[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 #include <vlc_aout_intf.h>
34
35 #include <stdio.h>
36 #include <stdlib.h>                            /* calloc(), malloc(), free() */
37 #include <string.h>
38
39 #include <vlc_aout.h>
40 #include "aout_internal.h"
41
42 #include <vlc_playlist.h>
43
44 static audio_output_t *findAout (vlc_object_t *obj)
45 {
46     input_thread_t *(*pf_find_input) (vlc_object_t *);
47
48     pf_find_input = var_GetAddress (obj, "find-input-callback");
49     if (unlikely(pf_find_input == NULL))
50         return NULL;
51
52     input_thread_t *p_input = pf_find_input (obj);
53     if (p_input == NULL)
54        return NULL;
55
56     audio_output_t *p_aout = input_GetAout (p_input);
57     vlc_object_release (p_input);
58     return p_aout;
59 }
60 #define findAout(o) findAout(VLC_OBJECT(o))
61
62 /** Start a volume change transaction. */
63 static void prepareVolume (vlc_object_t *obj, audio_output_t **aoutp,
64                            audio_volume_t *volp, bool *mutep)
65 {
66     audio_output_t *aout = findAout (obj);
67
68     /* FIXME: we need interlocking even if aout does not exist! */
69     *aoutp = aout;
70     if (aout != NULL)
71         aout_lock_volume (aout);
72     if (volp != NULL)
73         *volp = var_GetInteger (obj, "volume");
74     if (mutep != NULL)
75         *mutep = var_GetBool (obj, "mute");
76 }
77
78 /** Commit a volume change transaction. */
79 static int commitVolume (vlc_object_t *obj, audio_output_t *aout,
80                          audio_volume_t volume, bool mute)
81 {
82     int ret = 0;
83
84     var_SetInteger (obj, "volume", volume);
85     var_SetBool (obj, "mute", mute);
86
87     if (aout != NULL)
88     {
89         float vol = volume / (float)AOUT_VOLUME_DEFAULT;
90
91         aout_lock (aout);
92 #warning FIXME: wrong test. Need to check that aout_output is ready.
93         if (aout->p_mixer != NULL)
94             ret = aout->pf_volume_set (aout, vol, mute);
95         aout_unlock (aout);
96
97         if (ret == 0)
98             var_TriggerCallback (aout, "intf-change");
99         aout_unlock_volume (aout);
100         vlc_object_release (aout);
101     }
102     return ret;
103 }
104
105 #if 0
106 /** Cancel a volume change transaction. */
107 static void cancelVolume (vlc_object_t *obj, audio_output_t *aout)
108 {
109     (void) obj;
110     if (aout != NULL)
111     {
112         aout_unlock_volume (aout);
113         vlc_object_release (aout);
114     }
115 }
116 #endif
117
118 #undef aout_VolumeGet
119 /**
120  * Gets the volume of the output device (independent of mute).
121  */
122 audio_volume_t aout_VolumeGet (vlc_object_t *obj)
123 {
124 #if 0
125     audio_output_t *aout;
126     audio_volume_t volume;
127
128     prepareVolume (obj, &aout, &volume, NULL);
129     cancelVolume (obj, aout);
130     return 0;
131 #else
132     return var_GetInteger (obj, "volume");
133 #endif
134 }
135
136 #undef aout_VolumeSet
137 /**
138  * Sets the volume of the output device.
139  * The mute status is not changed.
140  */
141 int aout_VolumeSet (vlc_object_t *obj, audio_volume_t volume)
142 {
143     audio_output_t *aout;
144     bool mute;
145
146     prepareVolume (obj, &aout, NULL, &mute);
147     return commitVolume (obj, aout, volume, mute);
148 }
149
150 #undef aout_VolumeUp
151 /**
152  * Raises the volume.
153  * \param value how much to increase (> 0) or decrease (< 0) the volume
154  * \param volp if non-NULL, will contain contain the resulting volume
155  */
156 int aout_VolumeUp (vlc_object_t *obj, int value, audio_volume_t *volp)
157 {
158     audio_output_t *aout;
159     int ret;
160     audio_volume_t volume;
161     bool mute;
162
163     value *= var_InheritInteger (obj, "volume-step");
164
165     prepareVolume (obj, &aout, &volume, &mute);
166     value += volume;
167     if (value < 0)
168         volume = 0;
169     else
170     if (value > AOUT_VOLUME_MAX)
171         volume = AOUT_VOLUME_MAX;
172     else
173         volume = value;
174     ret = commitVolume (obj, aout, volume, mute);
175     if (volp != NULL)
176         *volp = volume;
177     return ret;
178 }
179
180 #undef aout_VolumeDown
181 /**
182  * Lowers the volume. See aout_VolumeUp().
183  */
184 int aout_VolumeDown (vlc_object_t *obj, int steps, audio_volume_t *volp)
185 {
186     return aout_VolumeUp (obj, -steps, volp);
187 }
188
189 #undef aout_ToggleMute
190 /**
191  * Toggles the mute state.
192  */
193 int aout_ToggleMute (vlc_object_t *obj, audio_volume_t *volp)
194 {
195     audio_output_t *aout;
196     int ret;
197     audio_volume_t volume;
198     bool mute;
199
200     prepareVolume (obj, &aout, &volume, &mute);
201     mute = !mute;
202     ret = commitVolume (obj, aout, volume, mute);
203     if (volp != NULL)
204         *volp = mute ? 0 : volume;
205     return ret;
206 }
207
208 /**
209  * Gets the output mute status.
210  */
211 bool aout_IsMuted (vlc_object_t *obj)
212 {
213 #if 0
214     audio_output_t *aout;
215     bool mute;
216
217     prepareVolume (obj, &aout, NULL, &mute);
218     cancelVolume (obj, aout);
219     return mute;
220 #else
221     return var_GetBool (obj, "mute");
222 #endif
223 }
224
225 /**
226  * Sets mute status.
227  */
228 int aout_SetMute (vlc_object_t *obj, audio_volume_t *volp, bool mute)
229 {
230     audio_output_t *aout;
231     int ret;
232     audio_volume_t volume;
233
234     prepareVolume (obj, &aout, &volume, NULL);
235     ret = commitVolume (obj, aout, volume, mute);
236     if (volp != NULL)
237         *volp = mute ? 0 : volume;
238     return ret;
239 }
240
241
242 /*
243  * The next functions are not supposed to be called by the interface, but
244  * are placeholders for software-only scaling.
245  */
246 static int aout_VolumeSoftSet (audio_output_t *aout, float volume, bool mute)
247 {
248     aout->mixer_multiplier = mute ? 0. : volume;
249     return 0;
250 }
251
252 /* Meant to be called by the output plug-in's Open(). */
253 void aout_VolumeSoftInit (audio_output_t *aout)
254 {
255     audio_volume_t volume = var_InheritInteger (aout, "volume");
256     bool mute = var_InheritBool (aout, "mute");
257
258     aout->pf_volume_set = aout_VolumeSoftSet;
259     aout_VolumeSoftSet (aout, volume / (float)AOUT_VOLUME_DEFAULT, mute);
260 }
261
262
263 /*
264  * The next functions are not supposed to be called by the interface, but
265  * are placeholders for unsupported scaling.
266  */
267 static int aout_VolumeNoneSet (audio_output_t *aout, float volume, 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( audio_output_t * p_aout )
275 {
276     p_aout->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( audio_output_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     audio_output_t * p_aout = (audio_output_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     audio_output_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 }