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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * wav.c: wav muxer module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2004, 2006 the VideoLAN team
  5.  * $Id: 7a8968f08fa78b657a10657e4dc893476e0af4d7 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_aout.h>
  32. #include <vlc_sout.h>
  33. #include <vlc_block.h>
  34. #include <vlc_codecs.h>
  35. /*****************************************************************************
  36.  * Module descriptor
  37.  *****************************************************************************/
  38. static int  Open   ( vlc_object_t * );
  39. static void Close  ( vlc_object_t * );
  40. vlc_module_begin ()
  41.     set_description( N_("WAV muxer") )
  42.     set_capability( "sout mux", 5 )
  43.     set_category( CAT_SOUT )
  44.     set_subcategory( SUBCAT_SOUT_MUX )
  45.     set_callbacks( Open, Close )
  46.     add_shortcut( "wav" )
  47. vlc_module_end ()
  48. /*****************************************************************************
  49.  * Exported prototypes
  50.  *****************************************************************************/
  51. static int Control  ( sout_mux_t *, int, va_list );
  52. static int AddStream( sout_mux_t *, sout_input_t * );
  53. static int DelStream( sout_mux_t *, sout_input_t * );
  54. static int Mux      ( sout_mux_t * );
  55. #define MAX_CHANNELS 6
  56. struct sout_mux_sys_t
  57. {
  58.     bool b_used;
  59.     bool b_header;
  60.     bool b_ext;
  61.     uint32_t i_data;
  62.     /* Wave header for the output data */
  63.     uint32_t waveheader[5];
  64.     WAVEFORMATEXTENSIBLE waveformat;
  65.     uint32_t waveheader2[2];
  66.     uint32_t i_channel_mask;
  67.     bool b_chan_reorder;              /* do we need channel reordering */
  68.     int pi_chan_table[AOUT_CHAN_MAX];
  69. };
  70. static const uint32_t pi_channels_src[] =
  71.     { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
  72.       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
  73.       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, AOUT_CHAN_REARCENTER,
  74.       AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0 };
  75. static const uint32_t pi_channels_in[] =
  76.     { WAVE_SPEAKER_FRONT_LEFT, WAVE_SPEAKER_FRONT_RIGHT,
  77.       WAVE_SPEAKER_SIDE_LEFT, WAVE_SPEAKER_SIDE_RIGHT,
  78.       WAVE_SPEAKER_BACK_LEFT, WAVE_SPEAKER_BACK_RIGHT, WAVE_SPEAKER_BACK_CENTER,
  79.       WAVE_SPEAKER_FRONT_CENTER, WAVE_SPEAKER_LOW_FREQUENCY, 0 };
  80. static const uint32_t pi_channels_out[] =
  81.     { WAVE_SPEAKER_FRONT_LEFT, WAVE_SPEAKER_FRONT_RIGHT,
  82.       WAVE_SPEAKER_FRONT_CENTER, WAVE_SPEAKER_LOW_FREQUENCY,
  83.       WAVE_SPEAKER_BACK_LEFT, WAVE_SPEAKER_BACK_RIGHT,
  84.       WAVE_SPEAKER_BACK_CENTER,
  85.       WAVE_SPEAKER_SIDE_LEFT, WAVE_SPEAKER_SIDE_RIGHT, 0 };
  86. /*****************************************************************************
  87.  * Open:
  88.  *****************************************************************************/
  89. static int Open( vlc_object_t *p_this )
  90. {
  91.     sout_mux_t *p_mux = (sout_mux_t*)p_this;
  92.     sout_mux_sys_t  *p_sys;
  93.     p_mux->pf_control  = Control;
  94.     p_mux->pf_addstream = AddStream;
  95.     p_mux->pf_delstream = DelStream;
  96.     p_mux->pf_mux       = Mux;
  97.     p_mux->p_sys = p_sys = malloc( sizeof( sout_mux_sys_t ) );
  98.     if( !p_sys )
  99.         return VLC_ENOMEM;
  100.     p_sys->b_used   = false;
  101.     p_sys->b_header = true;
  102.     p_sys->i_data   = 0;
  103.     p_sys->b_chan_reorder = 0;
  104.     return VLC_SUCCESS;
  105. }
  106. /*****************************************************************************
  107.  * Close:
  108.  *****************************************************************************/
  109. static void Close( vlc_object_t * p_this )
  110. {
  111.     sout_mux_t *p_mux = (sout_mux_t*)p_this;
  112.     sout_mux_sys_t *p_sys = p_mux->p_sys;
  113.     free( p_sys );
  114. }
  115. static int Control( sout_mux_t *p_mux, int i_query, va_list args )
  116. {
  117.     VLC_UNUSED(p_mux);
  118.     bool *pb_bool;
  119.     char **ppsz;
  120.     switch( i_query )
  121.     {
  122.         case MUX_CAN_ADD_STREAM_WHILE_MUXING:
  123.             pb_bool = (bool*)va_arg( args, bool * );
  124.             *pb_bool = false;
  125.             return VLC_SUCCESS;
  126.         case MUX_GET_ADD_STREAM_WAIT:
  127.             pb_bool = (bool*)va_arg( args, bool * );
  128.             *pb_bool = true;
  129.             return VLC_SUCCESS;
  130.         case MUX_GET_MIME:
  131.             ppsz = (char**)va_arg( args, char ** );
  132.             *ppsz = strdup( "audio/wav" );
  133.             return VLC_SUCCESS;
  134.         default:
  135.             return VLC_EGENERIC;
  136.     }
  137. }
  138. static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
  139. {
  140.     GUID subformat_guid = {0, 0, 0x10,{0x80, 0, 0, 0xaa, 0, 0x38, 0x9b, 0x71}};
  141.     sout_mux_sys_t *p_sys = p_mux->p_sys;
  142.     WAVEFORMATEX *p_waveformat = &p_sys->waveformat.Format;
  143.     int i_bytes_per_sample, i_format;
  144.     bool b_ext;
  145.     if( p_input->p_fmt->i_cat != AUDIO_ES )
  146.     {
  147.         msg_Dbg( p_mux, "not an audio stream" );
  148.         return VLC_EGENERIC;
  149.     }
  150.     if( p_sys->b_used )
  151.     {
  152.         msg_Dbg( p_mux, "can't add more than 1 stream" );
  153.         return VLC_EGENERIC;
  154.     }
  155.     msg_Dbg( p_mux, "adding %i input channels, %iHz",
  156.              p_input->p_fmt->audio.i_channels,
  157.              p_input->p_fmt->audio.i_rate );
  158.     p_sys->i_channel_mask = 0;
  159.     if( p_input->p_fmt->audio.i_physical_channels )
  160.     {
  161.         unsigned int i;
  162.  
  163.         for( i = 0; i < sizeof(pi_channels_in)/sizeof(uint32_t); i++ )
  164.         {
  165.             if( p_input->p_fmt->audio.i_physical_channels & pi_channels_src[i])
  166.                 p_sys->i_channel_mask |= pi_channels_in[i];
  167.         }
  168.         p_sys->b_chan_reorder =
  169.             aout_CheckChannelReorder( pi_channels_in, pi_channels_out,
  170.                                       p_sys->i_channel_mask,
  171.                                       p_input->p_fmt->audio.i_channels,
  172.                                       p_sys->pi_chan_table );
  173.         msg_Dbg( p_mux, "channel mask: %x, reordering: %i",
  174.                  p_sys->i_channel_mask, (int)p_sys->b_chan_reorder );
  175.     }
  176.     i_format = p_input->p_fmt->i_codec == VLC_FOURCC('f', 'l', '3', '2') ?
  177.         WAVE_FORMAT_IEEE_FLOAT : WAVE_FORMAT_PCM;
  178.     b_ext = p_sys->b_ext = p_input->p_fmt->audio.i_channels > 2;
  179.     /* Build a WAV header for the output data */
  180.     p_sys->waveheader[0] = VLC_FOURCC('R', 'I', 'F', 'F'); /* MainChunkID */
  181.     SetDWLE( &p_sys->waveheader[1], 0 ); /* Length */
  182.     p_sys->waveheader[2] = VLC_FOURCC('W', 'A', 'V', 'E'); /* ChunkTypeID */
  183.     p_sys->waveheader[3] = VLC_FOURCC('f', 'm', 't', ' '); /* SubChunkID */
  184.     SetDWLE( &p_sys->waveheader[4], b_ext ? 40 : 16 ); /* SubChunkLength */
  185.     p_sys->waveheader2[0] = VLC_FOURCC('d', 'a', 't', 'a'); /* DataChunkID */
  186.     SetDWLE( &p_sys->waveheader2[1], 0 ); /* DataLength */
  187.     /* Build a WAVEVFORMAT header for the output data */
  188.     memset( &p_sys->waveformat, 0, sizeof(WAVEFORMATEXTENSIBLE) );
  189.     SetWLE( &p_waveformat->wFormatTag,
  190.             b_ext ? WAVE_FORMAT_EXTENSIBLE : i_format );
  191.     SetWLE( &p_waveformat->nChannels,
  192.             p_input->p_fmt->audio.i_channels );
  193.     SetDWLE( &p_waveformat->nSamplesPerSec, p_input->p_fmt->audio.i_rate );
  194.     i_bytes_per_sample = p_input->p_fmt->audio.i_channels *
  195.         p_input->p_fmt->audio.i_bitspersample / 8;
  196.     SetDWLE( &p_waveformat->nAvgBytesPerSec,
  197.              i_bytes_per_sample * p_input->p_fmt->audio.i_rate );
  198.     SetWLE( &p_waveformat->nBlockAlign, i_bytes_per_sample );
  199.     SetWLE( &p_waveformat->wBitsPerSample,
  200.             p_input->p_fmt->audio.i_bitspersample );
  201.     SetWLE( &p_waveformat->cbSize, 22 );
  202.     SetWLE( &p_sys->waveformat.Samples.wValidBitsPerSample,
  203.             p_input->p_fmt->audio.i_bitspersample );
  204.     SetDWLE( &p_sys->waveformat.dwChannelMask,
  205.              p_sys->i_channel_mask );
  206.     p_sys->waveformat.SubFormat = subformat_guid;
  207.     p_sys->waveformat.SubFormat.Data1 = i_format;
  208.     p_sys->b_used = true;
  209.     return VLC_SUCCESS;
  210. }
  211. static block_t *GetHeader( sout_mux_t *p_mux )
  212. {
  213.     sout_mux_sys_t *p_sys = p_mux->p_sys;
  214.     block_t *p_block =
  215.         block_New( p_mux, sizeof( WAVEFORMATEXTENSIBLE ) + 7 * 4 );
  216.     SetDWLE( &p_sys->waveheader[1],
  217.              20 + (p_sys->b_ext ? 40 : 16) + p_sys->i_data ); /* Length */
  218.     SetDWLE( &p_sys->waveheader2[1], p_sys->i_data ); /* DataLength */
  219.     memcpy( p_block->p_buffer, &p_sys->waveheader, 5 * 4 );
  220.     memcpy( p_block->p_buffer + 5 * 4, &p_sys->waveformat,
  221.             sizeof( WAVEFORMATEXTENSIBLE ) );
  222.     memcpy( p_block->p_buffer + 5 * 4 +
  223.             (p_sys->b_ext ? sizeof( WAVEFORMATEXTENSIBLE ) : 16),
  224.             &p_sys->waveheader2, 2 * 4 );
  225.     if( !p_sys->b_ext ) p_block->i_buffer -= 24;
  226.     return p_block;
  227. }
  228. static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
  229. {
  230.     VLC_UNUSED(p_input);
  231.     msg_Dbg( p_mux, "removing input" );
  232.     msg_Dbg( p_mux, "writing header data" );
  233.     if( sout_AccessOutSeek( p_mux->p_access, 0 ) == VLC_SUCCESS )
  234.     {
  235.         sout_AccessOutWrite( p_mux->p_access, GetHeader( p_mux ) );
  236.     }
  237.     return VLC_SUCCESS;
  238. }
  239. static int Mux( sout_mux_t *p_mux )
  240. {
  241.     sout_mux_sys_t *p_sys = p_mux->p_sys;
  242.     sout_input_t *p_input;
  243.     if( !p_mux->i_nb_inputs ) return VLC_SUCCESS;
  244.     if( p_sys->b_header )
  245.     {
  246.         msg_Dbg( p_mux, "writing header data" );
  247.         sout_AccessOutWrite( p_mux->p_access, GetHeader( p_mux ) );
  248.     }
  249.     p_sys->b_header = false;
  250.     p_input = p_mux->pp_inputs[0];
  251.     while( block_FifoCount( p_input->p_fifo ) > 0 )
  252.     {
  253.         block_t *p_block = block_FifoGet( p_input->p_fifo );
  254.         p_sys->i_data += p_block->i_buffer;
  255.         /* Do the channel reordering */
  256.         if( p_sys->b_chan_reorder )
  257.             aout_ChannelReorder( p_block->p_buffer, p_block->i_buffer,
  258.                                  p_input->p_fmt->audio.i_channels,
  259.                                  p_sys->pi_chan_table,
  260.                                  p_input->p_fmt->audio.i_bitspersample );
  261.         sout_AccessOutWrite( p_mux->p_access, p_block );
  262.     }
  263.     return VLC_SUCCESS;
  264. }