X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fmux%2Fwav.c;h=b9e3482723f482d116c695270c2770b50ea510bb;hb=1fbd0f24404187cc2d7454285f592ad23bf7a3de;hp=19383f96169b24907aef8c98d4392bf425624779;hpb=7dd2f1548a90c339f7e91ff469a6ad3ec9eecdd4;p=vlc diff --git a/modules/mux/wav.c b/modules/mux/wav.c index 19383f9616..b9e3482723 100644 --- a/modules/mux/wav.c +++ b/modules/mux/wav.c @@ -1,31 +1,36 @@ /***************************************************************************** * wav.c: wav muxer module for vlc ***************************************************************************** - * Copyright (C) 2004, 2006 the VideoLAN team + * Copyright (C) 2004, 2006 VLC authors and VideoLAN * $Id$ * * Authors: Gildas Bazin * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ /***************************************************************************** * Preamble *****************************************************************************/ -#include +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include +#include #include #include #include @@ -37,30 +42,30 @@ static int Open ( vlc_object_t * ); static void Close ( vlc_object_t * ); -vlc_module_begin(); - set_description( _("WAV muxer") ); - set_capability( "sout mux", 5 ); - set_category( CAT_SOUT ); - set_subcategory( SUBCAT_SOUT_MUX ); - set_callbacks( Open, Close ); - add_shortcut( "wav" ); -vlc_module_end(); +vlc_module_begin () + set_description( N_("WAV muxer") ) + set_capability( "sout mux", 5 ) + set_category( CAT_SOUT ) + set_subcategory( SUBCAT_SOUT_MUX ) + set_callbacks( Open, Close ) + add_shortcut( "wav" ) +vlc_module_end () /***************************************************************************** * Exported prototypes *****************************************************************************/ static int Control ( sout_mux_t *, int, va_list ); static int AddStream( sout_mux_t *, sout_input_t * ); -static int DelStream( sout_mux_t *, sout_input_t * ); +static void DelStream( sout_mux_t *, sout_input_t * ); static int Mux ( sout_mux_t * ); #define MAX_CHANNELS 6 struct sout_mux_sys_t { - vlc_bool_t b_used; - vlc_bool_t b_header; - vlc_bool_t b_ext; + bool b_used; + bool b_header; + bool b_ext; uint32_t i_data; @@ -70,25 +75,20 @@ struct sout_mux_sys_t uint32_t waveheader2[2]; uint32_t i_channel_mask; - vlc_bool_t b_chan_reorder; /* do we need channel reordering */ - int pi_chan_table[AOUT_CHAN_MAX]; + uint8_t i_chans_to_reorder; /* do we need channel reordering */ + uint8_t pi_chan_table[AOUT_CHAN_MAX]; }; - -static const uint32_t pi_channels_src[] = - { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT, - AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT, - AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, - AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0 }; static const uint32_t pi_channels_in[] = { WAVE_SPEAKER_FRONT_LEFT, WAVE_SPEAKER_FRONT_RIGHT, WAVE_SPEAKER_SIDE_LEFT, WAVE_SPEAKER_SIDE_RIGHT, - WAVE_SPEAKER_BACK_LEFT, WAVE_SPEAKER_BACK_RIGHT, + WAVE_SPEAKER_BACK_LEFT, WAVE_SPEAKER_BACK_RIGHT, WAVE_SPEAKER_BACK_CENTER, WAVE_SPEAKER_FRONT_CENTER, WAVE_SPEAKER_LOW_FREQUENCY, 0 }; static const uint32_t pi_channels_out[] = { WAVE_SPEAKER_FRONT_LEFT, WAVE_SPEAKER_FRONT_RIGHT, WAVE_SPEAKER_FRONT_CENTER, WAVE_SPEAKER_LOW_FREQUENCY, WAVE_SPEAKER_BACK_LEFT, WAVE_SPEAKER_BACK_RIGHT, + WAVE_SPEAKER_BACK_CENTER, WAVE_SPEAKER_SIDE_LEFT, WAVE_SPEAKER_SIDE_RIGHT, 0 }; /***************************************************************************** @@ -105,11 +105,13 @@ static int Open( vlc_object_t *p_this ) p_mux->pf_mux = Mux; p_mux->p_sys = p_sys = malloc( sizeof( sout_mux_sys_t ) ); - p_sys->b_used = VLC_FALSE; - p_sys->b_header = VLC_TRUE; + if( !p_sys ) + return VLC_ENOMEM; + p_sys->b_used = false; + p_sys->b_header = true; p_sys->i_data = 0; - p_sys->b_chan_reorder = 0; + p_sys->i_chans_to_reorder = 0; return VLC_SUCCESS; } @@ -126,37 +128,39 @@ static void Close( vlc_object_t * p_this ) static int Control( sout_mux_t *p_mux, int i_query, va_list args ) { - vlc_bool_t *pb_bool; + VLC_UNUSED(p_mux); + bool *pb_bool; char **ppsz; - switch( i_query ) - { - case MUX_CAN_ADD_STREAM_WHILE_MUXING: - pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * ); - *pb_bool = VLC_FALSE; - return VLC_SUCCESS; + switch( i_query ) + { + case MUX_CAN_ADD_STREAM_WHILE_MUXING: + pb_bool = (bool*)va_arg( args, bool * ); + *pb_bool = false; + return VLC_SUCCESS; - case MUX_GET_ADD_STREAM_WAIT: - pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t * ); - *pb_bool = VLC_TRUE; - return VLC_SUCCESS; + case MUX_GET_ADD_STREAM_WAIT: + pb_bool = (bool*)va_arg( args, bool * ); + *pb_bool = true; + return VLC_SUCCESS; - case MUX_GET_MIME: - ppsz = (char**)va_arg( args, char ** ); - *ppsz = strdup( "audio/wav" ); - return VLC_SUCCESS; + case MUX_GET_MIME: + ppsz = (char**)va_arg( args, char ** ); + *ppsz = strdup( "audio/wav" ); + return VLC_SUCCESS; default: return VLC_EGENERIC; - } + } } static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) { GUID subformat_guid = {0, 0, 0x10,{0x80, 0, 0, 0xaa, 0, 0x38, 0x9b, 0x71}}; sout_mux_sys_t *p_sys = p_mux->p_sys; WAVEFORMATEX *p_waveformat = &p_sys->waveformat.Format; - int i_bytes_per_sample, i_format; - vlc_bool_t b_ext; + int i_bytes_per_sample; + uint16_t i_format; + bool b_ext; if( p_input->p_fmt->i_cat != AUDIO_ES ) { @@ -177,26 +181,20 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) p_sys->i_channel_mask = 0; if( p_input->p_fmt->audio.i_physical_channels ) { - unsigned int i; - - for( i = 0; i < sizeof(pi_channels_in)/sizeof(uint32_t); i++ ) - { - if( p_input->p_fmt->audio.i_physical_channels & pi_channels_src[i]) + for( unsigned i = 0; i < pi_vlc_chan_order_wg4[i]; i++ ) + if( p_input->p_fmt->audio.i_physical_channels & pi_vlc_chan_order_wg4[i]) p_sys->i_channel_mask |= pi_channels_in[i]; - } - p_sys->b_chan_reorder = + p_sys->i_chans_to_reorder = aout_CheckChannelReorder( pi_channels_in, pi_channels_out, p_sys->i_channel_mask, - p_input->p_fmt->audio.i_channels, p_sys->pi_chan_table ); - msg_Dbg( p_mux, "channel mask: %x, reordering: %i", - p_sys->i_channel_mask, (int)p_sys->b_chan_reorder ); + msg_Dbg( p_mux, "channel mask: %x, reordering: %u", + p_sys->i_channel_mask, p_sys->i_chans_to_reorder ); } - i_format = p_input->p_fmt->i_codec == VLC_FOURCC('f', 'l', '3', '2') ? - WAVE_FORMAT_IEEE_FLOAT : WAVE_FORMAT_PCM; + fourcc_to_wf_tag( p_input->p_fmt->i_codec, &i_format ); b_ext = p_sys->b_ext = p_input->p_fmt->audio.i_channels > 2; /* Build a WAV header for the output data */ @@ -232,7 +230,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) p_sys->waveformat.SubFormat.Data1 = i_format; - p_sys->b_used = VLC_TRUE; + p_sys->b_used = true; return VLC_SUCCESS; } @@ -241,7 +239,7 @@ static block_t *GetHeader( sout_mux_t *p_mux ) { sout_mux_sys_t *p_sys = p_mux->p_sys; block_t *p_block = - block_New( p_mux, sizeof( WAVEFORMATEXTENSIBLE ) + 7 * 4 ); + block_Alloc( sizeof( WAVEFORMATEXTENSIBLE ) + 7 * 4 ); SetDWLE( &p_sys->waveheader[1], 20 + (p_sys->b_ext ? 40 : 16) + p_sys->i_data ); /* Length */ @@ -257,17 +255,16 @@ static block_t *GetHeader( sout_mux_t *p_mux ) return p_block; } -static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input ) +static void DelStream( sout_mux_t *p_mux, sout_input_t *p_input ) { + VLC_UNUSED(p_input); msg_Dbg( p_mux, "removing input" ); msg_Dbg( p_mux, "writing header data" ); - if( !sout_AccessOutSeek( p_mux->p_access, 0 ) ) + if( sout_AccessOutSeek( p_mux->p_access, 0 ) == VLC_SUCCESS ) { sout_AccessOutWrite( p_mux->p_access, GetHeader( p_mux ) ); } - - return VLC_SUCCESS; } static int Mux( sout_mux_t *p_mux ) @@ -282,7 +279,7 @@ static int Mux( sout_mux_t *p_mux ) msg_Dbg( p_mux, "writing header data" ); sout_AccessOutWrite( p_mux->p_access, GetHeader( p_mux ) ); } - p_sys->b_header = VLC_FALSE; + p_sys->b_header = false; p_input = p_mux->pp_inputs[0]; while( block_FifoCount( p_input->p_fifo ) > 0 ) @@ -291,11 +288,10 @@ static int Mux( sout_mux_t *p_mux ) p_sys->i_data += p_block->i_buffer; /* Do the channel reordering */ - if( p_sys->b_chan_reorder ) + if( p_sys->i_chans_to_reorder ) aout_ChannelReorder( p_block->p_buffer, p_block->i_buffer, - p_input->p_fmt->audio.i_channels, - p_sys->pi_chan_table, - p_input->p_fmt->audio.i_bitspersample ); + p_sys->i_chans_to_reorder, + p_sys->pi_chan_table, p_input->p_fmt->i_codec ); sout_AccessOutWrite( p_mux->p_access, p_block ); }