]> git.sesse.net Git - vlc/blob - modules/audio_output/sdl.c
7712c6be07171a7964b6f5dd36c0b6442c7d04b4
[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.12 2002/09/18 21:21:23 massiot 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 <stdlib.h>                            /* calloc(), malloc(), free() */
34
35 #include <vlc/vlc.h>
36 #include <vlc/aout.h>
37 #include "aout_internal.h"
38
39 #include SDL_INCLUDE_FILE
40
41 #define FRAME_SIZE 2048
42
43 /*****************************************************************************
44  * aout_sys_t: SDL audio output method descriptor
45  *****************************************************************************
46  * This structure is part of the audio output thread descriptor.
47  * It describes the specific properties of an audio device.
48  *****************************************************************************/
49 struct aout_sys_t
50 {   
51     mtime_t next_date;
52     mtime_t buffer_time;
53 };
54
55 /*****************************************************************************
56  * Local prototypes
57  *****************************************************************************/
58 static int  Open        ( vlc_object_t * );
59 static void Close       ( vlc_object_t * );
60 static void Play        ( aout_instance_t * );
61 static void SDLCallback ( void *, Uint8 *, int );
62
63 /*****************************************************************************
64  * Module descriptor
65  *****************************************************************************/
66 vlc_module_begin();
67     set_description( _("Simple DirectMedia Layer audio module") );
68     set_capability( "audio output", 40 );
69     set_callbacks( Open, Close );
70 vlc_module_end();
71
72 /*****************************************************************************
73  * Open: open the audio device
74  *****************************************************************************/
75 static int Open ( vlc_object_t *p_this )
76 {
77     aout_instance_t *p_aout = (aout_instance_t *)p_this;
78     SDL_AudioSpec desired;
79
80     Uint32 i_flags = SDL_INIT_AUDIO;
81
82     if( SDL_WasInit( i_flags ) )
83     {
84         return VLC_EGENERIC;
85     }
86
87     p_aout->output.pf_play = Play;
88
89     aout_VolumeSoftInit( p_aout );
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     if ( p_aout->output.output.i_channels > 2 )
108         p_aout->output.output.i_channels = 2;
109     p_aout->output.output.i_format = AOUT_FMT_S16_NE;
110     p_aout->output.i_nb_samples = FRAME_SIZE;
111
112     /* TODO: finish and clean this */
113
114     desired.freq       = p_aout->output.output.i_rate;
115     desired.format     = AUDIO_S16SYS;
116     desired.channels   = p_aout->output.output.i_channels;
117     desired.callback   = SDLCallback;
118     desired.userdata   = p_aout;
119     desired.samples    = FRAME_SIZE;
120
121     /* Open the sound device - FIXME : get the "natural" parameters */
122     if( SDL_OpenAudio( &desired, NULL ) < 0 )
123     {
124         return VLC_EGENERIC;
125     }
126
127     SDL_PauseAudio( 0 );
128
129     return VLC_SUCCESS;
130 }
131
132 /*****************************************************************************
133  * Play: play a sound samples buffer
134  *****************************************************************************/
135 static void Play( aout_instance_t * p_aout )
136 {
137 }
138
139 /*****************************************************************************
140  * Close: close the audio device
141  *****************************************************************************/
142 static void Close ( vlc_object_t *p_this )
143 {
144     SDL_PauseAudio( 1 );
145     SDL_CloseAudio();
146     SDL_QuitSubSystem( SDL_INIT_AUDIO );
147 }
148
149 /*****************************************************************************
150  * SDLCallback: what to do once SDL has played sound samples
151  *****************************************************************************/
152 static void SDLCallback( void * _p_aout, byte_t * p_stream, int i_len )
153 {
154     aout_instance_t * p_aout = (aout_instance_t *)_p_aout;
155     aout_buffer_t *   p_buffer;
156
157     /* SDL is unable to call us at regular times, or tell us its current
158      * hardware latency, or the buffer state. So we just pop data and throw
159      * it at SDL's face. Nah. */
160
161     vlc_mutex_lock( &p_aout->output_fifo_lock );
162     p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
163     vlc_mutex_unlock( &p_aout->output_fifo_lock );
164
165     if ( p_buffer != NULL )
166     {
167         p_aout->p_vlc->pf_memcpy( p_stream, p_buffer->p_buffer, i_len );
168         aout_BufferFree( p_buffer );
169     }
170     else
171     {
172         p_aout->p_vlc->pf_memset( p_stream, 0, i_len );
173     }
174 }
175