]> git.sesse.net Git - vlc/blobdiff - modules/audio_output/file.c
auhal: replace deprecated CarbonCore calls introduced in Component Manager 3.0 back...
[vlc] / modules / audio_output / file.c
index cd1d502567b3164a20ef395e9b28cdc75ad1f9da..5773acc371f8f30a367b2647cd1a2ca59d86e6c0 100644 (file)
@@ -1,25 +1,25 @@
 /*****************************************************************************
  * file.c : audio output which writes the samples to a file
  *****************************************************************************
- * Copyright (C) 2002 the VideoLAN team
+ * Copyright (C) 2002 VLC authors and VideoLAN
  * $Id$
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *          Gildas Bazin <gbazin@netcourrier.com>
  *
- * 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.
  *****************************************************************************/
 
 /*****************************************************************************
@@ -71,8 +71,8 @@ static const int pi_channels_maps[CHANNELS_MAX+1] =
  * Local prototypes.
  *****************************************************************************/
 static int     Open        ( vlc_object_t * );
-static void    Close       ( vlc_object_t * );
 static void    Play        ( audio_output_t *, block_t * );
+static void    Flush       ( audio_output_t *, bool );
 
 /*****************************************************************************
  * Module descriptor
@@ -87,18 +87,20 @@ static void    Play        ( audio_output_t *, block_t * );
 #define WAV_LONGTEXT N_("Instead of writing a raw file, you can add a WAV " \
                         "header to the file.")
 
-static const char *const format_list[] = { "u8", "s8", "u16", "s16", "u16_le",
-                                     "s16_le", "u16_be", "s16_be",
-                                     "float32", "spdif" };
-static const int format_int[] = { VLC_CODEC_U8,
-                                  VLC_CODEC_S8,
-                                  VLC_CODEC_U16N, VLC_CODEC_S16N,
-                                  VLC_CODEC_U16L,
-                                  VLC_CODEC_S16L,
-                                  VLC_CODEC_U16B,
-                                  VLC_CODEC_S16B,
-                                  VLC_CODEC_FL32,
-                                  VLC_CODEC_SPDIFL };
+static const char *const format_list[] = {
+    "u8", "s16",
+#ifndef WORDS_BIGENDIAN
+    "float32",
+#endif
+    "spdif",
+};
+static const int format_int[] = {
+    VLC_CODEC_U8, VLC_CODEC_S16N,
+#ifndef WORDS_BIGENDIAN
+    VLC_CODEC_FL32,
+#endif
+    VLC_CODEC_SPDIFL,
+};
 
 #define FILE_TEXT N_("Output file")
 #define FILE_LONGTEXT N_("File to which the audio samples will be written to. (\"-\" for stdout")
@@ -113,7 +115,7 @@ vlc_module_begin ()
                   FILE_LONGTEXT, false )
     add_string( "audiofile-format", "s16",
                 FORMAT_TEXT, FORMAT_TEXT, true )
-        change_string_list( format_list, 0, 0 )
+        change_string_list( format_list, format_list )
     add_integer( "audiofile-channels", 0,
                  CHANNELS_TEXT, CHANNELS_LONGTEXT, true )
         change_integer_range( 0, 6 )
@@ -121,21 +123,17 @@ vlc_module_begin ()
 
     set_capability( "audio output", 0 )
     add_shortcut( "file", "audiofile" )
-    set_callbacks( Open, Close )
+    set_callbacks( Open, NULL )
 vlc_module_end ()
 
-/*****************************************************************************
- * Open: open a dummy audio device
- *****************************************************************************/
-static int Open( vlc_object_t * p_this )
+static int Start( audio_output_t *p_aout, audio_sample_format_t *restrict fmt )
 {
-    audio_output_t * p_aout = (audio_output_t *)p_this;
     char * psz_name, * psz_format;
     const char * const * ppsz_compare = format_list;
     int i_channels, i = 0;
 
-    psz_name = var_CreateGetString( p_this, "audiofile-file" );
-    if( !psz_name || !*psz_name )
+    psz_name = var_InheritString( p_aout, "audiofile-file" );
+    if( !psz_name )
     {
         msg_Err( p_aout, "you need to specify an output file name" );
         free( psz_name );
@@ -159,12 +157,14 @@ static int Open( vlc_object_t * p_this )
         return VLC_EGENERIC;
     }
 
-    p_aout->pf_play = Play;
-    p_aout->pf_pause = NULL;
-    p_aout->pf_flush = NULL;
+    p_aout->time_get = NULL;
+    p_aout->play = Play;
+    p_aout->pause = NULL;
+    p_aout->flush = Flush;
 
     /* Audio format */
-    psz_format = var_CreateGetString( p_this, "audiofile-format" );
+    psz_format = var_InheritString( p_aout, "audiofile-format" );
+    if ( !psz_format ) abort(); /* FIXME */
 
     while ( *ppsz_compare != NULL )
     {
@@ -187,28 +187,22 @@ static int Open( vlc_object_t * p_this )
     }
     free( psz_format );
 
-    p_aout->format.i_format = format_int[i];
-    if ( AOUT_FMT_SPDIF( &p_aout->format ) )
+    fmt->i_format = format_int[i];
+    if ( AOUT_FMT_SPDIF( fmt ) )
     {
-        p_aout->format.i_bytes_per_frame = AOUT_SPDIF_SIZE;
-        p_aout->format.i_frame_length = A52_FRAME_NB;
+        fmt->i_bytes_per_frame = AOUT_SPDIF_SIZE;
+        fmt->i_frame_length = A52_FRAME_NB;
     }
-    p_aout->volume_set = NULL;
-    p_aout->mute_set = NULL;
 
     /* Channels number */
-    i_channels = var_CreateGetInteger( p_this, "audiofile-channels" );
-
+    i_channels = var_InheritInteger( p_aout, "audiofile-channels" );
     if( i_channels > 0 && i_channels <= CHANNELS_MAX )
     {
-        p_aout->format.i_physical_channels =
-            pi_channels_maps[i_channels];
+        fmt->i_physical_channels = pi_channels_maps[i_channels];
     }
 
     /* WAV header */
-    p_aout->sys->b_add_wav_header = var_CreateGetBool( p_this,
-                                                        "audiofile-wav" );
-
+    p_aout->sys->b_add_wav_header = var_InheritBool( p_aout, "audiofile-wav" );
     if( p_aout->sys->b_add_wav_header )
     {
         /* Write wave header */
@@ -216,17 +210,18 @@ static int Open( vlc_object_t * p_this )
 
         memset( wh, 0, sizeof(*wh) );
 
-        switch( p_aout->format.i_format )
+        switch( fmt->i_format )
         {
+#ifndef WORDS_BIGENDIAN
         case VLC_CODEC_FL32:
             wh->Format     = WAVE_FORMAT_IEEE_FLOAT;
             wh->BitsPerSample = sizeof(float) * 8;
             break;
+#endif
         case VLC_CODEC_U8:
             wh->Format     = WAVE_FORMAT_PCM;
             wh->BitsPerSample = 8;
             break;
-        case VLC_CODEC_S16L:
         default:
             wh->Format     = WAVE_FORMAT_PCM;
             wh->BitsPerSample = 16;
@@ -239,8 +234,8 @@ static int Open( vlc_object_t * p_this )
         wh->SubChunkID = VLC_FOURCC('f', 'm', 't', ' ');
         wh->SubChunkLength = 16;
 
-        wh->Modus = aout_FormatNbChannels( &p_aout->format );
-        wh->SampleFreq = p_aout->format.i_rate;
+        wh->Modus = aout_FormatNbChannels( fmt );
+        wh->SampleFreq = fmt->i_rate;
         wh->BytesPerSample = wh->Modus * ( wh->BitsPerSample / 8 );
         wh->BytesPerSec = wh->BytesPerSample * wh->SampleFreq;
 
@@ -269,10 +264,8 @@ static int Open( vlc_object_t * p_this )
 /*****************************************************************************
  * Close: close our file
  *****************************************************************************/
-static void Close( vlc_object_t * p_this )
+static void Stop( audio_output_t *p_aout )
 {
-    audio_output_t * p_aout = (audio_output_t *)p_this;
-
     msg_Dbg( p_aout, "closing audio file" );
 
     if( p_aout->sys->b_add_wav_header )
@@ -324,3 +317,21 @@ static void Play( audio_output_t * p_aout, block_t *p_buffer )
 
     block_Release( p_buffer );
 }
+
+static void Flush( audio_output_t *aout, bool wait )
+{
+    if( fflush( aout->sys->p_file ) )
+        msg_Err( aout, "flush error (%m)" );
+    (void) wait;
+}
+
+static int Open(vlc_object_t *obj)
+{
+    audio_output_t *aout = (audio_output_t *)obj;
+
+    aout->start = Start;
+    aout->stop = Stop;
+    aout->volume_set = NULL;
+    aout->mute_set = NULL;
+    return VLC_SUCCESS;
+}