Commit 930c7664 authored by Rafaël Carré's avatar Rafaël Carré

file audio output: write on stdout if filename is "-"

parent a9b77da4
......@@ -101,7 +101,7 @@ static int format_int[] = { VLC_FOURCC('u','8',' ',' '),
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_LONGTEXT N_("File to which the audio samples will be written to. (\"-\" for stdout")
vlc_module_begin();
set_description( _("File audio output") );
......@@ -154,7 +154,11 @@ static int Open( vlc_object_t * p_this )
return VLC_EGENERIC;
}
if( !strcmp( psz_name, "-" ) )
p_aout->output.p_sys->p_file = stdout;
else
p_aout->output.p_sys->p_file = utf8_fopen( psz_name, "wb" );
free( psz_name );
if ( p_aout->output.p_sys->p_file == NULL )
{
......@@ -182,6 +186,7 @@ static int Open( vlc_object_t * p_this )
{
msg_Err( p_aout, "cannot understand the format string (%s)",
psz_format );
if( p_aout->output.p_sys->p_file != stdout )
fclose( p_aout->output.p_sys->p_file );
free( p_aout->output.p_sys );
return VLC_EGENERIC;
......@@ -309,6 +314,7 @@ static void Close( vlc_object_t * p_this )
}
}
if( p_aout->output.p_sys->p_file != stdout )
fclose( p_aout->output.p_sys->p_file );
free( p_aout->output.p_sys );
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment