]> git.sesse.net Git - vlc/blob - modules/audio_output/oss.c
Fix potential memleak.
[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 #elif defined( HAVE_MACHINE_SOUNDCARD_H )
55 #   include <machine/soundcard.h>
56 #endif
57
58 /* Patches for ignorant OSS versions */
59 #ifndef AFMT_AC3
60 #   define AFMT_AC3     0x00000400        /* Dolby Digital AC3 */
61 #endif
62
63 #ifndef AFMT_S16_NE
64 #   ifdef WORDS_BIGENDIAN
65 #       define AFMT_S16_NE AFMT_S16_BE
66 #   else
67 #       define AFMT_S16_NE AFMT_S16_LE
68 #   endif
69 #endif
70
71 /*****************************************************************************
72  * aout_sys_t: OSS audio output method descriptor
73  *****************************************************************************
74  * This structure is part of the audio output thread descriptor.
75  * It describes the DSP specific properties of an audio device.
76  *****************************************************************************/
77 struct aout_sys_t
78 {
79     int i_fd;
80     int b_workaround_buggy_driver;
81     int i_fragstotal;
82     mtime_t max_buffer_duration;
83 };
84
85 /* This must be a power of 2. */
86 #define FRAME_SIZE 1024
87 #define FRAME_COUNT 32
88
89 /*****************************************************************************
90  * Local prototypes
91  *****************************************************************************/
92 static int  Open         ( vlc_object_t * );
93 static void Close        ( vlc_object_t * );
94
95 static void Play         ( aout_instance_t * );
96 static int  OSSThread    ( aout_instance_t * );
97
98 static mtime_t BufferDuration( aout_instance_t * p_aout );
99
100 /*****************************************************************************
101  * Module descriptor
102  *****************************************************************************/
103 #define BUGGY_TEXT N_("Try to work around buggy OSS drivers")
104 #define BUGGY_LONGTEXT N_( \
105     "Some buggy OSS drivers just don't like when their internal buffers " \
106     "are completely filled (the sound gets heavily hashed). If you have one " \
107     "of these drivers, then you need to enable this option." )
108
109 vlc_module_begin();
110     set_shortname( "OSS" );
111     set_description( N_("UNIX OSS audio output") );
112
113     set_category( CAT_AUDIO );
114     set_subcategory( SUBCAT_AUDIO_AOUT );
115     add_file( "dspdev", "/dev/dsp", aout_FindAndRestart,
116               N_("OSS DSP device"), NULL, false );
117     add_bool( "oss-buggy", 0, NULL, BUGGY_TEXT, BUGGY_LONGTEXT, true );
118
119     set_capability( "audio output", 100 );
120     add_shortcut( "oss" );
121     set_callbacks( Open, Close );
122 vlc_module_end();
123
124 /*****************************************************************************
125  * Probe: probe the audio device for available formats and channels
126  *****************************************************************************/
127 static void Probe( aout_instance_t * p_aout )
128 {
129     struct aout_sys_t * p_sys = p_aout->output.p_sys;
130     vlc_value_t val, text;
131     int i_format, i_nb_channels;
132
133     var_Create( p_aout, "audio-device", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
134     text.psz_string = _("Audio Device");
135     var_Change( p_aout, "audio-device", VLC_VAR_SETTEXT, &text, NULL );
136
137     /* Test for multi-channel. */
138 #ifdef SNDCTL_DSP_GETCHANNELMASK
139     if ( aout_FormatNbChannels( &p_aout->output.output ) > 2 )
140     {
141         /* Check that the device supports this. */
142
143         int i_chanmask;
144
145         /* Reset all. */
146         i_format = AFMT_S16_NE;
147         if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 ||
148             ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
149         {
150             msg_Err( p_aout, "cannot reset OSS audio device" );
151             var_Destroy( p_aout, "audio-device" );
152             return;
153         }
154
155         if ( ioctl( p_sys->i_fd, SNDCTL_DSP_GETCHANNELMASK,
156                     &i_chanmask ) == 0 )
157         {
158             if ( !(i_chanmask & DSP_BIND_FRONT) )
159             {
160                 msg_Err( p_aout, "no front channels! (%x)",
161                          i_chanmask );
162                 return;
163             }
164
165             if ( (i_chanmask & (DSP_BIND_SURR | DSP_BIND_CENTER_LFE))
166                   && (p_aout->output.output.i_physical_channels ==
167                        (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
168                          | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
169                          | AOUT_CHAN_LFE)) )
170             {
171                 val.i_int = AOUT_VAR_5_1;
172                 text.psz_string = "5.1";
173                 var_Change( p_aout, "audio-device",
174                             VLC_VAR_ADDCHOICE, &val, &text );
175             }
176
177             if ( (i_chanmask & DSP_BIND_SURR)
178                   && (p_aout->output.output.i_physical_channels &
179                        (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
180                          | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT)) )
181             {
182                 val.i_int = AOUT_VAR_2F2R;
183                 text.psz_string = N_("2 Front 2 Rear");
184                 var_Change( p_aout, "audio-device",
185                             VLC_VAR_ADDCHOICE, &val, &text );
186             }
187         }
188     }
189 #endif
190
191     /* Reset all. */
192     i_format = AFMT_S16_NE;
193     if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 ||
194         ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
195     {
196         msg_Err( p_aout, "cannot reset OSS audio device" );
197         var_Destroy( p_aout, "audio-device" );
198         return;
199     }
200
201     /* Test for stereo. */
202     i_nb_channels = 2;
203     if( ioctl( p_sys->i_fd, SNDCTL_DSP_CHANNELS, &i_nb_channels ) >= 0
204          && i_nb_channels == 2 )
205     {
206         val.i_int = AOUT_VAR_STEREO;
207         text.psz_string = N_("Stereo");
208         var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
209     }
210
211     /* Reset all. */
212     i_format = AFMT_S16_NE;
213     if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 ||
214         ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) < 0 )
215     {
216         msg_Err( p_aout, "cannot reset OSS audio device" );
217         var_Destroy( p_aout, "audio-device" );
218         return;
219     }
220
221     /* Test for mono. */
222     i_nb_channels = 1;
223     if( ioctl( p_sys->i_fd, SNDCTL_DSP_CHANNELS, &i_nb_channels ) >= 0
224          && i_nb_channels == 1 )
225     {
226         val.i_int = AOUT_VAR_MONO;
227         text.psz_string = N_("Mono");
228         var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
229         if ( p_aout->output.output.i_physical_channels == AOUT_CHAN_CENTER )
230         {
231             var_Set( p_aout, "audio-device", val );
232         }
233     }
234
235     if( ioctl( p_sys->i_fd, SNDCTL_DSP_RESET, NULL ) < 0 )
236     {
237         msg_Err( p_aout, "cannot reset OSS audio device" );
238         var_Destroy( p_aout, "audio-device" );
239         return;
240     }
241
242     /* Test for spdif. */
243     if ( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
244     {
245         i_format = AFMT_AC3;
246
247         if( ioctl( p_sys->i_fd, SNDCTL_DSP_SETFMT, &i_format ) >= 0
248              && i_format == AFMT_AC3 )
249         {
250             val.i_int = AOUT_VAR_SPDIF;
251             text.psz_string = N_("A/52 over S/PDIF");
252             var_Change( p_aout, "audio-device",
253                         VLC_VAR_ADDCHOICE, &val, &text );
254             if( config_GetInt( p_aout, "spdif" ) )
255                 var_Set( p_aout, "audio-device", val );
256         }
257         else if( config_GetInt( p_aout, "spdif" ) )
258         {
259             msg_Warn( p_aout, "S/PDIF not supported by card" );
260         }
261     }
262
263     var_AddCallback( p_aout, "audio-device", aout_ChannelsRestart,
264                      NULL );
265 }
266
267 /*****************************************************************************
268  * Open: open the audio device (the digital sound processor)
269  *****************************************************************************
270  * This function opens the DSP as a usual non-blocking write-only file, and
271  * modifies the p_aout->p_sys->i_fd with the file's descriptor.
272  *****************************************************************************/
273 static int Open( vlc_object_t *p_this )
274 {
275     aout_instance_t * p_aout = (aout_instance_t *)p_this;
276     struct aout_sys_t * p_sys;
277     char * psz_device;
278     vlc_value_t val;
279
280     /* Allocate structure */
281     p_aout->output.p_sys = p_sys = malloc( sizeof( aout_sys_t ) );
282     if( p_sys == NULL )
283         return VLC_ENOMEM;
284
285     /* Get device name */
286     if( (psz_device = config_GetPsz( p_aout, "dspdev" )) == NULL )
287     {
288         msg_Err( p_aout, "no audio device specified (maybe /dev/dsp?)" );
289         free( p_sys );
290         return VLC_EGENERIC;
291     }
292
293     /* Open the sound device in non-blocking mode, because ALSA's OSS
294      * emulation and some broken OSS drivers would make a blocking call
295      * wait forever until the device is available. Since this breaks the
296      * OSS spec, we immediately put it back to blocking mode if the
297      * operation was successful. */
298     p_sys->i_fd = open( psz_device, O_WRONLY | O_NDELAY );
299     if( p_sys->i_fd < 0 )
300     {
301         msg_Err( p_aout, "cannot open audio device (%s)", psz_device );
302         free( psz_device );
303         free( p_sys );
304         return VLC_EGENERIC;
305     }
306
307     /* if the opening was ok, put the device back in blocking mode */
308     fcntl( p_sys->i_fd, F_SETFL,
309             fcntl( p_sys->i_fd, F_GETFL ) &~ FNDELAY );
310
311     free( psz_device );
312
313     p_aout->output.pf_play = Play;
314
315     if ( var_Type( p_aout, "audio-device" ) == 0 )
316     {
317         Probe( p_aout );
318     }
319
320     if ( var_Get( p_aout, "audio-device", &val ) < 0 )
321     {
322         /* Probe() has failed. */
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_FOURCC('s','p','d','i');
330     }
331     else if ( val.i_int == AOUT_VAR_5_1 )
332     {
333         p_aout->output.output.i_format = AOUT_FMT_S16_NE;
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 = AOUT_FMT_S16_NE;
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 = AOUT_FMT_S16_NE;
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 = AOUT_FMT_S16_NE;
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         free( p_sys );
362         return VLC_EGENERIC;
363     }
364
365     val.b_bool = true;
366     var_Set( p_aout, "intf-change", val );
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_FOURCC('s','p','d','i');
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_FOURCC('u','8',' ',' ');
419             break;
420         case AFMT_S8:
421             p_aout->output.output.i_format = VLC_FOURCC('s','8',' ',' ');
422             break;
423         case AFMT_U16_LE:
424             p_aout->output.output.i_format = VLC_FOURCC('u','1','6','l');
425             break;
426         case AFMT_S16_LE:
427             p_aout->output.output.i_format = VLC_FOURCC('s','1','6','l');
428             break;
429         case AFMT_U16_BE:
430             p_aout->output.output.i_format = VLC_FOURCC('u','1','6','b');
431             break;
432         case AFMT_S16_BE:
433             p_aout->output.output.i_format = VLC_FOURCC('s','1','6','b');
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, false ) )
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 int OSSThread( aout_instance_t * p_aout )
589 {
590     struct aout_sys_t * p_sys = p_aout->output.p_sys;
591     mtime_t next_date = 0;
592
593     while ( vlc_object_alive (p_aout) )
594     {
595         aout_buffer_t * p_buffer = NULL;
596         int i_tmp, i_size;
597         uint8_t * p_bytes;
598
599         if ( p_aout->output.output.i_format != VLC_FOURCC('s','p','d','i') )
600         {
601             mtime_t buffered = BufferDuration( p_aout );
602
603             if( p_aout->output.p_sys->b_workaround_buggy_driver )
604             {
605 #define i_fragstotal p_aout->output.p_sys->i_fragstotal
606                 /* Wait a bit - we don't want our buffer to be full */
607                 if( buffered > (p_aout->output.p_sys->max_buffer_duration
608                                 / i_fragstotal * (i_fragstotal - 1)) )
609                 {
610                     msleep((p_aout->output.p_sys->max_buffer_duration
611                                 / i_fragstotal ));
612                     buffered = BufferDuration( p_aout );
613                 }
614 #undef i_fragstotal
615             }
616
617             /* Next buffer will be played at mdate() + buffered */
618             p_buffer = aout_OutputNextBuffer( p_aout, mdate() + buffered,
619                                               false );
620
621             if( p_buffer == NULL &&
622                 buffered > ( p_aout->output.p_sys->max_buffer_duration
623                              / p_aout->output.p_sys->i_fragstotal ) )
624             {
625                 /* If we have at least a fragment full, then we can wait a
626                  * little and retry to get a new audio buffer instead of
627                  * playing a blank sample */
628                 msleep( ( p_aout->output.p_sys->max_buffer_duration
629                           / p_aout->output.p_sys->i_fragstotal / 2 ) );
630                 continue;
631             }
632         }
633         else
634         {
635             /* emu10k1 driver does not report Buffer Duration correctly in
636              * passthrough mode so we have to cheat */
637             if( !next_date )
638             {
639                 next_date = mdate();
640             }
641             else
642             {
643                 mtime_t delay = next_date - mdate();
644                 if( delay > AOUT_PTS_TOLERANCE )
645                 {
646                     msleep( delay / 2 );
647                 }
648             }
649
650             while( vlc_object_alive (p_aout) && ! ( p_buffer =
651                 aout_OutputNextBuffer( p_aout, next_date, true ) ) )
652             {
653                 msleep( 1000 );
654                 next_date = mdate();
655             }
656         }
657
658         if ( p_buffer != NULL )
659         {
660             p_bytes = p_buffer->p_buffer;
661             i_size = p_buffer->i_nb_bytes;
662             /* This is theoretical ... we'll see next iteration whether
663              * we're drifting */
664             next_date += p_buffer->end_date - p_buffer->start_date;
665         }
666         else
667         {
668             i_size = FRAME_SIZE / p_aout->output.output.i_frame_length
669                       * p_aout->output.output.i_bytes_per_frame;
670             p_bytes = malloc( i_size );
671             memset( p_bytes, 0, i_size );
672             next_date = 0;
673         }
674
675         i_tmp = write( p_sys->i_fd, p_bytes, i_size );
676
677         if( i_tmp < 0 )
678         {
679             msg_Err( p_aout, "write failed (%m)" );
680         }
681
682         if ( p_buffer != NULL )
683         {
684             aout_BufferFree( p_buffer );
685         }
686         else
687         {
688             free( p_bytes );
689         }
690     }
691
692     return VLC_SUCCESS;
693 }