]> git.sesse.net Git - vlc/blob - plugins/sdl/aout_sdl.c
28743655bbd4d1b30a404dd833c45a328b44540d
[vlc] / plugins / sdl / aout_sdl.c
1 /*****************************************************************************
2  * aout_sdl.c : audio sdl functions library
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: aout_sdl.c,v 1.26 2002/02/24 20:51:10 gbazin Exp $
6  *
7  * Authors: Michel Kaempf <maxx@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Pierre Baillet <oct@zoy.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <errno.h>                                                 /* ENOMEM */
30 #include <fcntl.h>                                       /* open(), O_WRONLY */
31 #include <string.h>                                            /* strerror() */
32 #include <unistd.h>                                      /* write(), close() */
33 #include <stdio.h>                                           /* "intf_msg.h" */
34 #include <stdlib.h>                            /* calloc(), malloc(), free() */
35
36 #include <videolan/vlc.h>
37
38 #include SDL_INCLUDE_FILE
39
40 #include "audio_output.h"                                   /* aout_thread_t */
41
42 /*****************************************************************************
43  * aout_sys_t: dsp audio output method descriptor
44  *****************************************************************************
45  * This structure is part of the audio output thread descriptor.
46  * It describes the dsp specific properties of an audio device.
47  *****************************************************************************/
48
49 /* the overflow limit is used to prevent the fifo from growing too big */
50 #define OVERFLOWLIMIT 100000
51
52 typedef struct aout_sys_s
53 {
54     byte_t  * audio_buf;
55     int i_audio_end;
56
57     boolean_t b_active;
58
59 } aout_sys_t;
60
61 /*****************************************************************************
62  * Local prototypes.
63  *****************************************************************************/
64 static int     aout_Open        ( aout_thread_t *p_aout );
65 static int     aout_SetFormat   ( aout_thread_t *p_aout );
66 static long    aout_GetBufInfo  ( aout_thread_t *p_aout, long l_buffer_info );
67 static void    aout_Play        ( aout_thread_t *p_aout,
68                                   byte_t *buffer, int i_size );
69 static void    aout_Close       ( aout_thread_t *p_aout );
70
71 static void    aout_SDLCallback ( void *userdata, Uint8 *stream, int len );
72
73 /*****************************************************************************
74  * Functions exported as capabilities. They are declared as static so that
75  * we don't pollute the namespace too much.
76  *****************************************************************************/
77 void _M( aout_getfunctions )( function_list_t * p_function_list )
78 {
79     p_function_list->functions.aout.pf_open = aout_Open;
80     p_function_list->functions.aout.pf_setformat = aout_SetFormat;
81     p_function_list->functions.aout.pf_getbufinfo = aout_GetBufInfo;
82     p_function_list->functions.aout.pf_play = aout_Play;
83     p_function_list->functions.aout.pf_close = aout_Close;
84 }
85
86 /*****************************************************************************
87  * aout_Open: open the audio device
88  *****************************************************************************
89  * This function opens the dsp as a usual non-blocking write-only file, and
90  * modifies the p_aout->i_fd with the file's descriptor.
91  *****************************************************************************/
92 static int aout_Open( aout_thread_t *p_aout )
93 {
94     SDL_AudioSpec desired;
95     int i_channels = p_aout->b_stereo ? 2 : 1;
96
97     if( SDL_WasInit( SDL_INIT_AUDIO ) != 0 )
98     {
99         return( 1 );
100     }
101
102     /* Allocate structure */
103     p_aout->p_sys = malloc( sizeof( aout_sys_t ) );
104
105     if( p_aout->p_sys == NULL )
106     {
107         intf_ErrMsg( "aout error: %s", strerror(ENOMEM) );
108         return( 1 );
109     }
110
111     /* Initialize library */
112     if( SDL_Init( SDL_INIT_AUDIO
113 #ifndef WIN32
114     /* Win32 SDL implementation doesn't support SDL_INIT_EVENTTHREAD yet*/
115                 | SDL_INIT_EVENTTHREAD
116 #endif
117 #ifdef DEBUG
118     /* In debug mode you may want vlc to dump a core instead of staying
119      * stuck */
120                 | SDL_INIT_NOPARACHUTE
121 #endif
122                 ) < 0 )
123     {
124         intf_ErrMsg( "aout error: can't initialize SDL (%s)", SDL_GetError() );
125         free( p_aout->p_sys );
126         return( 1 );
127     }
128
129     p_aout->p_sys->i_audio_end = 0;
130     p_aout->p_sys->audio_buf = malloc( OVERFLOWLIMIT );
131
132     /* Initialize some variables */
133     desired.freq =     p_aout->l_rate;
134
135     /* TODO: write conversion beetween AOUT_FORMAT_DEFAULT
136      * AND AUDIO* from SDL. */
137     desired.format     = AUDIO_S16LSB;                     /* stereo 16 bits */
138     desired.channels   = i_channels;
139     desired.callback   = aout_SDLCallback;
140     desired.userdata   = p_aout->p_sys;
141     desired.samples    = 1024;
142
143     /* Open the sound device
144      * we just ask the SDL to wrap at the good frequency if the one we
145      * ask for is unavailable. This is done by setting the second parar
146      * to NULL
147      */
148     if( SDL_OpenAudio( &desired, NULL ) < 0 )
149     {
150         intf_ErrMsg( "aout error: SDL_OpenAudio failed (%s)", SDL_GetError() );
151         SDL_QuitSubSystem( SDL_INIT_AUDIO );
152         free( p_aout->p_sys );
153         return( -1 );
154     }
155
156     p_aout->p_sys->b_active = 1;
157     SDL_PauseAudio( 0 );
158
159     return( 0 );
160 }
161
162 /*****************************************************************************
163  * aout_SetFormat: reset the audio device and sets its format
164  *****************************************************************************
165  * This functions resets the audio device, tries to initialize the output
166  * format with the value contained in the dsp structure, and if this value
167  * could not be set, the default value returned by ioctl is set. It then
168  * does the same for the stereo mode, and for the output rate.
169  *****************************************************************************/
170 static int aout_SetFormat( aout_thread_t *p_aout )
171 {
172     /* TODO: finish and clean this */
173     SDL_AudioSpec desired;
174     int i_stereo = p_aout->b_stereo ? 2 : 1;
175
176     /*i_format = p_aout->i_format;*/
177     desired.freq       = p_aout->l_rate;             /* Set the output rate */
178     desired.format     = AUDIO_S16LSB;                    /* stereo 16 bits */
179     desired.channels   = i_stereo;
180     desired.callback   = aout_SDLCallback;
181     desired.userdata   = p_aout->p_sys;
182     desired.samples    = 2048;
183
184     /* Open the sound device */
185     SDL_PauseAudio( 1 );
186     SDL_CloseAudio();
187
188     if( SDL_OpenAudio( &desired, NULL ) < 0 )
189     {
190         p_aout->p_sys->b_active = 0;
191         return( -1 );
192     }
193
194     p_aout->p_sys->b_active = 1;
195     SDL_PauseAudio( 0 );
196
197     return( 0 );
198 }
199
200 /*****************************************************************************
201  * aout_GetBufInfo: buffer status query
202  *****************************************************************************
203  * returns the number of bytes in the audio buffer compared to the size of
204  * l_buffer_limit...
205  *****************************************************************************/
206 static long aout_GetBufInfo( aout_thread_t *p_aout, long l_buffer_limit )
207 {
208     if(l_buffer_limit > p_aout->p_sys->i_audio_end)
209     {
210         /* returning 0 here juste gives awful sound in the speakers :/ */
211         return( l_buffer_limit );
212     }
213     return( p_aout->p_sys->i_audio_end - l_buffer_limit);
214 }
215
216 /*****************************************************************************
217  * aout_Play: play a sound samples buffer
218  *****************************************************************************
219  * This function writes a buffer of i_length bytes in the dsp
220  *****************************************************************************/
221 static void aout_Play( aout_thread_t *p_aout, byte_t *buffer, int i_size )
222 {
223     byte_t * audio_buf = p_aout->p_sys->audio_buf;
224
225     SDL_LockAudio();                                     /* Stop callbacking */
226
227     p_aout->p_sys->audio_buf = realloc( audio_buf,
228                                         p_aout->p_sys->i_audio_end + i_size);
229     memcpy( p_aout->p_sys->audio_buf + p_aout->p_sys->i_audio_end,
230             buffer, i_size);
231
232     p_aout->p_sys->i_audio_end += i_size;
233
234     SDL_UnlockAudio();                                  /* go on callbacking */
235 }
236
237 /*****************************************************************************
238  * aout_Close: close the audio device
239  *****************************************************************************/
240 static void aout_Close( aout_thread_t *p_aout )
241 {
242     if( p_aout->p_sys->b_active )
243     {
244         SDL_PauseAudio( 1 );                                  /* pause audio */
245
246         if( p_aout->p_sys->audio_buf != NULL )  /* do we have a buffer now ? */
247         {
248             free( p_aout->p_sys->audio_buf );
249         }
250     }
251
252     SDL_CloseAudio();
253
254     SDL_QuitSubSystem( SDL_INIT_AUDIO );
255
256     free( p_aout->p_sys );                              /* Close the Output. */
257 }
258
259 /*****************************************************************************
260  * aout_SDLCallback: what to do once SDL has played sound samples
261  *****************************************************************************/
262 static void aout_SDLCallback( void *userdata, byte_t *stream, int len )
263 {
264     struct aout_sys_s * p_sys = userdata;
265
266     if( p_sys->i_audio_end > OVERFLOWLIMIT )
267     {
268         intf_ErrMsg( "aout error: aout_SDLCallback overflowed" );
269
270         free( p_sys->audio_buf );
271         p_sys->audio_buf = NULL;
272
273         p_sys->i_audio_end = 0;
274         /* we've gone to slow, increase output freq */
275     }
276
277     /* if we are not in underrun */
278     if( p_sys->i_audio_end > len )
279     {
280         p_sys->i_audio_end -= len;
281         memcpy( stream, p_sys->audio_buf, len );
282         memmove( p_sys->audio_buf, p_sys->audio_buf + len, p_sys->i_audio_end );
283     }
284 }
285