oss.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:24k
源码类别:

midi

开发平台:

Unix_Linux

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