]> git.sesse.net Git - vlc/blob - modules/audio_output/oss.c
* Added a third argument to aout_OutputNextBuffer. In case the buffer
[vlc] / modules / audio_output / oss.c
1 /*****************************************************************************
2  * oss.c : OSS /dev/dsp module for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2002 VideoLAN
5  * $Id: oss.c,v 1.10 2002/08/14 00:43:52 massiot Exp $
6  *
7  * Authors: Michel Kaempf <maxx@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Christophe Massiot <massiot@via.ecp.fr>
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 <sys/ioctl.h>                                            /* ioctl() */
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
38 #ifdef HAVE_ALLOCA_H
39 #   include <alloca.h>
40 #endif
41
42 #include <vlc/aout.h>
43
44 #include "aout_internal.h"
45
46 /* SNDCTL_DSP_RESET, SNDCTL_DSP_SETFMT, SNDCTL_DSP_STEREO, SNDCTL_DSP_SPEED,
47  * SNDCTL_DSP_GETOSPACE */
48 #ifdef HAVE_SOUNDCARD_H
49 #   include <soundcard.h>
50 #elif defined( HAVE_SYS_SOUNDCARD_H )
51 #   include <sys/soundcard.h>
52 #elif defined( HAVE_MACHINE_SOUNDCARD_H )
53 #   include <machine/soundcard.h>
54 #endif
55
56 /*****************************************************************************
57  * aout_sys_t: OSS audio output method descriptor
58  *****************************************************************************
59  * This structure is part of the audio output thread descriptor.
60  * It describes the dsp specific properties of an audio device.
61  *****************************************************************************/
62 struct aout_sys_t
63 {
64     int                   i_fd;
65     volatile vlc_bool_t   b_initialized;
66 };
67
68 #define FRAME_SIZE 2048
69 #define A52_FRAME_NB 1536
70
71 /*****************************************************************************
72  * Local prototypes
73  *****************************************************************************/
74 static int  Open         ( vlc_object_t * );
75 static void Close        ( vlc_object_t * );
76
77 static int  SetFormat    ( aout_instance_t * );
78 static void Play         ( aout_instance_t *, aout_buffer_t * );
79 static int  OSSThread    ( aout_instance_t * );
80
81 /*****************************************************************************
82  * Module descriptor
83  *****************************************************************************/
84 vlc_module_begin();
85     add_category_hint( N_("Audio"), NULL );
86     add_file( "dspdev", "/dev/dsp", NULL, N_("OSS dsp device"), NULL );
87     set_description( _("Linux OSS /dev/dsp module") );
88     set_capability( "audio output", 100 );
89     set_callbacks( Open, Close );
90 vlc_module_end();
91
92 /*****************************************************************************
93  * Open: open the audio device (the digital sound processor)
94  *****************************************************************************
95  * This function opens the dsp as a usual non-blocking write-only file, and
96  * modifies the p_aout->p_sys->i_fd with the file's descriptor.
97  *****************************************************************************/
98 static int Open( vlc_object_t *p_this )
99 {
100     aout_instance_t * p_aout = (aout_instance_t *)p_this;
101     struct aout_sys_t * p_sys;
102     char * psz_device;
103
104     /* Allocate structure */
105     p_aout->output.p_sys = p_sys = malloc( sizeof( aout_sys_t ) );
106     if( p_sys == NULL )
107     {
108         msg_Err( p_aout, "out of memory" );
109         return 1;
110     }
111
112     /* Initialize some variables */
113     if( (psz_device = config_GetPsz( p_aout, "dspdev" )) == NULL )
114     {
115         msg_Err( p_aout, "no audio device given (maybe /dev/dsp ?)" );
116         free( p_sys );
117         return -1;
118     }
119
120     /* Open the sound device */
121     if( (p_sys->i_fd = open( psz_device, O_WRONLY )) < 0 )
122     {
123         msg_Err( p_aout, "cannot open audio device (%s)", psz_device );
124         free( psz_device );
125         free( p_sys );
126         return -1;
127     }
128     free( psz_device );
129
130     /* Create OSS thread and wait for its readiness. */
131     p_sys->b_initialized = VLC_FALSE;
132     if( vlc_thread_create( p_aout, "aout", OSSThread, VLC_FALSE ) )
133     {
134         msg_Err( p_aout, "cannot create OSS thread (%s)", strerror(errno) );
135         free( psz_device );
136         free( p_sys );
137         return -1;
138     }
139
140     p_aout->output.pf_setformat = SetFormat;
141     p_aout->output.pf_play = Play;
142
143     return 0;
144 }
145
146 /*****************************************************************************
147  * SetFormat: reset the dsp and set its format
148  *****************************************************************************
149  * This functions resets the DSP device, tries to initialize the output
150  * format with the value contained in the dsp structure, and if this value
151  * could not be set, the default value returned by ioctl is set. It then
152  * does the same for the stereo mode, and for the output rate.
153  *****************************************************************************/
154 static int SetFormat( aout_instance_t *p_aout )
155 {
156     struct aout_sys_t * p_sys = p_aout->output.p_sys;
157     int i_format;
158     int i_rate;
159     vlc_bool_t b_stereo;
160
161     p_sys->b_initialized = VLC_FALSE;
162
163     /* Reset the DSP device */
164     if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 )
165     {
166         msg_Err( p_aout, "cannot reset OSS audio device" );
167         return -1;
168     }
169
170     /* Set the output format */
171     if ( p_aout->output.output.i_format == AOUT_FMT_SPDIF )
172     {
173         p_aout->output.i_nb_samples = A52_FRAME_NB;
174         p_aout->output.output.i_bytes_per_sec = p_aout->output.output.i_rate
175                                      * AOUT_SPDIF_SIZE / A52_FRAME_NB;
176     }
177     else
178     {
179         p_aout->output.output.i_format = i_format = AOUT_FMT_S16_NE;
180         p_aout->output.i_nb_samples = FRAME_SIZE;
181     }
182
183     if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
184          || i_format != p_aout->output.output.i_format )
185     {
186         msg_Err( p_aout, "cannot set audio output format (%i)",
187                           i_format );
188         return -1;
189     }
190
191     if ( p_aout->output.output.i_format != AOUT_FMT_SPDIF )
192     {
193         /* FIXME */
194         if ( p_aout->output.output.i_channels > 2 )
195         {
196             msg_Warn( p_aout, "only two channels are supported at the moment" );
197             /* Trigger downmixing */
198             p_aout->output.output.i_channels = 2;
199         }
200
201         /* Set the number of channels */
202         b_stereo = p_aout->output.output.i_channels - 1;
203
204         if( ioctl( p_sys->i_fd, SNDCTL_DSP_STEREO, &b_stereo ) < 0 )
205         {
206             msg_Err( p_aout, "cannot set number of audio channels (%i)",
207                               p_aout->output.output.i_channels );
208             return -1;
209         }
210
211         if ( b_stereo + 1 != p_aout->output.output.i_channels )
212         {
213             msg_Warn( p_aout, "driver forced up/downmixing %li->%li",
214                               p_aout->output.output.i_channels,
215                               b_stereo + 1 );
216             p_aout->output.output.i_channels = b_stereo + 1;
217         }
218
219         /* Set the output rate */
220         i_rate = p_aout->output.output.i_rate;
221         if( ioctl( p_sys->i_fd, SNDCTL_DSP_SPEED, &i_rate ) < 0 )
222         {
223             msg_Err( p_aout, "cannot set audio output rate (%i)",
224                              p_aout->output.output.i_rate );
225             return -1;
226         }
227
228         if( i_rate != p_aout->output.output.i_rate )
229         {
230             msg_Warn( p_aout, "driver forced resampling %li->%li",
231                               p_aout->output.output.i_rate, i_rate );
232             p_aout->output.output.i_rate = i_rate;
233         }
234     }
235
236     p_sys->b_initialized = VLC_TRUE;
237
238     return 0;
239 }
240
241 /*****************************************************************************
242  * Play: queue a buffer for playing by OSSThread
243  *****************************************************************************/
244 static void Play( aout_instance_t *p_aout, aout_buffer_t * p_buffer )
245 {
246     aout_FifoPush( p_aout, &p_aout->output.fifo, p_buffer );
247 }
248
249 /*****************************************************************************
250  * Close: close the dsp audio device
251  *****************************************************************************/
252 static void Close( vlc_object_t * p_this )
253 {
254     aout_instance_t *p_aout = (aout_instance_t *)p_this;
255     struct aout_sys_t * p_sys = p_aout->output.p_sys;
256
257     p_aout->b_die = 1;
258     vlc_thread_join( p_aout );
259
260     close( p_sys->i_fd );
261     free( p_sys );
262 }
263
264
265 /*****************************************************************************
266  * GetBufInfo: buffer status query
267  *****************************************************************************
268  * This function fills in the audio_buf_info structure :
269  * - returns : number of available fragments (not partially used ones)
270  * - int fragstotal : total number of fragments allocated
271  * - int fragsize : size of a fragment in bytes
272  * - int bytes : available space in bytes (includes partially used fragments)
273  * Note! 'bytes' could be more than fragments*fragsize
274  *****************************************************************************/
275 static int GetBufInfo( aout_instance_t * p_aout )
276 {
277     struct aout_sys_t * p_sys = p_aout->output.p_sys;
278     audio_buf_info audio_buf;
279
280     ioctl( p_sys->i_fd, SNDCTL_DSP_GETOSPACE, &audio_buf );
281
282     /* returns the allocated space in bytes */
283     return ( (audio_buf.fragstotal * audio_buf.fragsize) - audio_buf.bytes );
284 }
285
286 /*****************************************************************************
287  * OSSThread: asynchronous thread used to DMA the data to the device
288  *****************************************************************************/
289 static int OSSThread( aout_instance_t * p_aout )
290 {
291     struct aout_sys_t * p_sys = p_aout->output.p_sys;
292
293     while ( !p_aout->b_die )
294     {
295         aout_buffer_t * p_buffer;
296         int i_tmp, i_size;
297         byte_t * p_bytes;
298
299         if( !p_sys->b_initialized )
300         {
301             msleep( THREAD_SLEEP );
302             continue;
303         }
304
305         if ( p_aout->output.output.i_format != AOUT_FMT_SPDIF )
306         {
307             mtime_t next_date = 0;
308             /* Get the presentation date of the next write() operation. It
309              * is equal to the current date + duration of buffered samples.
310              * Order is important here, since GetBufInfo is believed to take
311              * more time than mdate(). */
312             next_date = (mtime_t)GetBufInfo( p_aout ) * 1000000
313                       / aout_FormatToByterate( &p_aout->output.output );
314             next_date += mdate();
315
316             p_buffer = aout_OutputNextBuffer( p_aout, next_date, 0 );
317         }
318         else
319         {
320             p_buffer = aout_OutputNextBuffer( p_aout, 0, 1 );
321         }
322
323         if ( p_buffer != NULL )
324         {
325             p_bytes = p_buffer->p_buffer;
326             i_size = p_buffer->i_nb_bytes;
327         }
328         else
329         {
330             i_size = aout_FormatToByterate( &p_aout->output.output )
331                       * FRAME_SIZE
332                       / p_aout->output.output.i_rate;
333             p_bytes = alloca( i_size );
334             memset( p_bytes, 0, i_size );
335         }
336
337         i_tmp = write( p_sys->i_fd, p_bytes, i_size );
338
339         if( i_tmp < 0 )
340         {
341             msg_Err( p_aout, "write failed (%s)", strerror(errno) );
342         }
343
344         if ( p_buffer != NULL )
345         {
346             aout_BufferFree( p_buffer );
347         }
348     }
349
350     return 0;
351 }