]> git.sesse.net Git - vlc/blob - src/audio_output/output.c
* ./src/audio_output/output.c: reverted my previous aout_OutputNextBuffer
[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.11 2002/08/25 09:40:00 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                                        vlc_bool_t b_can_sleek )
168 {
169     aout_buffer_t * p_buffer;
170
171     vlc_mutex_lock( &p_aout->mixer_lock );
172
173     p_buffer = p_aout->output.fifo.p_first;
174     while ( p_buffer && p_buffer->start_date < start_date && p_buffer->p_next )
175     {
176         msg_Dbg( p_aout, "audio output is too slow (%lld), trashing %lldus",
177                  start_date - p_buffer->start_date,
178                  p_buffer->end_date - p_buffer->start_date );
179         p_buffer = p_buffer->p_next;
180     }
181
182     p_aout->output.fifo.p_first = p_buffer;
183     if ( p_buffer == NULL )
184     {
185         p_aout->output.fifo.pp_last = &p_aout->output.fifo.p_first;
186         /* Set date to 0, to allow the mixer to send a new buffer ASAP */
187         aout_FifoSet( p_aout, &p_aout->output.fifo, 0 );
188         vlc_mutex_unlock( &p_aout->mixer_lock );
189         msg_Dbg( p_aout,
190                  "audio output is starving (no input), playing silence" );
191         return NULL;
192     }
193
194     /* Here we suppose that all buffers have the same duration - this is
195      * generally true, and anyway if it's wrong it won't be a disaster. */
196     if ( p_buffer->start_date > start_date
197                          + (p_buffer->end_date - p_buffer->start_date) )
198     {
199         vlc_mutex_unlock( &p_aout->mixer_lock );
200         msg_Dbg( p_aout, "audio output is starving (%lld), playing silence",
201                  p_buffer->start_date - start_date );
202         return NULL;
203     }
204
205     if ( !b_can_sleek &&
206           ( (p_buffer->start_date - start_date > AOUT_PTS_TOLERANCE)
207              || (start_date - p_buffer->start_date > AOUT_PTS_TOLERANCE) ) )
208     {
209         /* Try to compensate the drift by doing some resampling. */
210         int i;
211         mtime_t difference = p_buffer->start_date - start_date;
212         msg_Warn( p_aout, "output date isn't PTS date, resampling (%lld)",
213                   difference );
214
215         /* Remember that we still own the mixer lock. */
216         for ( i = 0; i < p_aout->i_nb_inputs; i++ )
217         {
218             aout_fifo_t * p_fifo = &p_aout->pp_inputs[i]->fifo;
219
220             aout_FifoMoveDates( p_aout, p_fifo, difference );
221         }
222
223         aout_FifoMoveDates( p_aout, &p_aout->output.fifo, difference );
224     }
225
226     p_aout->output.fifo.p_first = p_buffer->p_next;
227     if ( p_buffer->p_next == NULL )
228     {
229         p_aout->output.fifo.pp_last = &p_aout->output.fifo.p_first;
230     }
231
232     vlc_mutex_unlock( &p_aout->mixer_lock );
233     return p_buffer;
234 }