]> git.sesse.net Git - vlc/blob - modules/audio_output/oss.c
fixed some insanities which coused this module to fail on a52 sound
[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.29 2002/10/02 15:37:58 sigmunau 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 };
66
67 #define FRAME_SIZE 1024
68 #define FRAME_COUNT 8
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 void Play         ( aout_instance_t * );
78 static int  OSSThread    ( aout_instance_t * );
79
80 /*****************************************************************************
81  * Module descriptor
82  *****************************************************************************/
83 vlc_module_begin();
84     add_category_hint( N_("OSS"), NULL );
85     add_file( "dspdev", "/dev/dsp", NULL, N_("OSS dsp device"), NULL );
86     set_description( _("Linux OSS /dev/dsp module") );
87     set_capability( "audio output", 100 );
88     add_shortcut( "dsp" );
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     int i_format, i_format_orig;
104     int i_rate;
105     int i_frame_size;
106     int i_fragments;
107     vlc_bool_t b_stereo;
108
109     /* Allocate structure */
110     p_aout->output.p_sys = p_sys = malloc( sizeof( aout_sys_t ) );
111     if( p_sys == NULL )
112     {
113         msg_Err( p_aout, "out of memory" );
114         return VLC_ENOMEM;
115     }
116
117     /* Initialize some variables */
118     if( (psz_device = config_GetPsz( p_aout, "dspdev" )) == NULL )
119     {
120         msg_Err( p_aout, "no audio device given (maybe /dev/dsp ?)" );
121         free( p_sys );
122         return VLC_EGENERIC;
123     }
124
125     /* Open the sound device */
126     if( (p_sys->i_fd = open( psz_device, O_WRONLY )) < 0 )
127     {
128         msg_Err( p_aout, "cannot open audio device (%s)", psz_device );
129         free( psz_device );
130         free( p_sys );
131         return VLC_EGENERIC;
132     }
133     free( psz_device );
134
135     p_aout->output.pf_play = Play;
136
137     /* Reset the DSP device */
138     if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 )
139     {
140         msg_Err( p_aout, "cannot reset OSS audio device" );
141         return VLC_EGENERIC;
142     }
143     
144     /* Set the fragment size
145      * i_fragment = xxxxyyyy where: xxxx        is fragtotal
146      *                              1 << yyyy   is fragsize */
147     i_fragments = 0;
148     i_frame_size = FRAME_SIZE;
149     while( i_frame_size >>= 1 )
150     {
151         ++i_fragments;
152     }
153     i_fragments |= FRAME_COUNT << 16;
154     if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFRAGMENT, &i_fragments ) < 0 )
155     {
156         msg_Err( p_aout, "cannot set fragment size (%.8x)", i_fragments );
157         return VLC_EGENERIC;
158     }
159
160     /* Set the output format */
161     if ( p_aout->output.output.i_format == VLC_FOURCC('s','p','d','i') )
162     {
163         i_format = AFMT_AC3;
164         i_format_orig = AFMT_AC3;
165         p_aout->output.i_nb_samples = A52_FRAME_NB;
166         p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
167         p_aout->output.output.i_frame_length = A52_FRAME_NB;
168
169         aout_VolumeNoneInit( p_aout );
170     }
171     else
172     {
173         p_aout->output.output.i_format = AOUT_FMT_S16_NE;
174         i_format = AFMT_S16_NE;
175         i_format_orig = AFMT_S16_NE;
176         p_aout->output.i_nb_samples = FRAME_SIZE;
177
178         aout_VolumeSoftInit( p_aout );
179     }
180
181     if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
182          || i_format != i_format_orig )
183     {
184         if ( i_format_orig == AFMT_AC3 )
185         {
186             /* Retry with S16 */
187             msg_Warn( p_aout, "cannot set audio output format (%i)", i_format_orig );
188             p_aout->output.output.i_format = AOUT_FMT_S16_NE;
189             i_format = AFMT_S16_NE;
190             i_format_orig = AFMT_S16_NE;
191             p_aout->output.i_nb_samples = FRAME_SIZE;
192             if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
193                  || i_format != i_format_orig )
194             {
195                 msg_Err( p_aout, "cannot set audio output format (%i)",
196                          i_format_orig );
197                 return VLC_EGENERIC;
198             }
199         }
200         else
201         {
202             msg_Err( p_aout, "cannot set audio output format (%i)", i_format_orig );
203             return VLC_EGENERIC;
204         }
205     }
206
207     if ( p_aout->output.output.i_format != VLC_FOURCC('s','p','d','i') )
208     {
209         /* FIXME */
210         if ( p_aout->output.output.i_channels > 2 )
211         {
212             msg_Warn( p_aout, "only two channels are supported at the moment" );
213             /* Trigger downmixing */
214             p_aout->output.output.i_channels = 2;
215         }
216
217         /* Set the number of channels */
218         b_stereo = p_aout->output.output.i_channels - 1;
219
220         if( ioctl( p_sys->i_fd, SNDCTL_DSP_STEREO, &b_stereo ) < 0 )
221         {
222             msg_Err( p_aout, "cannot set number of audio channels (%i)",
223                               p_aout->output.output.i_channels );
224             return VLC_EGENERIC;
225         }
226
227         if ( b_stereo + 1 != p_aout->output.output.i_channels )
228         {
229             msg_Warn( p_aout, "driver forced up/downmixing %li->%li",
230                               p_aout->output.output.i_channels,
231                               b_stereo + 1 );
232             p_aout->output.output.i_channels = b_stereo + 1;
233         }
234
235         /* Set the output rate */
236         i_rate = p_aout->output.output.i_rate;
237         if( ioctl( p_sys->i_fd, SNDCTL_DSP_SPEED, &i_rate ) < 0 )
238         {
239             msg_Err( p_aout, "cannot set audio output rate (%i)",
240                              p_aout->output.output.i_rate );
241             return VLC_EGENERIC;
242         }
243
244         if( i_rate != p_aout->output.output.i_rate )
245         {
246             msg_Warn( p_aout, "driver forced resampling %li->%li",
247                               p_aout->output.output.i_rate, i_rate );
248             p_aout->output.output.i_rate = i_rate;
249         }
250     }
251
252     /* Create OSS thread and wait for its readiness. */
253     if( vlc_thread_create( p_aout, "aout", OSSThread,
254                            VLC_THREAD_PRIORITY_OUTPUT, VLC_FALSE ) )
255     {
256         msg_Err( p_aout, "cannot create OSS thread (%s)", strerror(errno) );
257         close( p_sys->i_fd );
258         free( psz_device );
259         free( p_sys );
260         return VLC_ETHREAD;
261     }
262
263     return VLC_SUCCESS;
264 }
265
266 /*****************************************************************************
267  * Play: nothing to do
268  *****************************************************************************/
269 static void Play( aout_instance_t *p_aout )
270 {
271 }
272
273 /*****************************************************************************
274  * Close: close the dsp audio device
275  *****************************************************************************/
276 static void Close( vlc_object_t * p_this )
277 {
278     aout_instance_t *p_aout = (aout_instance_t *)p_this;
279     struct aout_sys_t * p_sys = p_aout->output.p_sys;
280
281     p_aout->b_die = VLC_TRUE;
282     vlc_thread_join( p_aout );
283     p_aout->b_die = VLC_FALSE;
284
285     ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL );
286     close( p_sys->i_fd );
287
288     free( p_sys );
289 }
290
291
292 /*****************************************************************************
293  * BufferDuration: buffer status query
294  *****************************************************************************
295  * This function returns the duration in microseconds of the current buffer.
296  *****************************************************************************/
297 static mtime_t BufferDuration( aout_instance_t * p_aout )
298 {
299     struct aout_sys_t * p_sys = p_aout->output.p_sys;
300     audio_buf_info audio_buf;
301     int i_bytes;
302
303     /* Fill the audio_buf_info structure:
304      * - fragstotal: total number of fragments allocated
305      * - fragsize: size of a fragment in bytes
306      * - bytes: available space in bytes (includes partially used fragments)
307      * Note! 'bytes' could be more than fragments*fragsize */
308     ioctl( p_sys->i_fd, SNDCTL_DSP_GETOSPACE, &audio_buf );
309
310     /* calculate number of available fragments (not partially used ones) */
311     i_bytes = (audio_buf.fragstotal * audio_buf.fragsize) - audio_buf.bytes;
312
313     /* Return the fragment duration */
314     return (mtime_t)i_bytes * 1000000
315             / p_aout->output.output.i_bytes_per_frame
316             / p_aout->output.output.i_rate
317             * p_aout->output.output.i_frame_length;
318 }
319
320 /*****************************************************************************
321  * OSSThread: asynchronous thread used to DMA the data to the device
322  *****************************************************************************/
323 static int OSSThread( aout_instance_t * p_aout )
324 {
325     struct aout_sys_t * p_sys = p_aout->output.p_sys;
326     mtime_t next_date = 0;
327
328     while ( !p_aout->b_die )
329     {
330         aout_buffer_t * p_buffer = NULL;
331         int i_tmp, i_size;
332         byte_t * p_bytes;
333
334         if ( p_aout->output.output.i_format != VLC_FOURCC('s','p','d','i') )
335         {
336             mtime_t buffered = BufferDuration( p_aout );
337
338             /* Wait a bit - we don't want our buffer to be full */
339             while( buffered > AOUT_PTS_TOLERANCE * 2 )
340             {
341                 msleep( buffered / 2 - 10000 );
342                 buffered = BufferDuration( p_aout );
343             }
344
345             if( !next_date )
346             {
347                 /* This is the _real_ presentation date */
348                 next_date = mdate() + buffered;
349             }
350             else
351             {
352                 /* Give a hint to the audio output about our drift, but
353                  * not too much because we want to make it happy with our
354                  * nicely calculated dates. */
355                 next_date = ( (next_date * 7) + (mdate() + buffered) ) / 8;
356             }
357
358             /* Next buffer will be played at mdate()+buffered */
359             p_buffer = aout_OutputNextBuffer( p_aout, next_date, VLC_FALSE );
360         }
361         else
362         {
363             /* emu10k1 driver does not report Buffer Duration correctly in
364              * passthrough mode so we have to cheat */
365             if( !next_date )
366             {
367                 next_date = mdate();
368             }
369             else
370             {
371                 mtime_t delay = next_date - mdate();
372                 if( delay > AOUT_PTS_TOLERANCE )
373                 {
374                     msleep( delay / 2 );
375                 }
376             }
377             
378             while( !p_aout->b_die && ! ( p_buffer =
379                 aout_OutputNextBuffer( p_aout, next_date, VLC_TRUE ) ) )
380             {
381                 msleep( 1000 );
382                 next_date = mdate();
383             }
384         }
385
386         if ( p_buffer != NULL )
387         {
388             p_bytes = p_buffer->p_buffer;
389             i_size = p_buffer->i_nb_bytes;
390             /* This is theoretical ... we'll see next iteration whether
391              * we're drifting */
392             next_date += p_buffer->end_date - p_buffer->start_date;
393         }
394         else
395         {
396             i_size = FRAME_SIZE / p_aout->output.output.i_frame_length
397                       * p_aout->output.output.i_bytes_per_frame;
398             p_bytes = malloc( i_size );
399             memset( p_bytes, 0, i_size );
400             next_date = 0;
401         }
402
403         i_tmp = write( p_sys->i_fd, p_bytes, i_size );
404
405         if( i_tmp < 0 )
406         {
407             msg_Err( p_aout, "write failed (%s)", strerror(errno) );
408         }
409
410         if ( p_buffer != NULL )
411         {
412             aout_BufferFree( p_buffer );
413         }
414         else
415         {
416             free( p_bytes );
417         }
418     }
419
420     return VLC_SUCCESS;
421 }