]> git.sesse.net Git - vlc/blob - src/audio_output/output.c
* src/audio_output/common.c, include/aout_internal.h: added a new function
[vlc] / src / audio_output / output.c
1 /*****************************************************************************
2  * output.c : internal management of output streams for the audio output
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: output.c,v 1.21 2002/11/01 15:06:23 gbazin Exp $
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                            /* calloc(), malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31
32 #include "audio_output.h"
33 #include "aout_internal.h"
34
35 /*****************************************************************************
36  * aout_OutputNew : allocate a new output and rework the filter pipeline
37  *****************************************************************************
38  * This function is entered with the mixer lock.
39  *****************************************************************************/
40 int aout_OutputNew( aout_instance_t * p_aout,
41                     audio_sample_format_t * p_format )
42 {
43     /* Retrieve user defaults. */
44     char * psz_name = config_GetPsz( p_aout, "aout" );
45     int i_rate = config_GetInt( p_aout, "aout-rate" );
46     int i_channels = config_GetInt( p_aout, "aout-channels" );
47
48     memcpy( &p_aout->output.output, p_format, sizeof(audio_sample_format_t) );
49     if ( i_rate != -1 ) p_aout->output.output.i_rate = i_rate;
50     if ( i_channels != -1 ) p_aout->output.output.i_channels = i_channels;
51     if ( AOUT_FMT_NON_LINEAR(&p_aout->output.output) )
52     {
53         p_aout->output.output.i_format = VLC_FOURCC('s','p','d','i');
54     }
55     else
56     {
57         /* Non-S/PDIF mixer only deals with float32 or fixed32. */
58         p_aout->output.output.i_format
59                      = (p_aout->p_libvlc->i_cpu & CPU_CAPABILITY_FPU) ?
60                         VLC_FOURCC('f','l','3','2') :
61                         VLC_FOURCC('f','i','3','2');
62
63         if ( p_aout->output.output.i_channels == AOUT_CHAN_DOLBY )
64         {
65             /* Do not do Dolby surround unless the user requests it. */
66             p_aout->output.output.i_channels = AOUT_CHAN_STEREO;
67         }
68     }
69     aout_FormatPrepare( &p_aout->output.output );
70
71     vlc_mutex_lock( &p_aout->output_fifo_lock );
72
73     /* Find the best output plug-in. */
74     p_aout->output.p_module = module_Need( p_aout, "audio output",
75                                            psz_name );
76     if ( psz_name != NULL ) free( psz_name );
77     if ( p_aout->output.p_module == NULL )
78     {
79         msg_Err( p_aout, "no suitable aout module" );
80         vlc_mutex_unlock( &p_aout->output_fifo_lock );
81         return -1;
82     }
83     aout_FormatPrepare( &p_aout->output.output );
84
85     /* Prepare FIFO. */
86     aout_FifoInit( p_aout, &p_aout->output.fifo, p_aout->output.output.i_rate );
87
88     vlc_mutex_unlock( &p_aout->output_fifo_lock );
89
90     aout_FormatPrint( p_aout, "output", &p_aout->output.output );
91
92     /* Calculate the resulting mixer output format. */
93     memcpy( &p_aout->mixer.mixer, &p_aout->output.output,
94             sizeof(audio_sample_format_t) );
95     if ( !AOUT_FMT_NON_LINEAR(&p_aout->output.output) )
96     {
97         /* Non-S/PDIF mixer only deals with float32 or fixed32. */
98         p_aout->mixer.mixer.i_format
99                      = (p_aout->p_libvlc->i_cpu & CPU_CAPABILITY_FPU) ?
100                         VLC_FOURCC('f','l','3','2') :
101                         VLC_FOURCC('f','i','3','2');
102         aout_FormatPrepare( &p_aout->mixer.mixer );
103     }
104     else
105     {
106         p_aout->mixer.mixer.i_format = p_format->i_format;
107     }
108
109     aout_FormatPrint( p_aout, "mixer", &p_aout->output.output );
110
111     /* Create filters. */
112     if ( aout_FiltersCreatePipeline( p_aout, p_aout->output.pp_filters,
113                                      &p_aout->output.i_nb_filters,
114                                      &p_aout->mixer.mixer,
115                                      &p_aout->output.output ) < 0 )
116     {
117         msg_Err( p_aout, "couldn't set an output pipeline" );
118         module_Unneed( p_aout, p_aout->output.p_module );
119         return -1;
120     }
121
122     /* Prepare hints for the buffer allocator. */
123     p_aout->mixer.output_alloc.i_alloc_type = AOUT_ALLOC_HEAP;
124     p_aout->mixer.output_alloc.i_bytes_per_sec
125                         = p_aout->mixer.mixer.i_bytes_per_frame
126                            * p_aout->mixer.mixer.i_rate
127                            / p_aout->mixer.mixer.i_frame_length;
128
129     aout_FiltersHintBuffers( p_aout, p_aout->output.pp_filters,
130                              p_aout->output.i_nb_filters,
131                              &p_aout->mixer.output_alloc );
132
133     return 0;
134 }
135
136 /*****************************************************************************
137  * aout_OutputDelete : delete the output
138  *****************************************************************************
139  * This function is entered with the mixer lock.
140  *****************************************************************************/
141 void aout_OutputDelete( aout_instance_t * p_aout )
142 {
143     module_Unneed( p_aout, p_aout->output.p_module );
144
145     aout_FiltersDestroyPipeline( p_aout, p_aout->output.pp_filters,
146                                  p_aout->output.i_nb_filters );
147     aout_FifoDestroy( p_aout, &p_aout->output.fifo );
148 }
149
150 /*****************************************************************************
151  * aout_OutputPlay : play a buffer
152  *****************************************************************************
153  * This function is entered with the mixer lock.
154  *****************************************************************************/
155 void aout_OutputPlay( aout_instance_t * p_aout, aout_buffer_t * p_buffer )
156 {
157     aout_FiltersPlay( p_aout, p_aout->output.pp_filters,
158                       p_aout->output.i_nb_filters,
159                       &p_buffer );
160
161     vlc_mutex_lock( &p_aout->output_fifo_lock );
162     aout_FifoPush( p_aout, &p_aout->output.fifo, p_buffer );
163     p_aout->output.pf_play( p_aout );
164     vlc_mutex_unlock( &p_aout->output_fifo_lock );
165 }
166
167 /*****************************************************************************
168  * aout_OutputNextBuffer : give the audio output plug-in the right buffer
169  *****************************************************************************
170  * If b_can_sleek is 1, the aout core functions won't try to resample
171  * new buffers to catch up - that is we suppose that the output plug-in can
172  * compensate it by itself. S/PDIF outputs should always set b_can_sleek = 1.
173  * This function is entered with no lock at all :-).
174  *****************************************************************************/
175 aout_buffer_t * aout_OutputNextBuffer( aout_instance_t * p_aout,
176                                        mtime_t start_date,
177                                        vlc_bool_t b_can_sleek )
178 {
179     aout_buffer_t * p_buffer;
180
181     vlc_mutex_lock( &p_aout->output_fifo_lock );
182
183     p_buffer = p_aout->output.fifo.p_first;
184     while ( p_buffer && p_buffer->start_date < mdate() )
185     {
186         msg_Dbg( p_aout, "audio output is too slow (%lld), trashing %lldus",
187                  mdate() - p_buffer->start_date,
188                  p_buffer->end_date - p_buffer->start_date );
189         p_buffer = p_buffer->p_next;
190     }
191
192     p_aout->output.fifo.p_first = p_buffer;
193     if ( p_buffer == NULL )
194     {
195         p_aout->output.fifo.pp_last = &p_aout->output.fifo.p_first;
196
197 #if 0 /* This is bad because the audio output might just be trying to fill
198        * in it's internal buffers. And anyway, it's up to the audio output
199        * to deal with this kind of starvation. */
200
201         /* Set date to 0, to allow the mixer to send a new buffer ASAP */
202         aout_FifoSet( p_aout, &p_aout->output.fifo, 0 );
203         if ( !p_aout->output.b_starving )
204             msg_Dbg( p_aout,
205                  "audio output is starving (no input), playing silence" );
206         p_aout->output.b_starving = 1;
207 #endif
208
209         vlc_mutex_unlock( &p_aout->output_fifo_lock );
210         return NULL;
211     }
212
213     /* Here we suppose that all buffers have the same duration - this is
214      * generally true, and anyway if it's wrong it won't be a disaster. */
215     if ( p_buffer->start_date > start_date
216                          + (p_buffer->end_date - p_buffer->start_date) )
217     {
218         vlc_mutex_unlock( &p_aout->output_fifo_lock );
219         if ( !p_aout->output.b_starving )
220             msg_Dbg( p_aout, "audio output is starving (%lld), playing silence",
221                  p_buffer->start_date - start_date );
222         p_aout->output.b_starving = 1;
223         return NULL;
224     }
225
226     p_aout->output.b_starving = 0;
227
228     if ( !b_can_sleek &&
229           ( (p_buffer->start_date - start_date > AOUT_PTS_TOLERANCE)
230              || (start_date - p_buffer->start_date > AOUT_PTS_TOLERANCE) ) )
231     {
232         /* Try to compensate the drift by doing some resampling. */
233         int i;
234         mtime_t difference = p_buffer->start_date - start_date;
235         msg_Warn( p_aout, "output date isn't PTS date, resampling (%lld)",
236                   difference );
237
238         vlc_mutex_lock( &p_aout->input_fifos_lock );
239         for ( i = 0; i < p_aout->i_nb_inputs; i++ )
240         {
241             aout_fifo_t * p_fifo = &p_aout->pp_inputs[i]->fifo;
242
243             aout_FifoMoveDates( p_aout, p_fifo, difference );
244         }
245
246         aout_FifoMoveDates( p_aout, &p_aout->output.fifo, difference );
247         vlc_mutex_unlock( &p_aout->input_fifos_lock );
248     }
249
250     p_aout->output.fifo.p_first = p_buffer->p_next;
251     if ( p_buffer->p_next == NULL )
252     {
253         p_aout->output.fifo.pp_last = &p_aout->output.fifo.p_first;
254     }
255
256     vlc_mutex_unlock( &p_aout->output_fifo_lock );
257     return p_buffer;
258 }