]> git.sesse.net Git - vlc/blob - modules/audio_output/file.c
macosx: fixed menubar appearance in fullscreen mode by partially reverting [46c93c9cc...
[vlc] / modules / audio_output / file.c
1 /*****************************************************************************
2  * file.c : audio output which writes the samples to a file
3  *****************************************************************************
4  * Copyright (C) 2002 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Gildas Bazin <gbazin@netcourrier.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <errno.h>
34
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37 #include <vlc_aout.h>
38 #include <vlc_codecs.h> /* WAVEHEADER */
39 #include <vlc_charset.h>
40
41 #define FRAME_SIZE 2048
42 #define A52_FRAME_NB 1536
43
44 /*****************************************************************************
45  * aout_sys_t: audio output method descriptor
46  *****************************************************************************
47  * This structure is part of the audio output thread descriptor.
48  * It describes the direct sound specific properties of an audio device.
49  *****************************************************************************/
50 struct aout_sys_t
51 {
52     FILE     * p_file;
53     bool b_add_wav_header;
54
55     WAVEHEADER waveh;                      /* Wave header of the output file */
56 };
57
58 #define CHANNELS_MAX 6
59 static const int pi_channels_maps[CHANNELS_MAX+1] =
60 {
61     0,
62     AOUT_CHAN_CENTER,
63     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
64     AOUT_CHAN_CENTER | AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
65     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT
66      | AOUT_CHAN_REARRIGHT,
67     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
68      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT,
69     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
70      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE
71 };
72
73 /*****************************************************************************
74  * Local prototypes.
75  *****************************************************************************/
76 static int     Open        ( vlc_object_t * );
77 static void    Close       ( vlc_object_t * );
78 static void    Play        ( aout_instance_t * );
79
80 /*****************************************************************************
81  * Module descriptor
82  *****************************************************************************/
83 #define FORMAT_TEXT N_("Output format")
84 #define FORMAT_LONGTEXT N_("One of \"u8\", \"s8\", \"u16\", \"s16\", " \
85     "\"u16_le\", \"s16_le\", \"u16_be\", \"s16_be\", \"fixed32\", " \
86     "\"float32\" or \"spdif\"")
87 #define CHANNELS_TEXT N_("Number of output channels")
88 #define CHANNELS_LONGTEXT N_("By default, all the channels of the incoming " \
89     "will be saved but you can restrict the number of channels here.")
90
91 #define WAV_TEXT N_("Add WAVE header")
92 #define WAV_LONGTEXT N_("Instead of writing a raw file, you can add a WAV " \
93                         "header to the file.")
94
95 static const char *const format_list[] = { "u8", "s8", "u16", "s16", "u16_le",
96                                      "s16_le", "u16_be", "s16_be", "fixed32",
97                                      "float32", "spdif" };
98 static const int format_int[] = { VLC_FOURCC('u','8',' ',' '),
99                                   VLC_FOURCC('s','8',' ',' '),
100                                   AOUT_FMT_U16_NE, AOUT_FMT_S16_NE,
101                                   VLC_FOURCC('u','1','6','l'),
102                                   VLC_FOURCC('s','1','6','l'),
103                                   VLC_FOURCC('u','1','6','b'),
104                                   VLC_FOURCC('s','1','6','b'),
105                                   VLC_FOURCC('f','i','3','2'),
106                                   VLC_FOURCC('f','l','3','2'),
107                                   VLC_FOURCC('s','p','i','f') };
108
109 #define FILE_TEXT N_("Output file")
110 #define FILE_LONGTEXT N_("File to which the audio samples will be written to. (\"-\" for stdout")
111
112 vlc_module_begin ()
113     set_description( N_("File audio output") )
114     set_shortname( N_("File") )
115     set_category( CAT_AUDIO )
116     set_subcategory( SUBCAT_AUDIO_AOUT )
117
118     add_string( "audiofile-format", "s16", NULL,
119                 FORMAT_TEXT, FORMAT_LONGTEXT, true )
120         change_string_list( format_list, 0, 0 )
121     add_integer( "audiofile-channels", 0, NULL,
122                  CHANNELS_TEXT, CHANNELS_LONGTEXT, true )
123     add_file( "audiofile-file", "audiofile.wav", NULL, FILE_TEXT,
124               FILE_LONGTEXT, false )
125     add_bool( "audiofile-wav", 1, NULL, WAV_TEXT, WAV_LONGTEXT, true )
126
127     set_capability( "audio output", 0 )
128     add_shortcut( "file" )
129     add_shortcut( "audiofile" )
130     set_callbacks( Open, Close )
131 vlc_module_end ()
132
133 /*****************************************************************************
134  * Open: open a dummy audio device
135  *****************************************************************************/
136 static int Open( vlc_object_t * p_this )
137 {
138     aout_instance_t * p_aout = (aout_instance_t *)p_this;
139     char * psz_name, * psz_format;
140     const char * const * ppsz_compare = format_list;
141     int i_channels, i = 0;
142
143     psz_name = var_CreateGetString( p_this, "audiofile-file" );
144     if( !psz_name || !*psz_name )
145     {
146         msg_Err( p_aout, "you need to specify an output file name" );
147         free( psz_name );
148         return VLC_EGENERIC;
149     }
150
151     /* Allocate structure */
152     p_aout->output.p_sys = malloc( sizeof( aout_sys_t ) );
153     if( p_aout->output.p_sys == NULL )
154         return VLC_ENOMEM;
155
156     if( !strcmp( psz_name, "-" ) )
157         p_aout->output.p_sys->p_file = stdout;
158     else
159         p_aout->output.p_sys->p_file = utf8_fopen( psz_name, "wb" );
160
161     free( psz_name );
162     if ( p_aout->output.p_sys->p_file == NULL )
163     {
164         free( p_aout->output.p_sys );
165         return VLC_EGENERIC;
166     }
167
168     p_aout->output.pf_play = Play;
169
170     /* Audio format */
171     psz_format = var_CreateGetString( p_this, "audiofile-format" );
172
173     while ( *ppsz_compare != NULL )
174     {
175         if ( !strncmp( *ppsz_compare, psz_format, strlen(*ppsz_compare) ) )
176         {
177             break;
178         }
179         ppsz_compare++; i++;
180     }
181
182     if ( *ppsz_compare == NULL )
183     {
184         msg_Err( p_aout, "cannot understand the format string (%s)",
185                  psz_format );
186         if( p_aout->output.p_sys->p_file != stdout )
187             fclose( p_aout->output.p_sys->p_file );
188         free( p_aout->output.p_sys );
189         free( psz_format );
190         return VLC_EGENERIC;
191     }
192     free( psz_format );
193
194     p_aout->output.output.i_format = format_int[i];
195     if ( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) )
196     {
197         p_aout->output.i_nb_samples = A52_FRAME_NB;
198         p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
199         p_aout->output.output.i_frame_length = A52_FRAME_NB;
200         aout_VolumeNoneInit( p_aout );
201     }
202     else
203     {
204         p_aout->output.i_nb_samples = FRAME_SIZE;
205         aout_VolumeSoftInit( p_aout );
206     }
207
208     /* Channels number */
209     i_channels = var_CreateGetInteger( p_this, "audiofile-channels" );
210
211     if( i_channels > 0 && i_channels <= CHANNELS_MAX )
212     {
213         p_aout->output.output.i_physical_channels =
214             pi_channels_maps[i_channels];
215     }
216
217     /* WAV header */
218     p_aout->output.p_sys->b_add_wav_header = var_CreateGetBool( p_this,
219                                                         "audiofile-wav" );
220
221     if( p_aout->output.p_sys->b_add_wav_header )
222     {
223         /* Write wave header */
224         WAVEHEADER *wh = &p_aout->output.p_sys->waveh;
225
226         memset( wh, 0, sizeof(wh) );
227
228         switch( p_aout->output.output.i_format )
229         {
230         case VLC_FOURCC('f','l','3','2'):
231             wh->Format     = WAVE_FORMAT_IEEE_FLOAT;
232             wh->BitsPerSample = sizeof(float) * 8;
233             break;
234         case VLC_FOURCC('u','8',' ',' '):
235             wh->Format     = WAVE_FORMAT_PCM;
236             wh->BitsPerSample = 8;
237             break;
238         case VLC_FOURCC('s','1','6','l'):
239         default:
240             wh->Format     = WAVE_FORMAT_PCM;
241             wh->BitsPerSample = 16;
242             break;
243         }
244
245         wh->MainChunkID = VLC_FOURCC('R', 'I', 'F', 'F');
246         wh->Length = 0;                    /* temp, to be filled in as we go */
247         wh->ChunkTypeID = VLC_FOURCC('W', 'A', 'V', 'E');
248         wh->SubChunkID = VLC_FOURCC('f', 'm', 't', ' ');
249         wh->SubChunkLength = 16;
250
251         wh->Modus = aout_FormatNbChannels( &p_aout->output.output );
252         wh->SampleFreq = p_aout->output.output.i_rate;
253         wh->BytesPerSample = wh->Modus * ( wh->BitsPerSample / 8 );
254         wh->BytesPerSec = wh->BytesPerSample * wh->SampleFreq;
255
256         wh->DataChunkID = VLC_FOURCC('d', 'a', 't', 'a');
257         wh->DataLength = 0;                /* temp, to be filled in as we go */
258
259         /* Header -> little endian format */
260         SetWLE( &wh->Format, wh->Format );
261         SetWLE( &wh->BitsPerSample, wh->BitsPerSample );
262         SetDWLE( &wh->SubChunkLength, wh->SubChunkLength );
263         SetWLE( &wh->Modus, wh->Modus );
264         SetDWLE( &wh->SampleFreq, wh->SampleFreq );
265         SetWLE( &wh->BytesPerSample, wh->BytesPerSample );
266         SetDWLE( &wh->BytesPerSec, wh->BytesPerSec );
267
268         if( fwrite( wh, sizeof(WAVEHEADER), 1,
269                     p_aout->output.p_sys->p_file ) != 1 )
270         {
271             msg_Err( p_aout, "write error (%m)" );
272         }
273     }
274
275     return 0;
276 }
277
278 /*****************************************************************************
279  * Close: close our file
280  *****************************************************************************/
281 static void Close( vlc_object_t * p_this )
282 {
283     aout_instance_t * p_aout = (aout_instance_t *)p_this;
284
285     msg_Dbg( p_aout, "closing audio file" );
286
287     if( p_aout->output.p_sys->b_add_wav_header )
288     {
289         /* Update Wave Header */
290         p_aout->output.p_sys->waveh.Length =
291             p_aout->output.p_sys->waveh.DataLength + sizeof(WAVEHEADER) - 4;
292
293         /* Write Wave Header */
294         if( fseek( p_aout->output.p_sys->p_file, 0, SEEK_SET ) )
295         {
296             msg_Err( p_aout, "seek error (%m)" );
297         }
298
299         /* Header -> little endian format */
300         SetDWLE( &p_aout->output.p_sys->waveh.Length,
301                  p_aout->output.p_sys->waveh.Length );
302         SetDWLE( &p_aout->output.p_sys->waveh.DataLength,
303                  p_aout->output.p_sys->waveh.DataLength );
304
305         if( fwrite( &p_aout->output.p_sys->waveh, sizeof(WAVEHEADER), 1,
306                     p_aout->output.p_sys->p_file ) != 1 )
307         {
308             msg_Err( p_aout, "write error (%m)" );
309         }
310     }
311
312     if( p_aout->output.p_sys->p_file != stdout )
313         fclose( p_aout->output.p_sys->p_file );
314     free( p_aout->output.p_sys );
315 }
316
317 /*****************************************************************************
318  * Play: pretend to play a sound
319  *****************************************************************************/
320 static void Play( aout_instance_t * p_aout )
321 {
322     aout_buffer_t * p_buffer;
323
324     p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
325
326     if( fwrite( p_buffer->p_buffer, p_buffer->i_nb_bytes, 1,
327                 p_aout->output.p_sys->p_file ) != 1 )
328     {
329         msg_Err( p_aout, "write error (%m)" );
330     }
331
332     if( p_aout->output.p_sys->b_add_wav_header )
333     {
334         /* Update Wave Header */
335         p_aout->output.p_sys->waveh.DataLength += p_buffer->i_nb_bytes;
336     }
337
338     aout_BufferFree( p_buffer );
339 }