]> git.sesse.net Git - vlc/blob - src/audio_output/aout_ext-dec.c
* Fixed a few warnings with gcc 3.0.
[vlc] / src / audio_output / aout_ext-dec.c
1 /*****************************************************************************
2  * aout_ext-dec.c : exported fifo management functions
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: aout_ext-dec.c,v 1.2 2001/05/06 04:32:02 sam Exp $
6  *
7  * Authors: Michel Kaempf <maxx@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 "defs.h"
28
29 #include <stdio.h>                                           /* "intf_msg.h" */
30 #include <stdlib.h>                            /* calloc(), malloc(), free() */
31
32 #include "config.h"
33 #include "common.h"
34 #include "threads.h"
35 #include "mtime.h"                             /* mtime_t, mdate(), msleep() */
36
37 #include "intf_msg.h"                        /* intf_DbgMsg(), intf_ErrMsg() */
38
39 #include "audio_output.h"
40 #include "aout_common.h"
41
42 #include "main.h"
43
44 /*****************************************************************************
45  * aout_CreateFifo
46  *****************************************************************************/
47 aout_fifo_t * aout_CreateFifo( int i_type, int i_channels, long l_rate,
48                                long l_units, long l_frame_size,
49                                void *p_buffer )
50 {
51     aout_thread_t *p_aout;
52     int i_fifo;
53
54     /* Spawn an audio output if there is none */
55     vlc_mutex_lock( &p_aout_bank->lock );
56
57     if( p_aout_bank->i_count == 0 )
58     {
59         intf_Msg( "aout: no aout present, spawning one" );
60
61         p_aout = aout_CreateThread( NULL );
62
63         /* Everything failed */
64         if( p_aout == NULL )
65         {
66             vlc_mutex_unlock( &p_aout_bank->lock );
67             return NULL;
68         }
69
70         p_aout_bank->pp_aout[ p_aout_bank->i_count ] = p_aout;
71         p_aout_bank->i_count++;
72     }
73     else
74     {
75         /* Take the first audio output FIXME: take the best one */
76         p_aout = p_aout_bank->pp_aout[ 0 ];
77     }
78
79     /* Take the fifos lock */
80     vlc_mutex_lock( &p_aout->fifos_lock );
81
82     /* Looking for a free fifo structure */
83     for( i_fifo = 0; i_fifo < AOUT_MAX_FIFOS; i_fifo++ )
84     {
85         if( p_aout->fifo[i_fifo].i_type == AOUT_EMPTY_FIFO )
86         {
87             /* Not very clever, but at least we know which fifo it is */
88             p_aout->fifo[i_fifo].i_fifo = i_fifo;
89             break;
90         }
91     }
92
93     if( i_fifo == AOUT_MAX_FIFOS )
94     {
95         intf_ErrMsg( "aout error: no fifo available" );
96         vlc_mutex_unlock( &p_aout->fifos_lock );
97         vlc_mutex_unlock( &p_aout_bank->lock );
98         return( NULL );
99     }
100
101     /* Initialize the new fifo structure */
102     switch ( p_aout->fifo[i_fifo].i_type = i_type )
103     {
104         case AOUT_INTF_MONO_FIFO:
105         case AOUT_INTF_STEREO_FIFO:
106             p_aout->fifo[i_fifo].b_die = 0;
107
108             p_aout->fifo[i_fifo].i_channels = i_channels;
109             p_aout->fifo[i_fifo].b_stereo = ( i_channels == 2 );
110             p_aout->fifo[i_fifo].l_rate = l_rate;
111
112             p_aout->fifo[i_fifo].buffer = p_buffer;
113
114             p_aout->fifo[i_fifo].l_unit = 0;
115             InitializeIncrement( &p_aout->fifo[i_fifo].unit_increment,
116                                  l_rate, p_aout->l_rate );
117             p_aout->fifo[i_fifo].l_units = l_units;
118             break;
119
120         case AOUT_ADEC_MONO_FIFO:
121         case AOUT_ADEC_STEREO_FIFO:
122             p_aout->fifo[i_fifo].b_die = 0;
123
124             p_aout->fifo[i_fifo].i_channels = i_channels;
125             p_aout->fifo[i_fifo].b_stereo = ( i_channels == 2 );
126             p_aout->fifo[i_fifo].l_rate = l_rate;
127
128             p_aout->fifo[i_fifo].l_frame_size = l_frame_size;
129             /* Allocate the memory needed to store the audio frames. As the
130              * fifo is a rotative fifo, we must be able to find out whether
131              * the fifo is full or empty, that's why we must in fact allocate
132              * memory for (AOUT_FIFO_SIZE+1) audio frames. */
133             p_aout->fifo[i_fifo].buffer = malloc( sizeof(s16) *
134                                    ( AOUT_FIFO_SIZE + 1 ) * l_frame_size );
135             if ( p_aout->fifo[i_fifo].buffer == NULL )
136             {
137                 intf_ErrMsg( "aout error: cannot create frame buffer" );
138                 p_aout->fifo[i_fifo].i_type = AOUT_EMPTY_FIFO;
139                 vlc_mutex_unlock( &p_aout->fifos_lock );
140                 vlc_mutex_unlock( &p_aout_bank->lock );
141                 return( NULL );
142             }
143
144             /* Allocate the memory needed to store the dates of the frames */
145             p_aout->fifo[i_fifo].date =
146                            malloc( sizeof(mtime_t) * ( AOUT_FIFO_SIZE +  1) );
147
148             if ( p_aout->fifo[i_fifo].date == NULL )
149             {
150                 intf_ErrMsg( "aout error: cannot create date buffer");
151                 free( p_aout->fifo[i_fifo].buffer );
152                 p_aout->fifo[i_fifo].i_type = AOUT_EMPTY_FIFO;
153                 vlc_mutex_unlock( &p_aout->fifos_lock );
154                 vlc_mutex_unlock( &p_aout_bank->lock );
155                 return( NULL );
156             }
157
158             /* Set the fifo's buffer as empty (the first frame that is to be
159              * played is also the first frame that is not to be played) */
160             p_aout->fifo[i_fifo].l_start_frame = 0;
161             /* p_aout->fifo[i_fifo].l_next_frame = 0; */
162             p_aout->fifo[i_fifo].l_end_frame = 0;
163
164             /* Waiting for the audio decoder to compute enough frames to work
165              * out the fifo's current rate (as soon as the decoder has decoded
166              * enough frames, the members of the fifo structure that are not
167              * initialized now will be calculated) */
168             p_aout->fifo[i_fifo].b_start_frame = 0;
169             p_aout->fifo[i_fifo].b_next_frame = 0;
170             break;
171
172         default:
173             intf_ErrMsg( "aout error: unknown fifo type 0x%x",
174                          p_aout->fifo[i_fifo].i_type );
175             p_aout->fifo[i_fifo].i_type = AOUT_EMPTY_FIFO;
176             vlc_mutex_unlock( &p_aout->fifos_lock );
177             vlc_mutex_unlock( &p_aout_bank->lock );
178             return( NULL );
179     }
180
181     /* Release the fifos lock */
182     vlc_mutex_unlock( &p_aout->fifos_lock );
183     vlc_mutex_unlock( &p_aout_bank->lock );
184
185     intf_WarnMsg( 2, "aout info: fifo #%i allocated, %i channels, rate %li",
186                   p_aout->fifo[i_fifo].i_fifo, p_aout->fifo[i_fifo].i_channels,
187                   p_aout->fifo[i_fifo].l_rate );
188
189     /* Return the pointer to the fifo structure */
190     return( &p_aout->fifo[i_fifo] );
191 }
192
193 /*****************************************************************************
194  * aout_DestroyFifo
195  *****************************************************************************/
196 void aout_DestroyFifo( aout_fifo_t * p_fifo )
197 {
198     intf_WarnMsg( 2, "aout info: fifo #%i destroyed", p_fifo->i_fifo );
199
200     p_fifo->b_die = 1;
201 }
202
203 /*****************************************************************************
204  * aout_FreeFifo
205  *****************************************************************************/
206 void aout_FreeFifo( aout_fifo_t * p_fifo )
207 {
208     switch ( p_fifo->i_type )
209     {
210         case AOUT_EMPTY_FIFO:
211
212             break;
213
214         case AOUT_INTF_MONO_FIFO:
215         case AOUT_INTF_STEREO_FIFO:
216
217             free( p_fifo->buffer );
218             p_fifo->i_type = AOUT_EMPTY_FIFO;
219
220             break;
221
222         case AOUT_ADEC_MONO_FIFO:
223         case AOUT_ADEC_STEREO_FIFO:
224
225             free( p_fifo->buffer );
226             free( p_fifo->date );
227             p_fifo->i_type = AOUT_EMPTY_FIFO;
228
229             break;
230
231         default:
232
233             break;
234     }
235 }
236