]> git.sesse.net Git - vlc/blob - modules/audio_output/sdl.c
* Fixed AOUT_CHAN_CHANNEL2 trivial mixer,
[vlc] / modules / audio_output / sdl.c
1 /*****************************************************************************
2  * sdl.c : SDL audio output plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2002 VideoLAN
5  * $Id: sdl.c,v 1.14 2002/10/16 23:12:45 massiot Exp $
6  *
7  * Authors: Michel Kaempf <maxx@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Pierre Baillet <oct@zoy.org>
10  *          Christophe Massiot <massiot@via.ecp.fr>
11  *      
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <errno.h>                                                 /* ENOMEM */
31 #include <fcntl.h>                                       /* open(), O_WRONLY */
32 #include <string.h>                                            /* strerror() */
33 #include <unistd.h>                                      /* write(), close() */
34 #include <stdlib.h>                            /* calloc(), malloc(), free() */
35
36 #include <vlc/vlc.h>
37 #include <vlc/aout.h>
38 #include "aout_internal.h"
39
40 #include SDL_INCLUDE_FILE
41
42 #define FRAME_SIZE 2048
43
44 /*****************************************************************************
45  * aout_sys_t: SDL audio output method descriptor
46  *****************************************************************************
47  * This structure is part of the audio output thread descriptor.
48  * It describes the specific properties of an audio device.
49  *****************************************************************************/
50 struct aout_sys_t
51 {   
52     mtime_t next_date;
53     mtime_t buffer_time;
54 };
55
56 /*****************************************************************************
57  * Local prototypes
58  *****************************************************************************/
59 static int  Open        ( vlc_object_t * );
60 static void Close       ( vlc_object_t * );
61 static void Play        ( aout_instance_t * );
62 static void SDLCallback ( void *, Uint8 *, int );
63
64 /*****************************************************************************
65  * Module descriptor
66  *****************************************************************************/
67 vlc_module_begin();
68     set_description( _("Simple DirectMedia Layer audio module") );
69     set_capability( "audio output", 40 );
70     add_shortcut( "sdl" );
71     set_callbacks( Open, Close );
72 vlc_module_end();
73
74 /*****************************************************************************
75  * Open: open the audio device
76  *****************************************************************************/
77 static int Open ( vlc_object_t *p_this )
78 {
79     aout_instance_t *p_aout = (aout_instance_t *)p_this;
80     SDL_AudioSpec desired, obtained;
81     int i_nb_channels;
82
83     /* Check that no one uses the DSP. */
84     Uint32 i_flags = SDL_INIT_AUDIO;
85     if( SDL_WasInit( i_flags ) )
86     {
87         return VLC_EGENERIC;
88     }
89
90 #ifndef WIN32
91     /* Win32 SDL implementation doesn't support SDL_INIT_EVENTTHREAD yet */
92     i_flags |= SDL_INIT_EVENTTHREAD;
93 #endif
94 #ifdef DEBUG
95     /* In debug mode you may want vlc to dump a core instead of staying
96      * stuck */
97     i_flags |= SDL_INIT_NOPARACHUTE;
98 #endif
99
100     /* Initialize library */
101     if( SDL_Init( i_flags ) < 0 )
102     {
103         msg_Err( p_aout, "cannot initialize SDL (%s)", SDL_GetError() );
104         return VLC_EGENERIC;
105     }
106
107     i_nb_channels = aout_FormatNbChannels( &p_aout->output.output );
108     if ( i_nb_channels > 2 )
109     {
110         /* SDL doesn't support more than two channels. */
111         i_nb_channels = 2;
112         p_aout->output.output.i_channels = AOUT_CHAN_STEREO;
113     }
114     desired.freq       = p_aout->output.output.i_rate;
115     desired.format     = AUDIO_S16SYS;
116     desired.channels   = i_nb_channels;
117     desired.callback   = SDLCallback;
118     desired.userdata   = p_aout;
119     desired.samples    = FRAME_SIZE;
120
121     /* Open the sound device. */
122     if( SDL_OpenAudio( &desired, &obtained ) < 0 )
123     {
124         return VLC_EGENERIC;
125     }
126
127     SDL_PauseAudio( 0 );
128
129     /* Now have a look at what we got. */
130     switch ( obtained.format )
131     {
132     case AUDIO_S16LSB:
133         p_aout->output.output.i_format = VLC_FOURCC('s','1','6','l'); break;
134     case AUDIO_S16MSB:
135         p_aout->output.output.i_format = VLC_FOURCC('s','1','6','b'); break;
136     case AUDIO_U16LSB:
137         p_aout->output.output.i_format = VLC_FOURCC('u','1','6','l'); break;
138     case AUDIO_U16MSB:
139         p_aout->output.output.i_format = VLC_FOURCC('u','1','6','b'); break;
140     case AUDIO_S8:
141         p_aout->output.output.i_format = VLC_FOURCC('s','8',' ',' '); break;
142     case AUDIO_U8:
143         p_aout->output.output.i_format = VLC_FOURCC('u','8',' ',' '); break;
144     }
145     /* Volume is entirely done in software. */
146     aout_VolumeSoftInit( p_aout );
147
148     if ( obtained.channels != i_nb_channels )
149     {
150         p_aout->output.output.i_channels = (obtained.channels == 2 ?
151                                             AOUT_CHAN_STEREO :
152                                             AOUT_CHAN_MONO);
153     }
154     p_aout->output.output.i_rate = obtained.freq;
155     p_aout->output.i_nb_samples = obtained.samples;
156     p_aout->output.pf_play = Play;
157
158     return VLC_SUCCESS;
159 }
160
161 /*****************************************************************************
162  * Play: play a sound samples buffer
163  *****************************************************************************/
164 static void Play( aout_instance_t * p_aout )
165 {
166 }
167
168 /*****************************************************************************
169  * Close: close the audio device
170  *****************************************************************************/
171 static void Close ( vlc_object_t *p_this )
172 {
173     SDL_PauseAudio( 1 );
174     SDL_CloseAudio();
175     SDL_QuitSubSystem( SDL_INIT_AUDIO );
176 }
177
178 /*****************************************************************************
179  * SDLCallback: what to do once SDL has played sound samples
180  *****************************************************************************/
181 static void SDLCallback( void * _p_aout, byte_t * p_stream, int i_len )
182 {
183     aout_instance_t * p_aout = (aout_instance_t *)_p_aout;
184     aout_buffer_t *   p_buffer;
185
186     /* SDL is unable to call us at regular times, or tell us its current
187      * hardware latency, or the buffer state. So we just pop data and throw
188      * it at SDL's face. Nah. */
189
190     vlc_mutex_lock( &p_aout->output_fifo_lock );
191     p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
192     vlc_mutex_unlock( &p_aout->output_fifo_lock );
193
194     if ( p_buffer != NULL )
195     {
196         p_aout->p_vlc->pf_memcpy( p_stream, p_buffer->p_buffer, i_len );
197         aout_BufferFree( p_buffer );
198     }
199     else
200     {
201         p_aout->p_vlc->pf_memset( p_stream, 0, i_len );
202     }
203 }
204