X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=modules%2Faudio_output%2Ffile.c;h=e6fbb31dd44a92475dd65ba093c368e1bd2defe3;hb=df93f14938fa1201d69036b65945dcd64c739cce;hp=96e2abe7a78e0a6f9835602130da5ec3a684c9fa;hpb=17a31fd8921f4bb1b441d48d312449732e696a62;p=vlc diff --git a/modules/audio_output/file.c b/modules/audio_output/file.c index 96e2abe7a7..e6fbb31dd4 100644 --- a/modules/audio_output/file.c +++ b/modules/audio_output/file.c @@ -1,8 +1,8 @@ /***************************************************************************** * file.c : audio output which writes the samples to a file ***************************************************************************** - * Copyright (C) 2002 VideoLAN - * $Id: file.c,v 1.19 2003/03/30 14:24:20 gbazin Exp $ + * Copyright (C) 2002 the VideoLAN team + * $Id$ * * Authors: Christophe Massiot * Gildas Bazin @@ -11,7 +11,7 @@ * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 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 @@ -38,23 +38,6 @@ #define FRAME_SIZE 2048 #define A52_FRAME_NB 1536 -typedef struct WAVEHEADER -{ - uint32_t MainChunkID; // it will be 'RIFF' - uint32_t Length; - uint32_t ChunkTypeID; // it will be 'WAVE' - uint32_t SubChunkID; // it will be 'fmt ' - uint32_t SubChunkLength; - uint16_t Format; - uint16_t Modus; - uint32_t SampleFreq; - uint32_t BytesPerSec; - uint16_t BytesPerSample; - uint16_t BitsPerSample; - uint32_t DataChunkID; // it will be 'data' - uint32_t DataLength; -} WAVEHEADER; - /***************************************************************************** * aout_sys_t: audio output method descriptor ***************************************************************************** @@ -69,6 +52,21 @@ struct aout_sys_t WAVEHEADER waveh; /* Wave header of the output file */ }; +#define CHANNELS_MAX 6 +static int pi_channels_maps[CHANNELS_MAX+1] = +{ + 0, + AOUT_CHAN_CENTER, + AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT, + AOUT_CHAN_CENTER | AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT, + AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT + | AOUT_CHAN_REARRIGHT, + AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER + | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT, + AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER + | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE +}; + /***************************************************************************** * Local prototypes. *****************************************************************************/ @@ -79,17 +77,21 @@ static void Play ( aout_instance_t * ); /***************************************************************************** * Module descriptor *****************************************************************************/ -#define FORMAT_TEXT N_("output format") -#define FORMAT_LONGTEXT N_("one of \"u8\", \"s8\", \"u16\", \"s16\", " \ - "\"u16_le\", \"s16_le\", \"u16_be\", " \ - "\"s16_be\", \"fixed32\", \"float32\" or \"spdif\"") -#define WAV_TEXT N_("add wave header") -#define WAV_LONGTEXT N_("instead of writing a raw file, you can add a wav " \ +#define FORMAT_TEXT N_("Output format") +#define FORMAT_LONGTEXT N_("One of \"u8\", \"s8\", \"u16\", \"s16\", " \ + "\"u16_le\", \"s16_le\", \"u16_be\", \"s16_be\", \"fixed32\", " \ + "\"float32\" or \"spdif\"") +#define CHANNELS_TEXT N_("Output channels number") +#define CHANNELS_LONGTEXT N_("By default, all the channels of the incoming " \ + "will be saved but you can restrict the number of channels here.") + +#define WAV_TEXT N_("Add wave header") +#define WAV_LONGTEXT N_("Instead of writing a raw file, you can add a WAV " \ "header to the file") static char *format_list[] = { "u8", "s8", "u16", "s16", "u16_le", "s16_le", "u16_be", "s16_be", "fixed32", "float32", - "spdif", NULL }; + "spdif" }; static int format_int[] = { VLC_FOURCC('u','8',' ',' '), VLC_FOURCC('s','8',' ',' '), AOUT_FMT_U16_NE, AOUT_FMT_S16_NE, @@ -101,17 +103,24 @@ static int format_int[] = { VLC_FOURCC('u','8',' ',' '), VLC_FOURCC('f','l','3','2'), VLC_FOURCC('s','p','i','f') }; -#define FILE_TEXT N_("output file") -#define FILE_LONGTEXT N_("file to which the audio samples will be written to") +#define FILE_TEXT N_("Output file") +#define FILE_LONGTEXT N_("File to which the audio samples will be written to") vlc_module_begin(); - add_category_hint( N_("Audio"), NULL, VLC_FALSE ); - add_string_from_list( "audiofile-format", "s16", format_list, NULL, - FORMAT_TEXT, FORMAT_LONGTEXT, VLC_TRUE ); - add_file( "audiofile", "audiofile.wav", NULL, FILE_TEXT, + set_description( N_("File audio output") ); + set_shortname( _("File") ); + set_category( CAT_AUDIO ); + set_subcategory( SUBCAT_AUDIO_AOUT ); + + add_string( "audiofile-format", "s16", NULL, + FORMAT_TEXT, FORMAT_LONGTEXT, VLC_TRUE ); + change_string_list( format_list, 0, 0 ); + add_integer( "audiofile-channels", 0, NULL, + CHANNELS_TEXT, CHANNELS_LONGTEXT, VLC_TRUE ); + add_file( "audiofile-file", "audiofile.wav", NULL, FILE_TEXT, FILE_LONGTEXT, VLC_FALSE ); add_bool( "audiofile-wav", 1, NULL, WAV_TEXT, WAV_LONGTEXT, VLC_TRUE ); - set_description( N_("file audio output module") ); + set_capability( "audio output", 0 ); add_shortcut( "file" ); add_shortcut( "audiofile" ); @@ -124,12 +133,22 @@ vlc_module_end(); static int Open( vlc_object_t * p_this ) { aout_instance_t * p_aout = (aout_instance_t *)p_this; - char * psz_name = config_GetPsz( p_this, "audiofile-path" ); - char * psz_format = config_GetPsz( p_aout, "audiofile-format" ); + char * psz_name, * psz_format; char ** ppsz_compare = format_list; - int i = 0; + vlc_value_t val; + int i_channels, i = 0; + + var_Create( p_this, "audiofile-file", VLC_VAR_STRING|VLC_VAR_DOINHERIT ); + var_Get( p_this, "audiofile-file", &val ); + psz_name = val.psz_string; + if( !psz_name || !*psz_name ) + { + msg_Err( p_aout, "you need to specify an output file name" ); + if( psz_name ) free( psz_name ); + return VLC_EGENERIC; + } - /* Allocate structure */ + /* Allocate structure */ p_aout->output.p_sys = malloc( sizeof( aout_sys_t ) ); if( p_aout->output.p_sys == NULL ) { @@ -142,11 +161,16 @@ static int Open( vlc_object_t * p_this ) if ( p_aout->output.p_sys->p_file == NULL ) { free( p_aout->output.p_sys ); - return -1; + return VLC_EGENERIC; } p_aout->output.pf_play = Play; + /* Audio format */ + var_Create( p_this, "audiofile-format", VLC_VAR_STRING|VLC_VAR_DOINHERIT ); + var_Get( p_this, "audiofile-format", &val ); + psz_format = val.psz_string; + while ( *ppsz_compare != NULL ) { if ( !strncmp( *ppsz_compare, psz_format, strlen(*ppsz_compare) ) ) @@ -158,11 +182,11 @@ static int Open( vlc_object_t * p_this ) if ( *ppsz_compare == NULL ) { - msg_Err( p_aout, "Cannot understand the format string (%s)", + msg_Err( p_aout, "cannot understand the format string (%s)", psz_format ); fclose( p_aout->output.p_sys->p_file ); free( p_aout->output.p_sys ); - return -1; + return VLC_EGENERIC; } p_aout->output.output.i_format = format_int[i]; @@ -179,8 +203,22 @@ static int Open( vlc_object_t * p_this ) aout_VolumeSoftInit( p_aout ); } - p_aout->output.p_sys->b_add_wav_header = - config_GetInt( p_this, "audiofile-wav" ); + /* Channels number */ + var_Create( p_this, "audiofile-channels", + VLC_VAR_INTEGER|VLC_VAR_DOINHERIT ); + var_Get( p_this, "audiofile-channels", &val ); + i_channels = val.i_int; + + if( i_channels > 0 && i_channels <= CHANNELS_MAX ) + { + p_aout->output.output.i_physical_channels = + pi_channels_maps[i_channels]; + } + + /* WAV header */ + var_Create( p_this, "audiofile-wav", VLC_VAR_BOOL|VLC_VAR_DOINHERIT ); + var_Get( p_this, "audiofile-wav", &val ); + p_aout->output.p_sys->b_add_wav_header = val.b_bool; if( p_aout->output.p_sys->b_add_wav_header ) { @@ -220,6 +258,15 @@ static int Open( vlc_object_t * p_this ) wh->DataChunkID = VLC_FOURCC('d', 'a', 't', 'a'); wh->DataLength = 0; /* temp, to be filled in as we go */ + /* Header -> little endian format */ + SetWLE( &wh->Format, wh->Format ); + SetWLE( &wh->BitsPerSample, wh->BitsPerSample ); + SetDWLE( &wh->SubChunkLength, wh->SubChunkLength ); + SetWLE( &wh->Modus, wh->Modus ); + SetDWLE( &wh->SampleFreq, wh->SampleFreq ); + SetWLE( &wh->BytesPerSample, wh->BytesPerSample ); + SetDWLE( &wh->BytesPerSec, wh->BytesPerSec ); + if( fwrite( wh, sizeof(WAVEHEADER), 1, p_aout->output.p_sys->p_file ) != 1 ) { @@ -250,6 +297,13 @@ static void Close( vlc_object_t * p_this ) { msg_Err( p_aout, "seek error (%s)", strerror(errno) ); } + + /* Header -> little endian format */ + SetDWLE( &p_aout->output.p_sys->waveh.Length, + p_aout->output.p_sys->waveh.Length ); + SetDWLE( &p_aout->output.p_sys->waveh.DataLength, + p_aout->output.p_sys->waveh.DataLength ); + if( fwrite( &p_aout->output.p_sys->waveh, sizeof(WAVEHEADER), 1, p_aout->output.p_sys->p_file ) != 1 ) {