waveout.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:28k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * waveout.c : Windows waveOut plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2001 VideoLAN
  5.  * $Id: waveout.c 9153 2004-11-05 12:56:35Z gbazin $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  8.  *      
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  * 
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <string.h>                                            /* strerror() */
  27. #include <stdlib.h>                            /* calloc(), malloc(), free() */
  28. #include <vlc/vlc.h>
  29. #include <vlc/aout.h>
  30. #include "aout_internal.h"
  31. #include <windows.h>
  32. #include <mmsystem.h>
  33. #define FRAME_SIZE 1024              /* The size is in samples, not in bytes */
  34. #define FRAMES_NUM 8
  35. /*****************************************************************************
  36.  * Useful macros
  37.  *****************************************************************************/
  38. #ifdef UNDER_CE
  39. #   define DWORD_PTR DWORD
  40. #endif
  41. #ifndef WAVE_FORMAT_IEEE_FLOAT
  42. #   define WAVE_FORMAT_IEEE_FLOAT 0x0003
  43. #endif
  44. #ifndef WAVE_FORMAT_DOLBY_AC3_SPDIF
  45. #   define WAVE_FORMAT_DOLBY_AC3_SPDIF 0x0092
  46. #endif
  47. #ifndef WAVE_FORMAT_EXTENSIBLE
  48. #define  WAVE_FORMAT_EXTENSIBLE   0xFFFE
  49. #endif
  50. #ifndef SPEAKER_FRONT_LEFT
  51. #   define SPEAKER_FRONT_LEFT             0x1
  52. #   define SPEAKER_FRONT_RIGHT            0x2
  53. #   define SPEAKER_FRONT_CENTER           0x4
  54. #   define SPEAKER_LOW_FREQUENCY          0x8
  55. #   define SPEAKER_BACK_LEFT              0x10
  56. #   define SPEAKER_BACK_RIGHT             0x20
  57. #   define SPEAKER_FRONT_LEFT_OF_CENTER   0x40
  58. #   define SPEAKER_FRONT_RIGHT_OF_CENTER  0x80
  59. #   define SPEAKER_BACK_CENTER            0x100
  60. #   define SPEAKER_SIDE_LEFT              0x200
  61. #   define SPEAKER_SIDE_RIGHT             0x400
  62. #   define SPEAKER_TOP_CENTER             0x800
  63. #   define SPEAKER_TOP_FRONT_LEFT         0x1000
  64. #   define SPEAKER_TOP_FRONT_CENTER       0x2000
  65. #   define SPEAKER_TOP_FRONT_RIGHT        0x4000
  66. #   define SPEAKER_TOP_BACK_LEFT          0x8000
  67. #   define SPEAKER_TOP_BACK_CENTER        0x10000
  68. #   define SPEAKER_TOP_BACK_RIGHT         0x20000
  69. #   define SPEAKER_RESERVED               0x80000000
  70. #endif
  71. #ifndef _WAVEFORMATEXTENSIBLE_
  72. typedef struct {
  73.     WAVEFORMATEX    Format;
  74.     union {
  75.         WORD wValidBitsPerSample;       /* bits of precision  */
  76.         WORD wSamplesPerBlock;          /* valid if wBitsPerSample==0 */
  77.         WORD wReserved;                 /* If neither applies, set to zero. */
  78.     } Samples;
  79.     DWORD           dwChannelMask;      /* which channels are */
  80.                                         /* present in stream  */
  81.     GUID            SubFormat;
  82. } WAVEFORMATEXTENSIBLE, *PWAVEFORMATEXTENSIBLE;
  83. #endif
  84. static const GUID __KSDATAFORMAT_SUBTYPE_IEEE_FLOAT = {WAVE_FORMAT_IEEE_FLOAT, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
  85. static const GUID __KSDATAFORMAT_SUBTYPE_PCM = {WAVE_FORMAT_PCM, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
  86. static const GUID __KSDATAFORMAT_SUBTYPE_DOLBY_AC3_SPDIF = {WAVE_FORMAT_DOLBY_AC3_SPDIF, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
  87. /*****************************************************************************
  88.  * Local prototypes
  89.  *****************************************************************************/
  90. static int  Open         ( vlc_object_t * );
  91. static void Close        ( vlc_object_t * );
  92. static void Play         ( aout_instance_t * );
  93. /*****************************************************************************
  94.  * notification_thread_t: waveOut event thread
  95.  *****************************************************************************/
  96. typedef struct notification_thread_t
  97. {
  98.     VLC_COMMON_MEMBERS
  99.     aout_instance_t *p_aout;
  100. } notification_thread_t;
  101. /* local functions */
  102. static void Probe        ( aout_instance_t * );
  103. static int OpenWaveOut   ( aout_instance_t *, int, int, int, int, vlc_bool_t );
  104. static int OpenWaveOutPCM( aout_instance_t *, int*, int, int, int, vlc_bool_t );
  105. static int PlayWaveOut   ( aout_instance_t *, HWAVEOUT, WAVEHDR *,
  106.                            aout_buffer_t * );
  107. static void CALLBACK WaveOutCallback ( HWAVEOUT, UINT, DWORD, DWORD, DWORD );
  108. static void WaveOutThread( notification_thread_t * );
  109. /*****************************************************************************
  110.  * Module descriptor
  111.  *****************************************************************************/
  112. #define FLOAT_TEXT N_("Use float32 output")
  113. #define FLOAT_LONGTEXT N_( 
  114.     "The option allows you to enable or disable the high-quality float32 " 
  115.     "audio output mode (which is not well supported by some soundcards)." )
  116. vlc_module_begin();
  117.     set_description( _("Win32 waveOut extension output") );
  118.     set_capability( "audio output", 50 );
  119.     add_bool( "waveout-float32", 1, 0, FLOAT_TEXT, FLOAT_LONGTEXT, VLC_TRUE );
  120.     set_callbacks( Open, Close );
  121. vlc_module_end();
  122. /*****************************************************************************
  123.  * aout_sys_t: waveOut audio output method descriptor
  124.  *****************************************************************************
  125.  * This structure is part of the audio output thread descriptor.
  126.  * It describes the waveOut specific properties of an audio device.
  127.  *****************************************************************************/
  128. struct aout_sys_t
  129. {
  130.     HWAVEOUT h_waveout;                        /* handle to waveout instance */
  131.     WAVEFORMATEXTENSIBLE waveformat;                         /* audio format */
  132.     WAVEHDR waveheader[FRAMES_NUM];
  133.     notification_thread_t *p_notif;                      /* WaveOutThread id */
  134.     HANDLE event;
  135.     int i_buffer_size;
  136.     byte_t *p_silence_buffer;               /* buffer we use to play silence */
  137.     vlc_bool_t b_chan_reorder;              /* do we need channel reordering */
  138.     int pi_chan_table[AOUT_CHAN_MAX];
  139. };
  140. static const uint32_t pi_channels_src[] =
  141.     { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
  142.       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
  143.       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
  144.       AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0 };
  145. static const uint32_t pi_channels_in[] =
  146.     { SPEAKER_FRONT_LEFT, SPEAKER_FRONT_RIGHT,
  147.       SPEAKER_SIDE_LEFT, SPEAKER_SIDE_RIGHT,
  148.       SPEAKER_BACK_LEFT, SPEAKER_BACK_RIGHT,
  149.       SPEAKER_FRONT_CENTER, SPEAKER_LOW_FREQUENCY, 0 };
  150. static const uint32_t pi_channels_out[] =
  151.     { SPEAKER_FRONT_LEFT, SPEAKER_FRONT_RIGHT,
  152.       SPEAKER_FRONT_CENTER, SPEAKER_LOW_FREQUENCY,
  153.       SPEAKER_BACK_LEFT, SPEAKER_BACK_RIGHT,
  154.       SPEAKER_SIDE_LEFT, SPEAKER_SIDE_RIGHT, 0 };
  155. /*****************************************************************************
  156.  * Open: open the audio device
  157.  *****************************************************************************
  158.  * This function opens and setups Win32 waveOut
  159.  *****************************************************************************/
  160. static int Open( vlc_object_t *p_this )
  161. {
  162.     aout_instance_t *p_aout = (aout_instance_t *)p_this;
  163.     vlc_value_t val;
  164.     int i;
  165.     /* Allocate structure */
  166.     p_aout->output.p_sys = malloc( sizeof( aout_sys_t ) );
  167.     if( p_aout->output.p_sys == NULL )
  168.     {
  169.         msg_Err( p_aout, "out of memory" );
  170.         return VLC_EGENERIC;
  171.     }
  172.     p_aout->output.pf_play = Play;
  173.     p_aout->b_die = VLC_FALSE;
  174.     if( var_Type( p_aout, "audio-device" ) == 0 )
  175.     {
  176.         Probe( p_aout );
  177.     }
  178.     if( var_Get( p_aout, "audio-device", &val ) < 0 )
  179.     {
  180.         /* Probe() has failed. */
  181.         free( p_aout->output.p_sys );
  182.         return VLC_EGENERIC;
  183.     }
  184.     var_Create( p_aout, "waveout-float32", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
  185.     /* Open the device */
  186.     if( val.i_int == AOUT_VAR_SPDIF )
  187.     {
  188.         p_aout->output.output.i_format = VLC_FOURCC('s','p','d','i');
  189.         if( OpenWaveOut( p_aout, VLC_FOURCC('s','p','d','i'),
  190.                          p_aout->output.output.i_physical_channels,
  191.                          aout_FormatNbChannels( &p_aout->output.output ),
  192.                          p_aout->output.output.i_rate, VLC_FALSE )
  193.             != VLC_SUCCESS )
  194.         {
  195.             msg_Err( p_aout, "cannot open waveout audio device" );
  196.             free( p_aout->output.p_sys );
  197.             return VLC_EGENERIC;
  198.         }
  199.         /* Calculate the frame size in bytes */
  200.         p_aout->output.i_nb_samples = A52_FRAME_NB;
  201.         p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
  202.         p_aout->output.output.i_frame_length = A52_FRAME_NB;
  203.         p_aout->output.p_sys->i_buffer_size =
  204.             p_aout->output.output.i_bytes_per_frame;
  205.         aout_VolumeNoneInit( p_aout );
  206.     }
  207.     else
  208.     {
  209.         if( val.i_int == AOUT_VAR_5_1 )
  210.         {
  211.             p_aout->output.output.i_physical_channels
  212.                 = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  213.                    | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
  214.                    | AOUT_CHAN_LFE;
  215.         }
  216.         else if( val.i_int == AOUT_VAR_2F2R )
  217.         {
  218.             p_aout->output.output.i_physical_channels
  219.                 = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  220.                    | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
  221.         }
  222.         else if( val.i_int == AOUT_VAR_MONO )
  223.         {
  224.             p_aout->output.output.i_physical_channels = AOUT_CHAN_CENTER;
  225.         }
  226.         else
  227.         {
  228.             p_aout->output.output.i_physical_channels
  229.                 = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
  230.         }
  231.         if( OpenWaveOutPCM( p_aout, &p_aout->output.output.i_format,
  232.                             p_aout->output.output.i_physical_channels,
  233.                             aout_FormatNbChannels( &p_aout->output.output ),
  234.                             p_aout->output.output.i_rate, VLC_FALSE )
  235.             != VLC_SUCCESS )
  236.         {
  237.             msg_Err( p_aout, "cannot open waveout audio device" );
  238.             free( p_aout->output.p_sys );
  239.             return VLC_EGENERIC;
  240.         }
  241.         /* Calculate the frame size in bytes */
  242.         p_aout->output.i_nb_samples = FRAME_SIZE;
  243.         aout_FormatPrepare( &p_aout->output.output );
  244.         p_aout->output.p_sys->i_buffer_size = FRAME_SIZE *
  245.             p_aout->output.output.i_bytes_per_frame;
  246.         aout_VolumeSoftInit( p_aout );
  247.     }
  248.     waveOutReset( p_aout->output.p_sys->h_waveout );
  249.     /* Allocate silence buffer */
  250.     p_aout->output.p_sys->p_silence_buffer =
  251.         malloc( p_aout->output.p_sys->i_buffer_size );
  252.     if( p_aout->output.p_sys->p_silence_buffer == NULL )
  253.     {
  254.         free( p_aout->output.p_sys );
  255.         msg_Err( p_aout, "out of memory" );
  256.         return 1;
  257.     }
  258.     /* Zero the buffer. WinCE doesn't have calloc(). */
  259.     memset( p_aout->output.p_sys->p_silence_buffer, 0,
  260.             p_aout->output.p_sys->i_buffer_size );
  261.     /* Now we need to setup our waveOut play notification structure */
  262.     p_aout->output.p_sys->p_notif =
  263.         vlc_object_create( p_aout, sizeof(notification_thread_t) );
  264.     p_aout->output.p_sys->p_notif->p_aout = p_aout;
  265.     p_aout->output.p_sys->event = CreateEvent( NULL, FALSE, FALSE, NULL );
  266.     /* Then launch the notification thread */
  267.     if( vlc_thread_create( p_aout->output.p_sys->p_notif,
  268.                            "waveOut Notification Thread", WaveOutThread,
  269.                            VLC_THREAD_PRIORITY_HIGHEST, VLC_FALSE ) )
  270.     {
  271.         msg_Err( p_aout, "cannot create WaveOutThread" );
  272.     }
  273.     /* We need to kick off the playback in order to have the callback properly
  274.      * working */
  275.     for( i = 0; i < FRAMES_NUM; i++ )
  276.     {
  277.         p_aout->output.p_sys->waveheader[i].dwFlags = WHDR_DONE;
  278.         p_aout->output.p_sys->waveheader[i].dwUser = 0;
  279.     }
  280.     PlayWaveOut( p_aout, p_aout->output.p_sys->h_waveout,
  281.                  &p_aout->output.p_sys->waveheader[0], NULL );
  282.     return 0;
  283. }
  284. /*****************************************************************************
  285.  * Probe: probe the audio device for available formats and channels
  286.  *****************************************************************************/
  287. static void Probe( aout_instance_t * p_aout )
  288. {
  289.     vlc_value_t val, text;
  290.     int i_format;
  291.     unsigned int i_physical_channels;
  292.     var_Create( p_aout, "audio-device", VLC_VAR_INTEGER | VLC_VAR_HASCHOICE );
  293.     text.psz_string = _("Audio Device");
  294.     var_Change( p_aout, "audio-device", VLC_VAR_SETTEXT, &text, NULL );
  295.     /* Test for 5.1 support */
  296.     i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT |
  297.                           AOUT_CHAN_CENTER | AOUT_CHAN_REARLEFT |
  298.                           AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE;
  299.     if( p_aout->output.output.i_physical_channels == i_physical_channels )
  300.     {
  301.         if( OpenWaveOutPCM( p_aout, &i_format,
  302.                             i_physical_channels, 6,
  303.                             p_aout->output.output.i_rate, VLC_TRUE )
  304.             == VLC_SUCCESS )
  305.         {
  306.             val.i_int = AOUT_VAR_5_1;
  307.             text.psz_string = N_("5.1");
  308.             var_Change( p_aout, "audio-device",
  309.                         VLC_VAR_ADDCHOICE, &val, &text );
  310.             msg_Dbg( p_aout, "device supports 5.1 channels" );
  311.         }
  312.     }
  313.     /* Test for 2 Front 2 Rear support */
  314.     i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT |
  315.                           AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
  316.     if( ( p_aout->output.output.i_physical_channels & i_physical_channels )
  317.         == i_physical_channels )
  318.     {
  319.         if( OpenWaveOutPCM( p_aout, &i_format,
  320.                             i_physical_channels, 4,
  321.                             p_aout->output.output.i_rate, VLC_TRUE )
  322.             == VLC_SUCCESS )
  323.         {
  324.             val.i_int = AOUT_VAR_2F2R;
  325.             text.psz_string = N_("2 Front 2 Rear");
  326.             var_Change( p_aout, "audio-device",
  327.                         VLC_VAR_ADDCHOICE, &val, &text );
  328.             msg_Dbg( p_aout, "device supports 4 channels" );
  329.         }
  330.     }
  331.     /* Test for stereo support */
  332.     i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
  333.     if( OpenWaveOutPCM( p_aout, &i_format,
  334.                         i_physical_channels, 2,
  335.                         p_aout->output.output.i_rate, VLC_TRUE )
  336.         == VLC_SUCCESS )
  337.     {
  338.         val.i_int = AOUT_VAR_STEREO;
  339.         text.psz_string = N_("Stereo");
  340.         var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
  341.         msg_Dbg( p_aout, "device supports 2 channels" );
  342.     }
  343.     /* Test for mono support */
  344.     i_physical_channels = AOUT_CHAN_CENTER;
  345.     if( OpenWaveOutPCM( p_aout, &i_format,
  346.                         i_physical_channels, 1,
  347.                         p_aout->output.output.i_rate, VLC_TRUE )
  348.         == VLC_SUCCESS )
  349.     {
  350.         val.i_int = AOUT_VAR_MONO;
  351.         text.psz_string = N_("Mono");
  352.         var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
  353.         msg_Dbg( p_aout, "device supports 1 channel" );
  354.     }
  355.     /* Test for SPDIF support */
  356.     if ( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
  357.     {
  358.         if( OpenWaveOut( p_aout, VLC_FOURCC('s','p','d','i'),
  359.                          p_aout->output.output.i_physical_channels,
  360.                          aout_FormatNbChannels( &p_aout->output.output ),
  361.                          p_aout->output.output.i_rate, VLC_TRUE )
  362.             == VLC_SUCCESS )
  363.         {
  364.             msg_Dbg( p_aout, "device supports A/52 over S/PDIF" );
  365.             val.i_int = AOUT_VAR_SPDIF;
  366.             text.psz_string = N_("A/52 over S/PDIF");
  367.             var_Change( p_aout, "audio-device",
  368.                         VLC_VAR_ADDCHOICE, &val, &text );
  369.             if( config_GetInt( p_aout, "spdif" ) )
  370.                 var_Set( p_aout, "audio-device", val );
  371.         }
  372.     }
  373.     var_Change( p_aout, "audio-device", VLC_VAR_CHOICESCOUNT, &val, NULL );
  374.     if( val.i_int <= 0 )
  375.     {
  376.         /* Probe() has failed. */
  377.         var_Destroy( p_aout, "audio-device" );
  378.         return;
  379.     }
  380.     var_AddCallback( p_aout, "audio-device", aout_ChannelsRestart, NULL );
  381.     val.b_bool = VLC_TRUE;
  382.     var_Set( p_aout, "intf-change", val );
  383. }
  384. /*****************************************************************************
  385.  * Play: play a sound buffer
  386.  *****************************************************************************
  387.  * This doesn't actually play the buffer. This just stores the buffer so it
  388.  * can be played by the callback thread.
  389.  *****************************************************************************/
  390. static void Play( aout_instance_t *_p_aout )
  391. {
  392. }
  393. /*****************************************************************************
  394.  * Close: close the audio device
  395.  *****************************************************************************/
  396. static void Close( vlc_object_t *p_this )
  397. {
  398.     aout_instance_t *p_aout = (aout_instance_t *)p_this;
  399.     aout_sys_t *p_sys = p_aout->output.p_sys;
  400.     /* Before calling waveOutClose we must reset the device */
  401.     p_aout->b_die = VLC_TRUE;
  402.     waveOutReset( p_sys->h_waveout );
  403.     /* wake up the audio thread */
  404.     SetEvent( p_sys->event );
  405.     vlc_thread_join( p_sys->p_notif );
  406.     vlc_object_destroy( p_sys->p_notif );
  407.     CloseHandle( p_sys->event );
  408.     /* Close the device */
  409.     if( waveOutClose( p_sys->h_waveout ) != MMSYSERR_NOERROR )
  410.     {
  411.         msg_Err( p_aout, "waveOutClose failed" );
  412.     }
  413.     free( p_sys->p_silence_buffer );
  414.     free( p_sys );
  415. }
  416. /*****************************************************************************
  417.  * OpenWaveOut: open the waveout sound device
  418.  ****************************************************************************/
  419. static int OpenWaveOut( aout_instance_t *p_aout, int i_format,
  420.                         int i_channels, int i_nb_channels, int i_rate,
  421.                         vlc_bool_t b_probe )
  422. {
  423.     MMRESULT result;
  424.     unsigned int i;
  425.     /* Set sound format */
  426. #define waveformat p_aout->output.p_sys->waveformat
  427.     waveformat.dwChannelMask = 0;
  428.     for( i = 0; i < sizeof(pi_channels_src)/sizeof(uint32_t); i++ )
  429.     {
  430.         if( i_channels & pi_channels_src[i] )
  431.             waveformat.dwChannelMask |= pi_channels_in[i];
  432.     }
  433.     switch( i_format )
  434.     {
  435.     case VLC_FOURCC('s','p','d','i'):
  436.         i_nb_channels = 2;
  437.         /* To prevent channel re-ordering */
  438.         waveformat.dwChannelMask = SPEAKER_FRONT_LEFT | SPEAKER_FRONT_RIGHT;
  439.         waveformat.Format.wBitsPerSample = 16;
  440.         waveformat.Samples.wValidBitsPerSample =
  441.             waveformat.Format.wBitsPerSample;
  442.         waveformat.Format.wFormatTag = WAVE_FORMAT_DOLBY_AC3_SPDIF;
  443.         waveformat.SubFormat = __KSDATAFORMAT_SUBTYPE_DOLBY_AC3_SPDIF;
  444.         break;
  445.     case VLC_FOURCC('f','l','3','2'):
  446.         waveformat.Format.wBitsPerSample = sizeof(float) * 8;
  447.         waveformat.Samples.wValidBitsPerSample =
  448.             waveformat.Format.wBitsPerSample;
  449.         waveformat.Format.wFormatTag = WAVE_FORMAT_IEEE_FLOAT;
  450.         waveformat.SubFormat = __KSDATAFORMAT_SUBTYPE_IEEE_FLOAT;
  451.         break;
  452.     case VLC_FOURCC('s','1','6','l'):
  453.         waveformat.Format.wBitsPerSample = 16;
  454.         waveformat.Samples.wValidBitsPerSample =
  455.             waveformat.Format.wBitsPerSample;
  456.         waveformat.Format.wFormatTag = WAVE_FORMAT_PCM;
  457.         waveformat.SubFormat = __KSDATAFORMAT_SUBTYPE_PCM;
  458.         break;
  459.     }
  460.     waveformat.Format.nChannels = i_nb_channels;
  461.     waveformat.Format.nSamplesPerSec = i_rate;
  462.     waveformat.Format.nBlockAlign =
  463.         waveformat.Format.wBitsPerSample / 8 * i_nb_channels;
  464.     waveformat.Format.nAvgBytesPerSec =
  465.         waveformat.Format.nSamplesPerSec * waveformat.Format.nBlockAlign;
  466.     /* Only use the new WAVE_FORMAT_EXTENSIBLE format for multichannel audio */
  467.     if( i_nb_channels <= 2 )
  468.     {
  469.         waveformat.Format.cbSize = 0;
  470.     }
  471.     else
  472.     {
  473.         waveformat.Format.wFormatTag = WAVE_FORMAT_EXTENSIBLE;
  474.         waveformat.Format.cbSize =
  475.             sizeof(WAVEFORMATEXTENSIBLE) - sizeof(WAVEFORMATEX);
  476.     }
  477.     /* Open the device */
  478.     result = waveOutOpen( &p_aout->output.p_sys->h_waveout, WAVE_MAPPER,
  479.                           (WAVEFORMATEX *)&waveformat,
  480.                           (DWORD_PTR)WaveOutCallback, (DWORD_PTR)p_aout,
  481.                           CALLBACK_FUNCTION | (b_probe?WAVE_FORMAT_QUERY:0) );
  482.     if( result == WAVERR_BADFORMAT )
  483.     {
  484.         msg_Warn( p_aout, "waveOutOpen failed WAVERR_BADFORMAT" );
  485.         return VLC_EGENERIC;
  486.     }
  487.     if( result == MMSYSERR_ALLOCATED )
  488.     {
  489.         msg_Warn( p_aout, "waveOutOpen failed WAVERR_ALLOCATED" );
  490.         return VLC_EGENERIC;
  491.     }
  492.     if( result != MMSYSERR_NOERROR )
  493.     {
  494.         msg_Warn( p_aout, "waveOutOpen failed" );
  495.         return VLC_EGENERIC;
  496.     }
  497.     p_aout->output.p_sys->b_chan_reorder =
  498.         aout_CheckChannelReorder( pi_channels_in, pi_channels_out,
  499.                                   waveformat.dwChannelMask, i_nb_channels,
  500.                                   p_aout->output.p_sys->pi_chan_table );
  501.     if( p_aout->output.p_sys->b_chan_reorder )
  502.     {
  503.         msg_Dbg( p_aout, "channel reordering needed" );
  504.     }
  505.     return VLC_SUCCESS;
  506. #undef waveformat
  507. }
  508. /*****************************************************************************
  509.  * OpenWaveOutPCM: open a PCM waveout sound device
  510.  ****************************************************************************/
  511. static int OpenWaveOutPCM( aout_instance_t *p_aout, int *i_format,
  512.                            int i_channels, int i_nb_channels, int i_rate,
  513.                            vlc_bool_t b_probe )
  514. {
  515.     vlc_value_t val;
  516.     var_Get( p_aout, "waveout-float32", &val );
  517.     if( !val.b_bool || OpenWaveOut( p_aout, VLC_FOURCC('f','l','3','2'),
  518.                                    i_channels, i_nb_channels, i_rate, b_probe )
  519.         != VLC_SUCCESS )
  520.     {
  521.         if ( OpenWaveOut( p_aout, VLC_FOURCC('s','1','6','l'),
  522.                           i_channels, i_nb_channels, i_rate, b_probe )
  523.              != VLC_SUCCESS )
  524.         {
  525.             return VLC_EGENERIC;
  526.         }
  527.         else
  528.         {
  529.             *i_format = VLC_FOURCC('s','1','6','l');
  530.             return VLC_SUCCESS;
  531.         }
  532.     }
  533.     else
  534.     {
  535.         *i_format = VLC_FOURCC('f','l','3','2');
  536.         return VLC_SUCCESS;
  537.     }
  538. }
  539. /*****************************************************************************
  540.  * PlayWaveOut: play a buffer through the WaveOut device
  541.  *****************************************************************************/
  542. static int PlayWaveOut( aout_instance_t *p_aout, HWAVEOUT h_waveout,
  543.                         WAVEHDR *p_waveheader, aout_buffer_t *p_buffer )
  544. {
  545.     MMRESULT result;
  546.     /* Prepare the buffer */
  547.     if( p_buffer != NULL )
  548.         p_waveheader->lpData = p_buffer->p_buffer;
  549.     else
  550.         /* Use silence buffer instead */
  551.         p_waveheader->lpData = p_aout->output.p_sys->p_silence_buffer;
  552.     p_waveheader->dwUser = p_buffer ? (DWORD_PTR)p_buffer : (DWORD_PTR)1;
  553.     p_waveheader->dwBufferLength = p_aout->output.p_sys->i_buffer_size;
  554.     p_waveheader->dwFlags = 0;
  555.     result = waveOutPrepareHeader( h_waveout, p_waveheader, sizeof(WAVEHDR) );
  556.     if( result != MMSYSERR_NOERROR )
  557.     {
  558.         msg_Err( p_aout, "waveOutPrepareHeader failed" );
  559.         return VLC_EGENERIC;
  560.     }
  561.     /* Send the buffer to the waveOut queue */
  562.     result = waveOutWrite( h_waveout, p_waveheader, sizeof(WAVEHDR) );
  563.     if( result != MMSYSERR_NOERROR )
  564.     {
  565.         msg_Err( p_aout, "waveOutWrite failed" );
  566.         return VLC_EGENERIC;
  567.     }
  568.     return VLC_SUCCESS;
  569. }
  570. /*****************************************************************************
  571.  * WaveOutCallback: what to do once WaveOut has played its sound samples
  572.  *****************************************************************************/
  573. static void CALLBACK WaveOutCallback( HWAVEOUT h_waveout, UINT uMsg,
  574.                                       DWORD _p_aout,
  575.                                       DWORD dwParam1, DWORD dwParam2 )
  576. {
  577.     aout_instance_t *p_aout = (aout_instance_t *)_p_aout;
  578.     int i, i_queued_frames = 0;
  579.     if( uMsg != WOM_DONE ) return;
  580.     if( p_aout->b_die ) return;
  581.     /* Find out the current latency */
  582.     for( i = 0; i < FRAMES_NUM; i++ )
  583.     {
  584.         /* Check if frame buf is available */
  585.         if( !(p_aout->output.p_sys->waveheader[i].dwFlags & WHDR_DONE) )
  586.         {
  587.             i_queued_frames++;
  588.         }
  589.     }
  590.     /* Don't wake up the thread too much */
  591.     if( i_queued_frames < FRAMES_NUM / 2 )
  592.         SetEvent( p_aout->output.p_sys->event );
  593. }
  594. /*****************************************************************************
  595.  * WaveOutThread: this thread will capture play notification events. 
  596.  *****************************************************************************
  597.  * We use this thread to feed new audio samples to the sound card because
  598.  * we are not authorized to use waveOutWrite() directly in the waveout
  599.  * callback.
  600.  *****************************************************************************/
  601. static void WaveOutThread( notification_thread_t *p_notif )
  602. {
  603.     aout_instance_t *p_aout = p_notif->p_aout;
  604.     aout_sys_t *p_sys = p_aout->output.p_sys;
  605.     aout_buffer_t *p_buffer = NULL;
  606.     WAVEHDR *p_waveheader = p_sys->waveheader;
  607.     int i, i_queued_frames;
  608.     vlc_bool_t b_sleek;
  609.     /* We don't want any resampling when using S/PDIF */
  610.     b_sleek = p_aout->output.output.i_format == VLC_FOURCC('s','p','d','i');
  611.     while( 1 )
  612.     {
  613.         WaitForSingleObject( p_sys->event, INFINITE );
  614.         /* Cleanup and find out the current latency */
  615.         i_queued_frames = 0;
  616.         for( i = 0; i < FRAMES_NUM; i++ )
  617.         {
  618.             if( (p_waveheader[i].dwFlags & WHDR_DONE) &&
  619.                 p_waveheader[i].dwUser )
  620.             {
  621.                 /* Unprepare and free the buffers which has just been played */
  622.                 waveOutUnprepareHeader( p_sys->h_waveout, &p_waveheader[i],
  623.                                         sizeof(WAVEHDR) );
  624.                 if( p_waveheader[i].dwUser != 1 )
  625.                     aout_BufferFree( (aout_buffer_t *)p_waveheader[i].dwUser );
  626.                 p_waveheader[i].dwUser = 0;
  627.             }
  628.             /* Check if frame buf is available */
  629.             if( !(p_waveheader[i].dwFlags & WHDR_DONE) )
  630.             {
  631.                 i_queued_frames++;
  632.             }
  633.         }
  634.         if( p_aout->b_die ) return;
  635.         /* Try to fill in as many frame buffers as possible */
  636.         for( i = 0; i < FRAMES_NUM; i++ )
  637.         {
  638.             /* Check if frame buf is available */
  639.             if( p_waveheader[i].dwFlags & WHDR_DONE )
  640.             {
  641.                 /* Take into account the latency */
  642.                 p_buffer = aout_OutputNextBuffer( p_aout,
  643.                     mdate() + 1000000 * i_queued_frames /
  644.                     p_aout->output.output.i_rate * p_aout->output.i_nb_samples,
  645.                     b_sleek );
  646.                 if( !p_buffer && i_queued_frames )
  647.                 {
  648.                     /* We aren't late so no need to play a blank sample */
  649.                     break;
  650.                 }
  651.                 /* Do the channel reordering */
  652.                 if( p_buffer && p_sys->b_chan_reorder )
  653.                 {
  654.                     aout_ChannelReorder( p_buffer->p_buffer,
  655.                         p_buffer->i_nb_bytes,
  656.                         p_sys->waveformat.Format.nChannels,
  657.                         p_sys->pi_chan_table,
  658.                         p_sys->waveformat.Format.wBitsPerSample );
  659.                 }
  660.                 PlayWaveOut( p_aout, p_sys->h_waveout,
  661.                              &p_waveheader[i], p_buffer );
  662.                 i_queued_frames++;
  663.             }
  664.         }
  665.     }
  666. }