]> git.sesse.net Git - vlc/blob - modules/audio_output/oss.c
Merge branch 1.0-bugfix
[vlc] / modules / audio_output / oss.c
1 /*****************************************************************************
2  * oss.c : OSS /dev/dsp module for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2002 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Michel Kaempf <maxx@via.ecp.fr>
8  *          Sam 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <errno.h>                                                 /* ENOMEM */
35 #include <fcntl.h>                                       /* open(), O_WRONLY */
36 #include <sys/ioctl.h>                                            /* ioctl() */
37 #include <unistd.h>                                      /* write(), close() */
38
39 #include <vlc_common.h>
40 #include <vlc_plugin.h>
41
42 #ifdef HAVE_ALLOCA_H
43 #   include <alloca.h>
44 #endif
45
46 #include <vlc_aout.h>
47
48 /* SNDCTL_DSP_RESET, SNDCTL_DSP_SETFMT, SNDCTL_DSP_STEREO, SNDCTL_DSP_SPEED,
49  * SNDCTL_DSP_GETOSPACE */
50 #ifdef HAVE_SOUNDCARD_H
51 #   include <soundcard.h>
52 #elif defined( HAVE_SYS_SOUNDCARD_H )
53 #   include <sys/soundcard.h>
54 #endif
55
56 /* Patches for ignorant OSS versions */
57 #ifndef AFMT_AC3
58 #   define AFMT_AC3     0x00000400        /* Dolby Digital AC3 */
59 #endif
60
61 #ifndef AFMT_S16_NE
62 #   ifdef WORDS_BIGENDIAN
63 #       define AFMT_S16_NE AFMT_S16_BE
64 #   else
65 #       define AFMT_S16_NE AFMT_S16_LE
66 #   endif
67 #endif
68
69 /*****************************************************************************
70  * aout_sys_t: OSS audio output method descriptor
71  *****************************************************************************
72  * This structure is part of the audio output thread descriptor.
73  * It describes the DSP specific properties of an audio device.
74  *****************************************************************************/
75 struct aout_sys_t
76 {
77     int i_fd;
78     int b_workaround_buggy_driver;
79     int i_fragstotal;
80     mtime_t max_buffer_duration;
81 };
82
83 /* This must be a power of 2. */
84 #define FRAME_SIZE 1024
85 #define FRAME_COUNT 32
86
87 /*****************************************************************************
88  * Local prototypes
89  *****************************************************************************/
90 static int  Open         ( vlc_object_t * );
91 static void Close        ( vlc_object_t * );
92
93 static void Play         ( aout_instance_t * );
94 static void* OSSThread   ( vlc_object_t * );
95
96 static mtime_t BufferDuration( aout_instance_t * p_aout );
97
98 /*****************************************************************************
99  * Module descriptor
100  *****************************************************************************/
101 #define BUGGY_TEXT N_("Try to work around buggy OSS drivers")
102 #define BUGGY_LONGTEXT N_( \
103     "Some buggy OSS drivers just don't like when their internal buffers " \
104     "are completely filled (the sound gets heavily hashed). If you have one " \
105     "of these drivers, then you need to enable this option." )
106
107 vlc_module_begin ()
108     set_shortname( "OSS" )
109     set_description( N_("UNIX OSS audio output") )
110
111     set_category( CAT_AUDIO )
112     set_subcategory( SUBCAT_AUDIO_AOUT )
113     add_file( "oss-audio-device", "/dev/dsp", aout_FindAndRestart,
114               N_("OSS DSP device"), NULL, false )
115         add_deprecated_alias( "dspdev" )   /* deprecated since 0.9.3 */
116     add_bool( "oss-buggy", 0, NULL, BUGGY_TEXT, BUGGY_LONGTEXT, true )
117
118     set_capability( "audio output", 100 )
119     add_shortcut( "oss" )
120     set_callbacks( Open, Close )
121 vlc_module_end ()
122
123 /*****************************************************************************
124  * Probe: probe the audio device for available formats and channels
125  *****************************************************************************/
126 static void Probe( aout_instance_t * p_aout )
127 {
128     struct aout_sys_t * p_sys = p_aout->output.p_sys;
129     vlc_value_t val, text;
130     int i_format, i_nb_channels;
131
132     var_Create( p_aout, "audio-device", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
133     text.psz_string = _("Audio Device");
134     var_Change( p_aout, "audio-device", VLC_VAR_SETTEXT, &text, NULL );
135
136     /* Test for multi-channel. */
137 #ifdef SNDCTL_DSP_GETCHANNELMASK
138     if ( aout_FormatNbChannels( &p_aout->output.output ) > 2 )
139     {
140         /* Check that the device supports this. */
141
142         int i_chanmask;
143
144         /* Reset all. */
145         i_format = AFMT_S16_NE;
146         if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 ||
147             ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
148         {
149             msg_Err( p_aout, "cannot reset OSS audio device" );
150             var_Destroy( p_aout, "audio-device" );
151             return;
152         }
153
154         if ( ioctl( p_sys->i_fd, SNDCTL_DSP_GETCHANNELMASK,
155                     &i_chanmask ) == 0 )
156         {
157             if ( !(i_chanmask & DSP_BIND_FRONT) )
158             {
159                 msg_Err( p_aout, "no front channels! (%x)",
160                          i_chanmask );
161                 return;
162             }
163
164             if ( (i_chanmask & (DSP_BIND_SURR | DSP_BIND_CENTER_LFE))
165                   && (p_aout->output.output.i_physical_channels ==
166                        (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
167                          | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
168                          | AOUT_CHAN_LFE)) )
169             {
170                 val.i_int = AOUT_VAR_5_1;
171                 text.psz_string = (char*) "5.1";
172                 var_Change( p_aout, "audio-device",
173                             VLC_VAR_ADDCHOICE, &val, &text );
174             }
175
176             if ( (i_chanmask & DSP_BIND_SURR)
177                   && (p_aout->output.output.i_physical_channels &
178                        (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
179                          | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT)) )
180             {
181                 val.i_int = AOUT_VAR_2F2R;
182                 text.psz_string = _("2 Front 2 Rear");
183                 var_Change( p_aout, "audio-device",
184                             VLC_VAR_ADDCHOICE, &val, &text );
185             }
186         }
187     }
188 #endif
189
190     /* Reset all. */
191     i_format = AFMT_S16_NE;
192     if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 ||
193         ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
194     {
195         msg_Err( p_aout, "cannot reset OSS audio device" );
196         var_Destroy( p_aout, "audio-device" );
197         return;
198     }
199
200     /* Test for stereo. */
201     i_nb_channels = 2;
202     if( ioctl( p_sys->i_fd, SNDCTL_DSP_CHANNELS, &i_nb_channels ) >= 0
203          && i_nb_channels == 2 )
204     {
205         val.i_int = AOUT_VAR_STEREO;
206         text.psz_string = _("Stereo");
207         var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
208     }
209
210     /* Reset all. */
211     i_format = AFMT_S16_NE;
212     if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 ||
213         ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
214     {
215         msg_Err( p_aout, "cannot reset OSS audio device" );
216         var_Destroy( p_aout, "audio-device" );
217         return;
218     }
219
220     /* Test for mono. */
221     i_nb_channels = 1;
222     if( ioctl( p_sys->i_fd, SNDCTL_DSP_CHANNELS, &i_nb_channels ) >= 0
223          && i_nb_channels == 1 )
224     {
225         val.i_int = AOUT_VAR_MONO;
226         text.psz_string = _("Mono");
227         var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
228         if ( p_aout->output.output.i_physical_channels == AOUT_CHAN_CENTER )
229         {
230             var_Set( p_aout, "audio-device", val );
231         }
232     }
233
234     if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 )
235     {
236         msg_Err( p_aout, "cannot reset OSS audio device" );
237         var_Destroy( p_aout, "audio-device" );
238         return;
239     }
240
241     /* Test for spdif. */
242     if ( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
243     {
244         i_format = AFMT_AC3;
245
246         if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) >= 0
247              && i_format == AFMT_AC3 )
248         {
249             val.i_int = AOUT_VAR_SPDIF;
250             text.psz_string = _("A/52 over S/PDIF");
251             var_Change( p_aout, "audio-device",
252                         VLC_VAR_ADDCHOICE, &val, &text );
253             if( config_GetInt( p_aout, "spdif" ) )
254                 var_Set( p_aout, "audio-device", val );
255         }
256         else if( config_GetInt( p_aout, "spdif" ) )
257         {
258             msg_Warn( p_aout, "S/PDIF not supported by card" );
259         }
260     }
261
262     var_AddCallback( p_aout, "audio-device", aout_ChannelsRestart,
263                      NULL );
264 }
265
266 /*****************************************************************************
267  * Open: open the audio device (the digital sound processor)
268  *****************************************************************************
269  * This function opens the DSP as a usual non-blocking write-only file, and
270  * modifies the p_aout->p_sys->i_fd with the file's descriptor.
271  *****************************************************************************/
272 static int Open( vlc_object_t *p_this )
273 {
274     aout_instance_t * p_aout = (aout_instance_t *)p_this;
275     struct aout_sys_t * p_sys;
276     char * psz_device;
277     vlc_value_t val;
278
279     /* Allocate structure */
280     p_aout->output.p_sys = p_sys = malloc( sizeof( aout_sys_t ) );
281     if( p_sys == NULL )
282         return VLC_ENOMEM;
283
284     /* Get device name */
285     if( (psz_device = config_GetPsz( p_aout, "oss-audio-device" )) == NULL )
286     {
287         msg_Err( p_aout, "no audio device specified (maybe /dev/dsp?)" );
288         free( p_sys );
289         return VLC_EGENERIC;
290     }
291
292     /* Open the sound device in non-blocking mode, because ALSA's OSS
293      * emulation and some broken OSS drivers would make a blocking call
294      * wait forever until the device is available. Since this breaks the
295      * OSS spec, we immediately put it back to blocking mode if the
296      * operation was successful. */
297     p_sys->i_fd = open( psz_device, O_WRONLY | O_NDELAY );
298     if( p_sys->i_fd < 0 )
299     {
300         msg_Err( p_aout, "cannot open audio device (%s)", psz_device );
301         free( psz_device );
302         free( p_sys );
303         return VLC_EGENERIC;
304     }
305
306     /* if the opening was ok, put the device back in blocking mode */
307     fcntl( p_sys->i_fd, F_SETFL,
308             fcntl( p_sys->i_fd, F_GETFL ) &~ FNDELAY );
309
310     free( psz_device );
311
312     p_aout->output.pf_play = Play;
313
314     if ( var_Type( p_aout, "audio-device" ) == 0 )
315     {
316         Probe( p_aout );
317     }
318
319     if ( var_Get( p_aout, "audio-device", &val ) < 0 )
320     {
321         /* Probe() has failed. */
322         close( p_sys->i_fd );
323         free( p_sys );
324         return VLC_EGENERIC;
325     }
326
327     if ( val.i_int == AOUT_VAR_SPDIF )
328     {
329         p_aout->output.output.i_format = VLC_CODEC_SPDIFL;
330     }
331     else if ( val.i_int == AOUT_VAR_5_1 )
332     {
333         p_aout->output.output.i_format = VLC_CODEC_S16N;
334         p_aout->output.output.i_physical_channels
335             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
336                | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
337                | AOUT_CHAN_LFE;
338     }
339     else if ( val.i_int == AOUT_VAR_2F2R )
340     {
341         p_aout->output.output.i_format = VLC_CODEC_S16N;
342         p_aout->output.output.i_physical_channels
343             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
344                | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
345     }
346     else if ( val.i_int == AOUT_VAR_STEREO )
347     {
348         p_aout->output.output.i_format = VLC_CODEC_S16N;
349         p_aout->output.output.i_physical_channels
350             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
351     }
352     else if ( val.i_int == AOUT_VAR_MONO )
353     {
354         p_aout->output.output.i_format = VLC_CODEC_S16N;
355         p_aout->output.output.i_physical_channels = AOUT_CHAN_CENTER;
356     }
357     else
358     {
359         /* This should not happen ! */
360         msg_Err( p_aout, "internal: can't find audio-device (%i)", val.i_int );
361         close( p_sys->i_fd );
362         free( p_sys );
363         return VLC_EGENERIC;
364     }
365
366     var_SetBool( p_aout, "intf-change", true );
367
368     /* Reset the DSP device */
369     if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 )
370     {
371         msg_Err( p_aout, "cannot reset OSS audio device" );
372         close( p_sys->i_fd );
373         free( p_sys );
374         return VLC_EGENERIC;
375     }
376
377     /* Set the output format */
378     if ( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
379     {
380         int i_format = AFMT_AC3;
381
382         if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0
383              || i_format != AFMT_AC3 )
384         {
385             msg_Err( p_aout, "cannot reset OSS audio device" );
386             close( p_sys->i_fd );
387             free( p_sys );
388             return VLC_EGENERIC;
389         }
390
391         p_aout->output.output.i_format = VLC_CODEC_SPDIFL;
392         p_aout->output.i_nb_samples = A52_FRAME_NB;
393         p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
394         p_aout->output.output.i_frame_length = A52_FRAME_NB;
395
396         aout_VolumeNoneInit( p_aout );
397     }
398
399     if ( !AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
400     {
401         unsigned int i_format = AFMT_S16_NE;
402         unsigned int i_frame_size, i_fragments;
403         unsigned int i_rate;
404         unsigned int i_nb_channels;
405         audio_buf_info audio_buf;
406
407         if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
408         {
409             msg_Err( p_aout, "cannot set audio output format" );
410             close( p_sys->i_fd );
411             free( p_sys );
412             return VLC_EGENERIC;
413         }
414
415         switch ( i_format )
416         {
417         case AFMT_U8:
418             p_aout->output.output.i_format = VLC_CODEC_U8;
419             break;
420         case AFMT_S8:
421             p_aout->output.output.i_format = VLC_CODEC_S8;
422             break;
423         case AFMT_U16_LE:
424             p_aout->output.output.i_format = VLC_CODEC_U16L;
425             break;
426         case AFMT_S16_LE:
427             p_aout->output.output.i_format = VLC_CODEC_S16L;
428             break;
429         case AFMT_U16_BE:
430             p_aout->output.output.i_format = VLC_CODEC_U16B;
431             break;
432         case AFMT_S16_BE:
433             p_aout->output.output.i_format = VLC_CODEC_S16B;
434             break;
435         default:
436             msg_Err( p_aout, "OSS fell back to an unknown format (%d)",
437                      i_format );
438             close( p_sys->i_fd );
439             free( p_sys );
440             return VLC_EGENERIC;
441         }
442
443         i_nb_channels = aout_FormatNbChannels( &p_aout->output.output );
444
445         /* Set the number of channels */
446         if( ioctl( p_sys->i_fd, SNDCTL_DSP_CHANNELS, &i_nb_channels ) < 0 ||
447             i_nb_channels != aout_FormatNbChannels( &p_aout->output.output ) )
448         {
449             msg_Err( p_aout, "cannot set number of audio channels (%s)",
450                      aout_FormatPrintChannels( &p_aout->output.output) );
451             close( p_sys->i_fd );
452             free( p_sys );
453             return VLC_EGENERIC;
454         }
455
456         /* Set the output rate */
457         i_rate = p_aout->output.output.i_rate;
458         if( ioctl( p_sys->i_fd, SNDCTL_DSP_SPEED, &i_rate ) < 0 )
459         {
460             msg_Err( p_aout, "cannot set audio output rate (%i)",
461                              p_aout->output.output.i_rate );
462             close( p_sys->i_fd );
463             free( p_sys );
464             return VLC_EGENERIC;
465         }
466
467         if( i_rate != p_aout->output.output.i_rate )
468         {
469             p_aout->output.output.i_rate = i_rate;
470         }
471
472         /* Set the fragment size */
473         aout_FormatPrepare( &p_aout->output.output );
474
475         /* i_fragment = xxxxyyyy where: xxxx        is fragtotal
476          *                              1 << yyyy   is fragsize */
477         i_frame_size = ((uint64_t)p_aout->output.output.i_bytes_per_frame * p_aout->output.output.i_rate * 65536) / (48000 * 2 * 2) / FRAME_COUNT;
478         i_fragments = 4;
479         while( i_fragments < 12 && (1U << i_fragments) < i_frame_size )
480         {
481             ++i_fragments;
482         }
483         i_fragments |= FRAME_COUNT << 16;
484         if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFRAGMENT, &i_fragments ) < 0 )
485         {
486             msg_Warn( p_aout, "cannot set fragment size (%.8x)", i_fragments );
487         }
488
489         if( ioctl( p_sys->i_fd, SNDCTL_DSP_GETOSPACE, &audio_buf ) < 0 )
490         {
491             msg_Err( p_aout, "cannot get fragment size" );
492             close( p_sys->i_fd );
493             free( p_sys );
494             return VLC_EGENERIC;
495         }
496         else
497         {
498             /* Number of fragments actually allocated */
499             p_aout->output.p_sys->i_fragstotal = audio_buf.fragstotal;
500
501             /* Maximum duration the soundcard's buffer can hold */
502             p_aout->output.p_sys->max_buffer_duration =
503                 (mtime_t)audio_buf.fragstotal * audio_buf.fragsize * 1000000
504                 / p_aout->output.output.i_bytes_per_frame
505                 / p_aout->output.output.i_rate
506                 * p_aout->output.output.i_frame_length;
507
508             p_aout->output.i_nb_samples = audio_buf.fragsize /
509                 p_aout->output.output.i_bytes_per_frame;
510         }
511
512         aout_VolumeSoftInit( p_aout );
513     }
514
515     p_aout->output.p_sys->b_workaround_buggy_driver =
516         config_GetInt( p_aout, "oss-buggy" );
517
518     /* Create OSS thread and wait for its readiness. */
519     if( vlc_thread_create( p_aout, "aout", OSSThread,
520                            VLC_THREAD_PRIORITY_OUTPUT ) )
521     {
522         msg_Err( p_aout, "cannot create OSS thread (%m)" );
523         close( p_sys->i_fd );
524         free( p_sys );
525         return VLC_ETHREAD;
526     }
527
528     return VLC_SUCCESS;
529 }
530
531 /*****************************************************************************
532  * Play: nothing to do
533  *****************************************************************************/
534 static void Play( aout_instance_t *p_aout )
535 {
536     VLC_UNUSED(p_aout);
537 }
538
539 /*****************************************************************************
540  * Close: close the DSP audio device
541  *****************************************************************************/
542 static void Close( vlc_object_t * p_this )
543 {
544     aout_instance_t *p_aout = (aout_instance_t *)p_this;
545     struct aout_sys_t * p_sys = p_aout->output.p_sys;
546
547     vlc_object_kill( p_aout );
548     vlc_thread_join( p_aout );
549     p_aout->b_die = false;
550
551     ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL );
552     close( p_sys->i_fd );
553
554     free( p_sys );
555 }
556
557 /*****************************************************************************
558  * BufferDuration: buffer status query
559  *****************************************************************************
560  * This function returns the duration in microseconds of the current buffer.
561  *****************************************************************************/
562 static mtime_t BufferDuration( aout_instance_t * p_aout )
563 {
564     struct aout_sys_t * p_sys = p_aout->output.p_sys;
565     audio_buf_info audio_buf;
566     int i_bytes;
567
568     /* Fill the audio_buf_info structure:
569      * - fragstotal: total number of fragments allocated
570      * - fragsize: size of a fragment in bytes
571      * - bytes: available space in bytes (includes partially used fragments)
572      * Note! 'bytes' could be more than fragments*fragsize */
573     ioctl( p_sys->i_fd, SNDCTL_DSP_GETOSPACE, &audio_buf );
574
575     /* calculate number of available fragments (not partially used ones) */
576     i_bytes = (audio_buf.fragstotal * audio_buf.fragsize) - audio_buf.bytes;
577
578     /* Return the fragment duration */
579     return (mtime_t)i_bytes * 1000000
580             / p_aout->output.output.i_bytes_per_frame
581             / p_aout->output.output.i_rate
582             * p_aout->output.output.i_frame_length;
583 }
584
585 /*****************************************************************************
586  * OSSThread: asynchronous thread used to DMA the data to the device
587  *****************************************************************************/
588 static void* OSSThread( vlc_object_t *p_this )
589 {
590     aout_instance_t * p_aout = (aout_instance_t*)p_this;
591     struct aout_sys_t * p_sys = p_aout->output.p_sys;
592     mtime_t next_date = 0;
593     int canc = vlc_savecancel ();
594
595     while ( vlc_object_alive (p_aout) )
596     {
597         aout_buffer_t * p_buffer = NULL;
598         int i_tmp, i_size;
599         uint8_t * p_bytes;
600
601         if ( p_aout->output.output.i_format != VLC_CODEC_SPDIFL )
602         {
603             mtime_t buffered = BufferDuration( p_aout );
604
605             if( p_aout->output.p_sys->b_workaround_buggy_driver )
606             {
607 #define i_fragstotal p_aout->output.p_sys->i_fragstotal
608                 /* Wait a bit - we don't want our buffer to be full */
609                 if( buffered > (p_aout->output.p_sys->max_buffer_duration
610                                 / i_fragstotal * (i_fragstotal - 1)) )
611                 {
612                     msleep((p_aout->output.p_sys->max_buffer_duration
613                                 / i_fragstotal ));
614                     buffered = BufferDuration( p_aout );
615                 }
616 #undef i_fragstotal
617             }
618
619             /* Next buffer will be played at mdate() + buffered */
620             p_buffer = aout_OutputNextBuffer( p_aout, mdate() + buffered,
621                                               false );
622
623             if( p_buffer == NULL &&
624                 buffered > ( p_aout->output.p_sys->max_buffer_duration
625                              / p_aout->output.p_sys->i_fragstotal ) )
626             {
627                 /* If we have at least a fragment full, then we can wait a
628                  * little and retry to get a new audio buffer instead of
629                  * playing a blank sample */
630                 msleep( ( p_aout->output.p_sys->max_buffer_duration
631                           / p_aout->output.p_sys->i_fragstotal / 2 ) );
632                 continue;
633             }
634         }
635         else
636         {
637             /* emu10k1 driver does not report Buffer Duration correctly in
638              * passthrough mode so we have to cheat */
639             if( !next_date )
640             {
641                 next_date = mdate();
642             }
643             else
644             {
645                 mtime_t delay = next_date - mdate();
646                 if( delay > AOUT_PTS_TOLERANCE )
647                 {
648                     msleep( delay / 2 );
649                 }
650             }
651
652             while( vlc_object_alive (p_aout) && ! ( p_buffer =
653                 aout_OutputNextBuffer( p_aout, next_date, true ) ) )
654             {
655                 msleep( 1000 );
656                 next_date = mdate();
657             }
658         }
659
660         if ( p_buffer != NULL )
661         {
662             p_bytes = p_buffer->p_buffer;
663             i_size = p_buffer->i_nb_bytes;
664             /* This is theoretical ... we'll see next iteration whether
665              * we're drifting */
666             next_date += p_buffer->end_date - p_buffer->start_date;
667         }
668         else
669         {
670             i_size = FRAME_SIZE / p_aout->output.output.i_frame_length
671                       * p_aout->output.output.i_bytes_per_frame;
672             p_bytes = malloc( i_size );
673             memset( p_bytes, 0, i_size );
674             next_date = 0;
675         }
676
677         i_tmp = write( p_sys->i_fd, p_bytes, i_size );
678
679         if( i_tmp < 0 )
680         {
681             msg_Err( p_aout, "write failed (%m)" );
682         }
683
684         if ( p_buffer != NULL )
685         {
686             aout_BufferFree( p_buffer );
687         }
688         else
689         {
690             free( p_bytes );
691         }
692     }
693
694     vlc_restorecancel (canc);
695     return NULL;
696 }