]> git.sesse.net Git - vlc/blob - src/audio_output/output.c
46180b1b8cc0aa89331c84150e46e74ee391b62b
[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.10 2002/08/24 10:19:43 sam 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 int aout_OutputNew( aout_instance_t * p_aout,
39                     audio_sample_format_t * p_format )
40 {
41     char * psz_name = config_GetPsz( p_aout, "aout" );
42     int i_rate = config_GetInt( p_aout, "aout-rate" );
43     int i_channels = config_GetInt( p_aout, "aout-channels" );
44
45     p_aout->output.p_module = module_Need( p_aout, "audio output",
46                                            psz_name );
47     if ( psz_name != NULL ) free( psz_name );
48     if ( p_aout->output.p_module == NULL )
49     {
50         msg_Err( p_aout, "no suitable aout module" );
51         return -1;
52     }
53
54     /* Retrieve user defaults. */
55     memcpy( &p_aout->output.output, p_format, sizeof(audio_sample_format_t) );
56     if ( i_rate != -1 ) p_aout->output.output.i_rate = i_rate;
57     if ( i_channels != -1 ) p_aout->output.output.i_channels = i_channels;
58     if ( AOUT_FMT_NON_LINEAR(&p_aout->output.output) )
59     {
60         p_aout->output.output.i_format = AOUT_FMT_SPDIF;
61     }
62     else
63     {
64         /* Non-S/PDIF mixer only deals with float32 or fixed32. */
65         p_aout->output.output.i_format
66                      = (p_aout->p_vlc->i_cpu & CPU_CAPABILITY_FPU) ?
67                         AOUT_FMT_FLOAT32 : AOUT_FMT_FIXED32;
68     }
69
70     /* Find the best output format. */
71     if ( p_aout->output.pf_setformat( p_aout ) != 0 )
72     {
73         msg_Err( p_aout, "couldn't set an output format" );
74         module_Unneed( p_aout, p_aout->output.p_module );
75         return -1;
76     }
77     aout_FormatPrepare( &p_aout->output.output );
78
79     /* Prepare FIFO. */
80     aout_FifoInit( p_aout, &p_aout->output.fifo, p_aout->output.output.i_rate );
81
82     msg_Dbg( p_aout, "output format=%d rate=%d channels=%d",
83              p_aout->output.output.i_format, p_aout->output.output.i_rate,
84              p_aout->output.output.i_channels );
85
86     /* Calculate the resulting mixer output format. */
87     memcpy( &p_aout->mixer.mixer, &p_aout->output.output,
88             sizeof(audio_sample_format_t) );
89     if ( !AOUT_FMT_NON_LINEAR(&p_aout->output.output) )
90     {
91         /* Non-S/PDIF mixer only deals with float32 or fixed32. */
92         p_aout->mixer.mixer.i_format
93                      = (p_aout->p_vlc->i_cpu & CPU_CAPABILITY_FPU) ?
94                         AOUT_FMT_FLOAT32 : AOUT_FMT_FIXED32;
95         aout_FormatPrepare( &p_aout->mixer.mixer );
96     }
97     else
98     {
99         p_aout->mixer.mixer.i_format = p_format->i_format;
100     }
101
102     msg_Dbg( p_aout, "mixer format=%d rate=%d channels=%d",
103              p_aout->mixer.mixer.i_format, p_aout->mixer.mixer.i_rate,
104              p_aout->mixer.mixer.i_channels );
105
106     /* Create filters. */
107     if ( aout_FiltersCreatePipeline( p_aout, p_aout->output.pp_filters,
108                                      &p_aout->output.i_nb_filters,
109                                      &p_aout->mixer.mixer,
110                                      &p_aout->output.output ) < 0 )
111     {
112         msg_Err( p_aout, "couldn't set an output pipeline" );
113         module_Unneed( p_aout, p_aout->output.p_module );
114         return -1;
115     }
116
117     /* Prepare hints for the buffer allocator. */
118     p_aout->mixer.output_alloc.i_alloc_type = AOUT_ALLOC_HEAP;
119     p_aout->mixer.output_alloc.i_bytes_per_sec
120                         = p_aout->mixer.mixer.i_bytes_per_frame
121                            * p_aout->mixer.mixer.i_rate
122                            / p_aout->mixer.mixer.i_frame_length;
123
124     aout_FiltersHintBuffers( p_aout, p_aout->output.pp_filters,
125                              p_aout->output.i_nb_filters,
126                              &p_aout->mixer.output_alloc );
127
128     return 0;
129 }
130
131 /*****************************************************************************
132  * aout_OutputDelete : delete the output
133  *****************************************************************************/
134 void aout_OutputDelete( aout_instance_t * p_aout )
135 {
136     module_Unneed( p_aout, p_aout->output.p_module );
137
138     aout_FiltersDestroyPipeline( p_aout, p_aout->output.pp_filters,
139                                  p_aout->output.i_nb_filters );
140     aout_FifoDestroy( p_aout, &p_aout->output.fifo );
141 }
142
143 /*****************************************************************************
144  * aout_OutputPlay : play a buffer
145  *****************************************************************************/
146 void aout_OutputPlay( aout_instance_t * p_aout, aout_buffer_t * p_buffer )
147 {
148     aout_FiltersPlay( p_aout, p_aout->output.pp_filters,
149                       p_aout->output.i_nb_filters,
150                       &p_buffer );
151
152     vlc_mutex_lock( &p_aout->mixer_lock );
153     aout_FifoPush( p_aout, &p_aout->output.fifo, p_buffer );
154     p_aout->output.pf_play( p_aout );
155     vlc_mutex_unlock( &p_aout->mixer_lock );
156 }
157
158 /*****************************************************************************
159  * aout_OutputNextBuffer : give the audio output plug-in the right buffer
160  *****************************************************************************
161  * If b_can_sleek is 1, the aout core functions won't try to resample
162  * new buffers to catch up - that is we suppose that the output plug-in can
163  * compensate it by itself. S/PDIF outputs should always set b_can_sleek = 1.
164  *****************************************************************************/
165 aout_buffer_t * aout_OutputNextBuffer( aout_instance_t * p_aout,
166                                        mtime_t start_date,
167                                        mtime_t timeout,
168                                        vlc_bool_t b_can_sleek )
169 {
170     aout_buffer_t * p_buffer;
171     mtime_t         now = mdate();
172
173     vlc_mutex_lock( &p_aout->mixer_lock );
174
175     timeout += now;
176
177     while( p_aout->output.fifo.p_first == NULL && timeout > now )
178     {
179         vlc_mutex_unlock( &p_aout->mixer_lock );
180         msleep( AOUT_PTS_TOLERANCE / 2 );
181         vlc_mutex_lock( &p_aout->mixer_lock );
182         now = mdate();
183     }
184
185     p_buffer = p_aout->output.fifo.p_first;
186     while ( p_buffer != NULL && p_buffer->start_date < start_date )
187     {
188         msg_Dbg( p_aout, "audio output is too slow (%lld), trashing %lldms",
189                  start_date - p_buffer->start_date,
190                  p_buffer->end_date - p_buffer->start_date );
191         p_buffer = p_buffer->p_next;
192     }
193
194     p_aout->output.fifo.p_first = p_buffer;
195     if ( p_buffer == NULL )
196     {
197         p_aout->output.fifo.pp_last = &p_aout->output.fifo.p_first;
198         /* Set date to 0, to allow the mixer to send a new buffer ASAP */
199         aout_FifoSet( p_aout, &p_aout->output.fifo, 0 );
200         vlc_mutex_unlock( &p_aout->mixer_lock );
201         msg_Dbg( p_aout, "audio output is starving, waited too long" );
202         return NULL;
203     }
204
205     /* Here we suppose that all buffers have the same duration - this is
206      * generally true, and anyway if it's wrong it won't be a disaster. */
207     if ( p_buffer->start_date > start_date
208                          + (p_buffer->end_date - p_buffer->start_date) )
209     {
210         vlc_mutex_unlock( &p_aout->mixer_lock );
211         msg_Dbg( p_aout, "audio output is starving (%lld)",
212                  p_buffer->start_date - start_date );
213         return NULL;
214     }
215
216     if ( !b_can_sleek &&
217           ( (p_buffer->start_date - start_date > AOUT_PTS_TOLERANCE)
218              || (start_date - p_buffer->start_date > AOUT_PTS_TOLERANCE) ) )
219     {
220         /* Try to compensate the drift by doing some resampling. */
221         int i;
222         mtime_t difference = p_buffer->start_date - start_date;
223         msg_Warn( p_aout, "output date isn't PTS date, resampling (%lld)",
224                   difference );
225
226         /* Remember that we still own the mixer lock. */
227         for ( i = 0; i < p_aout->i_nb_inputs; i++ )
228         {
229             aout_fifo_t * p_fifo = &p_aout->pp_inputs[i]->fifo;
230
231             aout_FifoMoveDates( p_aout, p_fifo, difference );
232         }
233
234         aout_FifoMoveDates( p_aout, &p_aout->output.fifo, difference );
235     }
236
237     p_aout->output.fifo.p_first = p_buffer->p_next;
238     if ( p_buffer->p_next == NULL )
239     {
240         p_aout->output.fifo.pp_last = &p_aout->output.fifo.p_first;
241     }
242
243     vlc_mutex_unlock( &p_aout->mixer_lock );
244     return p_buffer;
245 }