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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * wav.c : wav file input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2003 VideoLAN
  5.  * $Id: wav.c 8862 2004-09-30 17:21:40Z gbazin $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  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 <stdlib.h>                                      /* malloc(), free() */
  27. #include <vlc/vlc.h>
  28. #include <vlc/input.h>
  29. #include <vlc/aout.h>
  30. #include <codecs.h>
  31. /*****************************************************************************
  32.  * Module descriptor
  33.  *****************************************************************************/
  34. static int  Open ( vlc_object_t * );
  35. static void Close( vlc_object_t * );
  36. vlc_module_begin();
  37.     set_description( _("WAV demuxer") );
  38.     set_capability( "demux2", 142 );
  39.     set_callbacks( Open, Close );
  40. vlc_module_end();
  41. /*****************************************************************************
  42.  * Local prototypes
  43.  *****************************************************************************/
  44. static int Demux  ( demux_t * );
  45. static int Control( demux_t *, int i_query, va_list args );
  46. struct demux_sys_t
  47. {
  48.     es_format_t     fmt;
  49.     es_out_id_t     *p_es;
  50.     int64_t         i_data_pos;
  51.     unsigned int    i_data_size;
  52.     unsigned int    i_frame_size;
  53.     int             i_frame_samples;
  54.     date_t          pts;
  55.     uint32_t i_channel_mask;
  56.     vlc_bool_t b_chan_reorder;              /* do we need channel reordering */
  57.     int pi_chan_table[AOUT_CHAN_MAX];
  58. };
  59. #define __EVEN( x ) ( ( (x)%2 != 0 ) ? ((x)+1) : (x) )
  60. static int ChunkFind( demux_t *, char *, unsigned int * );
  61. static void FrameInfo_IMA_ADPCM( demux_t *, unsigned int *, int * );
  62. static void FrameInfo_MS_ADPCM ( demux_t *, unsigned int *, int * );
  63. static void FrameInfo_PCM      ( demux_t *, unsigned int *, int * );
  64. static const uint32_t pi_channels_src[] =
  65.     { WAVE_SPEAKER_FRONT_LEFT, WAVE_SPEAKER_FRONT_RIGHT,
  66.       WAVE_SPEAKER_FRONT_CENTER, WAVE_SPEAKER_LOW_FREQUENCY,
  67.       WAVE_SPEAKER_BACK_LEFT, WAVE_SPEAKER_BACK_RIGHT,
  68.       WAVE_SPEAKER_SIDE_LEFT, WAVE_SPEAKER_SIDE_RIGHT, 0 };
  69. static const uint32_t pi_channels_in[] =
  70.     { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
  71.       AOUT_CHAN_CENTER, AOUT_CHAN_LFE,
  72.       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
  73.       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT, 0 };
  74. static const uint32_t pi_channels_out[] =
  75.     { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
  76.       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
  77.       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
  78.       AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0 };
  79. /*****************************************************************************
  80.  * Open: check file and initializes structures
  81.  *****************************************************************************/
  82. static int Open( vlc_object_t * p_this )
  83. {
  84.     demux_t     *p_demux = (demux_t*)p_this;
  85.     demux_sys_t *p_sys;
  86.     uint8_t     *p_peek;
  87.     unsigned int i_size, i_extended;
  88.     char        *psz_name;
  89.     WAVEFORMATEXTENSIBLE *p_wf_ext;
  90.     WAVEFORMATEX         *p_wf;
  91.     /* Is it a wav file ? */
  92.     if( stream_Peek( p_demux->s, &p_peek, 12 ) < 12 )
  93.     {
  94.         msg_Warn( p_demux, "WAV module discarded (cannot peek)" );
  95.         return VLC_EGENERIC;
  96.     }
  97.     if( strncmp( p_peek, "RIFF", 4 ) || strncmp( &p_peek[8], "WAVE", 4 ) )
  98.     {
  99.         return VLC_EGENERIC;
  100.     }
  101.     p_demux->pf_demux   = Demux;
  102.     p_demux->pf_control = Control;
  103.     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
  104.     p_sys->p_es         = NULL;
  105.     p_sys->b_chan_reorder = 0;
  106.     p_sys->i_channel_mask = 0;
  107.     /* skip riff header */
  108.     stream_Read( p_demux->s, NULL, 12 );  /* cannot fail as peek succeed */
  109.     /* search fmt chunk */
  110.     if( ChunkFind( p_demux, "fmt ", &i_size ) )
  111.     {
  112.         msg_Err( p_demux, "cannot find 'fmt ' chunk" );
  113.         goto error;
  114.     }
  115.     if( i_size < sizeof( WAVEFORMATEX ) - 2 )   /* XXX -2 isn't a typo */
  116.     {
  117.         msg_Err( p_demux, "invalid 'fmt ' chunk" );
  118.         goto error;
  119.     }
  120.     stream_Read( p_demux->s, NULL, 8 );   /* Cannot fail */
  121.     /* load waveformatex */
  122.     p_wf_ext = malloc( __EVEN( i_size ) + 2 );
  123.     p_wf = (WAVEFORMATEX *)p_wf_ext;
  124.     p_wf->cbSize = 0;
  125.     if( stream_Read( p_demux->s,
  126.                      p_wf, __EVEN( i_size ) ) < (int)__EVEN( i_size ) )
  127.     {
  128.         msg_Err( p_demux, "cannot load 'fmt ' chunk" );
  129.         goto error;
  130.     }
  131.     es_format_Init( &p_sys->fmt, AUDIO_ES, 0 );
  132.     wf_tag_to_fourcc( GetWLE( &p_wf->wFormatTag ), &p_sys->fmt.i_codec,
  133.                       &psz_name );
  134.     p_sys->fmt.audio.i_channels = GetWLE ( &p_wf->nChannels );
  135.     p_sys->fmt.audio.i_rate = GetDWLE( &p_wf->nSamplesPerSec );
  136.     p_sys->fmt.audio.i_blockalign = GetWLE( &p_wf->nBlockAlign );
  137.     p_sys->fmt.i_bitrate = GetDWLE( &p_wf->nAvgBytesPerSec ) * 8;
  138.     p_sys->fmt.audio.i_bitspersample = GetWLE( &p_wf->wBitsPerSample );
  139.     p_sys->fmt.i_extra = GetWLE( &p_wf->cbSize );
  140.     i_extended = 0;
  141.     /* Handle new WAVE_FORMAT_EXTENSIBLE wav files */
  142.     if( GetWLE( &p_wf->wFormatTag ) == WAVE_FORMAT_EXTENSIBLE &&
  143.         i_size >= sizeof( WAVEFORMATEXTENSIBLE ) )
  144.     {
  145.         int i, i_channel_mask;
  146.         wf_tag_to_fourcc( GetWLE( &p_wf_ext->SubFormat ),
  147.                           &p_sys->fmt.i_codec, &psz_name );
  148.         i_extended = sizeof( WAVEFORMATEXTENSIBLE ) - sizeof( WAVEFORMATEX );
  149.         p_sys->fmt.i_extra -= i_extended;
  150.         i_channel_mask = GetDWLE( &p_wf_ext->dwChannelMask );
  151.         if( i_channel_mask )
  152.         {
  153.             for( i = 0; i < sizeof(pi_channels_src)/sizeof(uint32_t); i++ )
  154.             {
  155.                 if( i_channel_mask & pi_channels_src[i] )
  156.                     p_sys->i_channel_mask |= pi_channels_in[i];
  157.             }
  158.             if( p_sys->fmt.i_codec == VLC_FOURCC('a','r','a','w') ||
  159.                 p_sys->fmt.i_codec == VLC_FOURCC('a','f','l','t') )
  160.             p_sys->b_chan_reorder =
  161.                 aout_CheckChannelReorder( pi_channels_in, pi_channels_out,
  162.                                           p_sys->i_channel_mask,
  163.                                           p_sys->fmt.audio.i_channels,
  164.                                           p_sys->pi_chan_table );
  165.             msg_Dbg( p_demux, "channel mask: %x, reordering: %i",
  166.                      p_sys->i_channel_mask, (int)p_sys->b_chan_reorder );
  167.         }
  168.         p_sys->fmt.audio.i_physical_channels =
  169.             p_sys->fmt.audio.i_original_channels =
  170.                 p_sys->i_channel_mask;
  171.     }
  172.     if( p_sys->fmt.i_extra > 0 )
  173.     {
  174.         p_sys->fmt.p_extra = malloc( p_sys->fmt.i_extra );
  175.         memcpy( p_sys->fmt.p_extra, ((uint8_t *)p_wf) + i_extended,
  176.                 p_sys->fmt.i_extra );
  177.     }
  178.     msg_Dbg( p_demux, "format: 0x%4.4x, fourcc: %4.4s, channels: %d, "
  179.              "freq: %d Hz, bitrate: %dKo/s, blockalign: %d, bits/samples: %d, "
  180.              "extra size: %d",
  181.              GetWLE( &p_wf->wFormatTag ), (char *)&p_sys->fmt.i_codec,
  182.              p_sys->fmt.audio.i_channels, p_sys->fmt.audio.i_rate,
  183.              p_sys->fmt.i_bitrate / 8 / 1024, p_sys->fmt.audio.i_blockalign,
  184.              p_sys->fmt.audio.i_bitspersample, p_sys->fmt.i_extra );
  185.     free( p_wf );
  186.     switch( p_sys->fmt.i_codec )
  187.     {
  188.     case VLC_FOURCC( 'a', 'r', 'a', 'w' ):
  189.     case VLC_FOURCC( 'a', 'f', 'l', 't' ):
  190.     case VLC_FOURCC( 'u', 'l', 'a', 'w' ):
  191.     case VLC_FOURCC( 'a', 'l', 'a', 'w' ):
  192.         FrameInfo_PCM( p_demux, &p_sys->i_frame_size,
  193.                        &p_sys->i_frame_samples );
  194.         break;
  195.     case VLC_FOURCC( 'm', 's', 0x00, 0x02 ):
  196.         FrameInfo_MS_ADPCM( p_demux, &p_sys->i_frame_size,
  197.                             &p_sys->i_frame_samples );
  198.         break;
  199.     case VLC_FOURCC( 'm', 's', 0x00, 0x11 ):
  200.         FrameInfo_IMA_ADPCM( p_demux, &p_sys->i_frame_size,
  201.                              &p_sys->i_frame_samples );
  202.         break;
  203.     case VLC_FOURCC( 'm', 's', 0x00, 0x61 ):
  204.     case VLC_FOURCC( 'm', 's', 0x00, 0x62 ):
  205.         /* FIXME not sure at all FIXME */
  206.         FrameInfo_MS_ADPCM( p_demux, &p_sys->i_frame_size,
  207.                             &p_sys->i_frame_samples );
  208.         break;
  209.     case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
  210.     case VLC_FOURCC( 'a', '5', '2', ' ' ):
  211.         /* FIXME set end of area FIXME */
  212.         goto relay;
  213.     default:
  214.         msg_Err( p_demux, "unsupported codec (%4.4s)",
  215.                  (char*)&p_sys->fmt.i_codec );
  216.         goto error;
  217.     }
  218.     msg_Dbg( p_demux, "found %s audio format", psz_name );
  219.     if( ChunkFind( p_demux, "data", &p_sys->i_data_size ) )
  220.     {
  221.         msg_Err( p_demux, "cannot find 'data' chunk" );
  222.         goto error;
  223.     }
  224.     stream_Read( p_demux->s, NULL, 8 );   /* Cannot fail */
  225.     p_sys->i_data_pos = stream_Tell( p_demux->s );
  226.     if( p_sys->fmt.i_bitrate <= 0 )
  227.     {
  228.         p_sys->fmt.i_bitrate = (mtime_t)p_sys->i_frame_size *
  229.             p_sys->fmt.audio.i_rate * 8 / p_sys->i_frame_samples;
  230.     }
  231.     p_sys->p_es = es_out_Add( p_demux->out, &p_sys->fmt );
  232.     date_Init( &p_sys->pts, p_sys->fmt.audio.i_rate, 1 );
  233.     date_Set( &p_sys->pts, 1 );
  234.     return VLC_SUCCESS;
  235. error:
  236. relay:
  237.     free( p_sys );
  238.     return VLC_EGENERIC;
  239. }
  240. /*****************************************************************************
  241.  * Demux: read packet and send them to decoders
  242.  *****************************************************************************
  243.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  244.  *****************************************************************************/
  245. static int Demux( demux_t *p_demux )
  246. {
  247.     demux_sys_t *p_sys = p_demux->p_sys;
  248.     int64_t     i_pos;
  249.     block_t     *p_block;
  250.     i_pos = stream_Tell( p_demux->s );
  251.     if( p_sys->i_data_size > 0 &&
  252.         i_pos >= p_sys->i_data_pos + p_sys->i_data_size )
  253.     {
  254.         /* EOF */
  255.         return 0;
  256.     }
  257.     if( ( p_block = stream_Block( p_demux->s, p_sys->i_frame_size ) ) == NULL )
  258.     {
  259.         msg_Warn( p_demux, "cannot read data" );
  260.         return 0;
  261.     }
  262.     p_block->i_dts = p_block->i_pts =
  263.         date_Increment( &p_sys->pts, p_sys->i_frame_samples );
  264.     /* set PCR */
  265.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
  266.     /* Do the channel reordering */
  267.     if( p_sys->b_chan_reorder )
  268.         aout_ChannelReorder( p_block->p_buffer, p_block->i_buffer,
  269.                              p_sys->fmt.audio.i_channels,
  270.                              p_sys->pi_chan_table,
  271.                              p_sys->fmt.audio.i_bitspersample );
  272.     es_out_Send( p_demux->out, p_sys->p_es, p_block );
  273.     return 1;
  274. }
  275. /*****************************************************************************
  276.  * Close: frees unused data
  277.  *****************************************************************************/
  278. static void Close ( vlc_object_t * p_this )
  279. {
  280.     demux_t     *p_demux = (demux_t*)p_this;
  281.     demux_sys_t *p_sys  = p_demux->p_sys;
  282.     free( p_sys );
  283. }
  284. /*****************************************************************************
  285.  * Control:
  286.  *****************************************************************************/
  287. static int Control( demux_t *p_demux, int i_query, va_list args )
  288. {
  289.     demux_sys_t *p_sys  = p_demux->p_sys;
  290.     int64_t i_end = -1;
  291.     if( p_sys->i_data_size > 0 )
  292.     {
  293.         i_end = p_sys->i_data_pos + p_sys->i_data_size;
  294.     }
  295.     return demux2_vaControlHelper( p_demux->s, p_sys->i_data_pos, i_end,
  296.                                    p_sys->fmt.i_bitrate,
  297.                                    p_sys->fmt.audio.i_blockalign,
  298.                                    i_query, args );
  299. }
  300. /*****************************************************************************
  301.  * Local functions
  302.  *****************************************************************************/
  303. static int ChunkFind( demux_t *p_demux, char *fcc, unsigned int *pi_size )
  304. {
  305.     uint8_t *p_peek;
  306.     for( ;; )
  307.     {
  308.         int i_size;
  309.         if( stream_Peek( p_demux->s, &p_peek, 8 ) < 8 )
  310.         {
  311.             msg_Err( p_demux, "cannot peek()" );
  312.             return VLC_EGENERIC;
  313.         }
  314.         i_size = GetDWLE( p_peek + 4 );
  315.         msg_Dbg( p_demux, "Chunk: fcc=`%4.4s` size=%d", p_peek, i_size );
  316.         if( !strncmp( p_peek, fcc, 4 ) )
  317.         {
  318.             if( pi_size )
  319.             {
  320.                 *pi_size = i_size;
  321.             }
  322.             return VLC_SUCCESS;
  323.         }
  324.         i_size = __EVEN( i_size ) + 8;
  325.         if( stream_Read( p_demux->s, NULL, i_size ) != i_size )
  326.         {
  327.             return VLC_EGENERIC;
  328.         }
  329.     }
  330. }
  331. static void FrameInfo_PCM( demux_t *p_demux, unsigned int *pi_size,
  332.                            int *pi_samples )
  333. {
  334.     demux_sys_t *p_sys = p_demux->p_sys;
  335.     int i_bytes, i_modulo;
  336.     /* read samples for 50ms of */
  337.     *pi_samples = __MAX( p_sys->fmt.audio.i_rate / 20, 1 );
  338.     i_bytes = *pi_samples * p_sys->fmt.audio.i_channels *
  339.         ( (p_sys->fmt.audio.i_bitspersample + 7) / 8 );
  340.     if( p_sys->fmt.audio.i_blockalign > 0 )
  341.     {
  342.         if( ( i_modulo = i_bytes % p_sys->fmt.audio.i_blockalign ) != 0 )
  343.         {
  344.             i_bytes += p_sys->fmt.audio.i_blockalign - i_modulo;
  345.         }
  346.     }
  347.     *pi_size = i_bytes;
  348. }
  349. static void FrameInfo_MS_ADPCM( demux_t *p_demux, unsigned int *pi_size,
  350.                                 int *pi_samples )
  351. {
  352.     demux_sys_t *p_sys = p_demux->p_sys;
  353.     *pi_samples = 2 + 2 * ( p_sys->fmt.audio.i_blockalign -
  354.         7 * p_sys->fmt.audio.i_channels ) / p_sys->fmt.audio.i_channels;
  355.     *pi_size = p_sys->fmt.audio.i_blockalign;
  356. }
  357. static void FrameInfo_IMA_ADPCM( demux_t *p_demux, unsigned int *pi_size,
  358.                                  int *pi_samples )
  359. {
  360.     demux_sys_t *p_sys = p_demux->p_sys;
  361.     *pi_samples = 2 * ( p_sys->fmt.audio.i_blockalign -
  362.         4 * p_sys->fmt.audio.i_channels ) / p_sys->fmt.audio.i_channels;
  363.     *pi_size = p_sys->fmt.audio.i_blockalign;
  364. }