X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fdemux%2Fwav.c;h=382b553836d76aaea63ba4767df3170695ce3a6f;hb=7d1d56fec646569bd14262f6b9dde31becbe2137;hp=d83eebd7113ee91d43397a75b72e4ff8394d3e12;hpb=754e4b9260b87a174c94409eca37e844db470e9c;p=vlc diff --git a/modules/demux/wav.c b/modules/demux/wav.c index d83eebd711..382b553836 100644 --- a/modules/demux/wav.c +++ b/modules/demux/wav.c @@ -1,7 +1,7 @@ /***************************************************************************** * wav.c : wav file input module for vlc ***************************************************************************** - * Copyright (C) 2001-2003 VideoLAN + * Copyright (C) 2001-2007 the VideoLAN team * $Id$ * * Authors: Laurent Aimar @@ -18,19 +18,22 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ -#include /* malloc(), free() */ -#include -#include -#include +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif -#include +#include +#include +#include +#include +#include /***************************************************************************** * Module descriptor @@ -39,8 +42,10 @@ static int Open ( vlc_object_t * ); static void Close( vlc_object_t * ); vlc_module_begin(); - set_description( _("WAV demuxer") ); - set_capability( "demux2", 142 ); + set_description( N_("WAV demuxer") ); + set_category( CAT_INPUT ); + set_subcategory( SUBCAT_INPUT_DEMUX ); + set_capability( "demux", 142 ); set_callbacks( Open, Close ); vlc_module_end(); @@ -64,13 +69,13 @@ struct demux_sys_t date_t pts; uint32_t i_channel_mask; - vlc_bool_t b_chan_reorder; /* do we need channel reordering */ + bool b_chan_reorder; /* do we need channel reordering */ int pi_chan_table[AOUT_CHAN_MAX]; }; #define __EVEN( x ) ( ( (x)%2 != 0 ) ? ((x)+1) : (x) ) -static int ChunkFind( demux_t *, char *, unsigned int * ); +static int ChunkFind( demux_t *, const char *, unsigned int * ); static void FrameInfo_IMA_ADPCM( demux_t *, unsigned int *, int * ); static void FrameInfo_MS_ADPCM ( demux_t *, unsigned int *, int * ); @@ -100,20 +105,17 @@ static int Open( vlc_object_t * p_this ) demux_t *p_demux = (demux_t*)p_this; demux_sys_t *p_sys; - uint8_t *p_peek; + const uint8_t *p_peek; unsigned int i_size, i_extended; - char *psz_name; + const char *psz_name; - WAVEFORMATEXTENSIBLE *p_wf_ext; - WAVEFORMATEX *p_wf; + WAVEFORMATEXTENSIBLE *p_wf_ext = NULL; + WAVEFORMATEX *p_wf = NULL; /* Is it a wav file ? */ - if( stream_Peek( p_demux->s, &p_peek, 12 ) < 12 ) - { - msg_Warn( p_demux, "WAV module discarded (cannot peek)" ); - return VLC_EGENERIC; - } - if( strncmp( p_peek, "RIFF", 4 ) || strncmp( &p_peek[8], "WAVE", 4 ) ) + if( stream_Peek( p_demux->s, &p_peek, 12 ) < 12 ) return VLC_EGENERIC; + + if( memcmp( p_peek, "RIFF", 4 ) || memcmp( &p_peek[8], "WAVE", 4 ) ) { return VLC_EGENERIC; } @@ -121,6 +123,9 @@ static int Open( vlc_object_t * p_this ) p_demux->pf_demux = Demux; p_demux->pf_control = Control; p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) ); + if( p_sys == NULL ) + return VLC_ENOMEM; + p_sys->p_es = NULL; p_sys->b_chan_reorder = 0; p_sys->i_channel_mask = 0; @@ -143,6 +148,9 @@ static int Open( vlc_object_t * p_this ) /* load waveformatex */ p_wf_ext = malloc( __EVEN( i_size ) + 2 ); + if( p_wf_ext == NULL ) + goto error; + p_wf = (WAVEFORMATEX *)p_wf_ext; p_wf->cbSize = 0; if( stream_Read( p_demux->s, @@ -164,13 +172,21 @@ static int Open( vlc_object_t * p_this ) i_extended = 0; /* Handle new WAVE_FORMAT_EXTENSIBLE wav files */ + /* see the following link for more information: + * http://www.microsoft.com/whdc/device/audio/multichaud.mspx#EFAA */ if( GetWLE( &p_wf->wFormatTag ) == WAVE_FORMAT_EXTENSIBLE && i_size >= sizeof( WAVEFORMATEXTENSIBLE ) ) { - int i, i_channel_mask; + unsigned i, i_channel_mask; + GUID guid_subformat; + + guid_subformat = p_wf_ext->SubFormat; + guid_subformat.Data1 = GetDWLE( &p_wf_ext->SubFormat.Data1 ); + guid_subformat.Data2 = GetWLE( &p_wf_ext->SubFormat.Data2 ); + guid_subformat.Data3 = GetWLE( &p_wf_ext->SubFormat.Data3 ); + + sf_tag_to_fourcc( &guid_subformat, &p_sys->fmt.i_codec, &psz_name ); - wf_tag_to_fourcc( GetWLE( &p_wf_ext->SubFormat ), - &p_sys->fmt.i_codec, &psz_name ); i_extended = sizeof( WAVEFORMATEXTENSIBLE ) - sizeof( WAVEFORMATEX ); p_sys->fmt.i_extra -= i_extended; @@ -184,6 +200,7 @@ static int Open( vlc_object_t * p_this ) } if( p_sys->fmt.i_codec == VLC_FOURCC('a','r','a','w') || + p_sys->fmt.i_codec == VLC_FOURCC('p','c','m',' ') || p_sys->fmt.i_codec == VLC_FOURCC('a','f','l','t') ) p_sys->b_chan_reorder = @@ -208,7 +225,7 @@ static int Open( vlc_object_t * p_this ) } msg_Dbg( p_demux, "format: 0x%4.4x, fourcc: %4.4s, channels: %d, " - "freq: %d Hz, bitrate: %dKo/s, blockalign: %d, bits/samples: %d, " + "freq: %u Hz, bitrate: %uKo/s, blockalign: %d, bits/samples: %d, " "extra size: %d", GetWLE( &p_wf->wFormatTag ), (char *)&p_sys->fmt.i_codec, p_sys->fmt.audio.i_channels, p_sys->fmt.audio.i_rate, @@ -216,6 +233,7 @@ static int Open( vlc_object_t * p_this ) p_sys->fmt.audio.i_bitspersample, p_sys->fmt.i_extra ); free( p_wf ); + p_wf = NULL; switch( p_sys->fmt.i_codec ) { @@ -223,6 +241,8 @@ static int Open( vlc_object_t * p_this ) case VLC_FOURCC( 'a', 'f', 'l', 't' ): case VLC_FOURCC( 'u', 'l', 'a', 'w' ): case VLC_FOURCC( 'a', 'l', 'a', 'w' ): + case VLC_FOURCC( 'm', 'l', 'a', 'w' ): + case VLC_FOURCC( 'p', 'c', 'm', ' ' ): FrameInfo_PCM( p_demux, &p_sys->i_frame_size, &p_sys->i_frame_samples ); break; @@ -243,7 +263,7 @@ static int Open( vlc_object_t * p_this ) case VLC_FOURCC( 'm', 'p', 'g', 'a' ): case VLC_FOURCC( 'a', '5', '2', ' ' ): /* FIXME set end of area FIXME */ - goto relay; + goto error; default: msg_Err( p_demux, "unsupported codec (%4.4s)", (char*)&p_sys->fmt.i_codec ); @@ -274,7 +294,7 @@ static int Open( vlc_object_t * p_this ) return VLC_SUCCESS; error: -relay: + free( p_wf ); free( p_sys ); return VLC_EGENERIC; } @@ -347,7 +367,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) i_end = p_sys->i_data_pos + p_sys->i_data_size; } - return demux2_vaControlHelper( p_demux->s, p_sys->i_data_pos, i_end, + return demux_vaControlHelper( p_demux->s, p_sys->i_data_pos, i_end, p_sys->fmt.i_bitrate, p_sys->fmt.audio.i_blockalign, i_query, args ); @@ -356,9 +376,9 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) /***************************************************************************** * Local functions *****************************************************************************/ -static int ChunkFind( demux_t *p_demux, char *fcc, unsigned int *pi_size ) +static int ChunkFind( demux_t *p_demux, const char *fcc, unsigned int *pi_size ) { - uint8_t *p_peek; + const uint8_t *p_peek; for( ;; ) { @@ -372,9 +392,9 @@ static int ChunkFind( demux_t *p_demux, char *fcc, unsigned int *pi_size ) i_size = GetDWLE( p_peek + 4 ); - msg_Dbg( p_demux, "Chunk: fcc=`%4.4s` size=%d", p_peek, i_size ); + msg_Dbg( p_demux, "chunk: fcc=`%4.4s` size=%d", p_peek, i_size ); - if( !strncmp( p_peek, fcc, 4 ) ) + if( !memcmp( p_peek, fcc, 4 ) ) { if( pi_size ) {