]> git.sesse.net Git - vlc/blob - modules/demux/wav.c
svg module: fix memleak.
[vlc] / modules / demux / wav.c
1 /*****************************************************************************
2  * wav.c : wav file input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_demux.h>
35 #include <vlc_aout.h>
36 #include <vlc_codecs.h>
37
38 /*****************************************************************************
39  * Module descriptor
40  *****************************************************************************/
41 static int  Open ( vlc_object_t * );
42 static void Close( vlc_object_t * );
43
44 vlc_module_begin();
45     set_description( N_("WAV demuxer") );
46     set_category( CAT_INPUT );
47     set_subcategory( SUBCAT_INPUT_DEMUX );
48     set_capability( "demux", 142 );
49     set_callbacks( Open, Close );
50 vlc_module_end();
51
52 /*****************************************************************************
53  * Local prototypes
54  *****************************************************************************/
55 static int Demux  ( demux_t * );
56 static int Control( demux_t *, int i_query, va_list args );
57
58 struct demux_sys_t
59 {
60     es_format_t     fmt;
61     es_out_id_t     *p_es;
62
63     int64_t         i_data_pos;
64     unsigned int    i_data_size;
65
66     unsigned int    i_frame_size;
67     int             i_frame_samples;
68
69     date_t          pts;
70
71     uint32_t i_channel_mask;
72     bool b_chan_reorder;              /* do we need channel reordering */
73     int pi_chan_table[AOUT_CHAN_MAX];
74 };
75
76 #define __EVEN( x ) (((x) + 1) & ~1)
77
78 static int ChunkFind( demux_t *, const char *, unsigned int * );
79
80 static void FrameInfo_IMA_ADPCM( demux_t *, unsigned int *, int * );
81 static void FrameInfo_MS_ADPCM ( demux_t *, unsigned int *, int * );
82 static void FrameInfo_PCM      ( demux_t *, unsigned int *, int * );
83
84 static const uint32_t pi_channels_src[] =
85     { WAVE_SPEAKER_FRONT_LEFT, WAVE_SPEAKER_FRONT_RIGHT,
86       WAVE_SPEAKER_FRONT_CENTER, WAVE_SPEAKER_LOW_FREQUENCY,
87       WAVE_SPEAKER_BACK_LEFT, WAVE_SPEAKER_BACK_RIGHT,
88       WAVE_SPEAKER_SIDE_LEFT, WAVE_SPEAKER_SIDE_RIGHT, 0 };
89 static const uint32_t pi_channels_in[] =
90     { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
91       AOUT_CHAN_CENTER, AOUT_CHAN_LFE,
92       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
93       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT, 0 };
94 static const uint32_t pi_channels_out[] =
95     { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
96       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
97       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
98       AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0 };
99
100 /*****************************************************************************
101  * Open: check file and initializes structures
102  *****************************************************************************/
103 static int Open( vlc_object_t * p_this )
104 {
105     demux_t     *p_demux = (demux_t*)p_this;
106     demux_sys_t *p_sys;
107
108     const uint8_t *p_peek;
109     uint32_t     i_size;
110     unsigned int i_extended;
111     const char        *psz_name;
112
113     WAVEFORMATEXTENSIBLE *p_wf_ext = NULL;
114     WAVEFORMATEX         *p_wf = NULL;
115
116     /* Is it a wav file ? */
117     if( stream_Peek( p_demux->s, &p_peek, 12 ) < 12 ) return VLC_EGENERIC;
118
119     if( memcmp( p_peek, "RIFF", 4 ) || memcmp( &p_peek[8], "WAVE", 4 ) )
120     {
121         return VLC_EGENERIC;
122     }
123
124     p_demux->pf_demux   = Demux;
125     p_demux->pf_control = Control;
126     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
127     if( p_sys == NULL )
128         return VLC_ENOMEM;
129
130     p_sys->p_es         = NULL;
131     p_sys->b_chan_reorder = 0;
132     p_sys->i_channel_mask = 0;
133
134     /* skip riff header */
135     stream_Read( p_demux->s, NULL, 12 );  /* cannot fail as peek succeed */
136
137     /* search fmt chunk */
138     if( ChunkFind( p_demux, "fmt ", &i_size ) )
139     {
140         msg_Err( p_demux, "cannot find 'fmt ' chunk" );
141         goto error;
142     }
143     i_size += 2;
144     if( i_size < sizeof( WAVEFORMATEX ) )
145     {
146         msg_Err( p_demux, "invalid 'fmt ' chunk" );
147         goto error;
148     }
149     stream_Read( p_demux->s, NULL, 8 );   /* Cannot fail */
150
151     /* load waveformatex */
152     p_wf_ext = malloc( i_size );
153     if( p_wf_ext == NULL )
154          goto error;
155
156     p_wf = (WAVEFORMATEX *)p_wf_ext;
157     p_wf->cbSize = 0;
158     i_size -= 2;
159     if( stream_Read( p_demux->s, p_wf, i_size ) != (int)i_size
160      || ( ( i_size & 1 ) && stream_Read( p_demux->s, NULL, 1 ) != 1 ) )
161     {
162         msg_Err( p_demux, "cannot load 'fmt ' chunk" );
163         goto error;
164     }
165
166     es_format_Init( &p_sys->fmt, AUDIO_ES, 0 );
167     wf_tag_to_fourcc( GetWLE( &p_wf->wFormatTag ), &p_sys->fmt.i_codec,
168                       &psz_name );
169     p_sys->fmt.audio.i_channels = GetWLE ( &p_wf->nChannels );
170     p_sys->fmt.audio.i_rate = GetDWLE( &p_wf->nSamplesPerSec );
171     p_sys->fmt.audio.i_blockalign = GetWLE( &p_wf->nBlockAlign );
172     p_sys->fmt.i_bitrate = GetDWLE( &p_wf->nAvgBytesPerSec ) * 8;
173     p_sys->fmt.audio.i_bitspersample = GetWLE( &p_wf->wBitsPerSample );
174     if( i_size >= sizeof(WAVEFORMATEX) )
175         p_sys->fmt.i_extra = __MIN( GetWLE( &p_wf->cbSize ), i_size - sizeof(WAVEFORMATEX) );
176     i_extended = 0;
177
178     /* Handle new WAVE_FORMAT_EXTENSIBLE wav files */
179     /* see the following link for more information:
180      * http://www.microsoft.com/whdc/device/audio/multichaud.mspx#EFAA */
181     if( GetWLE( &p_wf->wFormatTag ) == WAVE_FORMAT_EXTENSIBLE &&
182         i_size >= sizeof( WAVEFORMATEXTENSIBLE ) &&
183         ( p_sys->fmt.i_extra + sizeof( WAVEFORMATEX )
184             >= sizeof( WAVEFORMATEXTENSIBLE ) ) )
185     {
186         unsigned i, i_channel_mask;
187         GUID guid_subformat;
188
189         guid_subformat = p_wf_ext->SubFormat;
190         guid_subformat.Data1 = GetDWLE( &p_wf_ext->SubFormat.Data1 );
191         guid_subformat.Data2 = GetWLE( &p_wf_ext->SubFormat.Data2 );
192         guid_subformat.Data3 = GetWLE( &p_wf_ext->SubFormat.Data3 );
193
194         sf_tag_to_fourcc( &guid_subformat, &p_sys->fmt.i_codec, &psz_name );
195
196         i_extended = sizeof( WAVEFORMATEXTENSIBLE ) - sizeof( WAVEFORMATEX );
197         p_sys->fmt.i_extra -= i_extended;
198
199         i_channel_mask = GetDWLE( &p_wf_ext->dwChannelMask );
200         if( i_channel_mask )
201         {
202             for( i = 0; i < sizeof(pi_channels_src)/sizeof(uint32_t); i++ )
203             {
204                 if( i_channel_mask & pi_channels_src[i] )
205                     p_sys->i_channel_mask |= pi_channels_in[i];
206             }
207
208             if( p_sys->fmt.i_codec == VLC_FOURCC('a','r','a','w') ||
209                 p_sys->fmt.i_codec == VLC_FOURCC('p','c','m',' ') ||
210                 p_sys->fmt.i_codec == VLC_FOURCC('a','f','l','t') )
211
212             p_sys->b_chan_reorder =
213                 aout_CheckChannelReorder( pi_channels_in, pi_channels_out,
214                                           p_sys->i_channel_mask,
215                                           p_sys->fmt.audio.i_channels,
216                                           p_sys->pi_chan_table );
217
218             msg_Dbg( p_demux, "channel mask: %x, reordering: %i",
219                      p_sys->i_channel_mask, (int)p_sys->b_chan_reorder );
220         }
221         p_sys->fmt.audio.i_physical_channels =
222             p_sys->fmt.audio.i_original_channels =
223                 p_sys->i_channel_mask;
224     }
225
226     if( p_sys->fmt.i_extra > 0 )
227     {
228         p_sys->fmt.p_extra = malloc( p_sys->fmt.i_extra );
229         memcpy( p_sys->fmt.p_extra, ((uint8_t *)p_wf) + i_extended,
230                 p_sys->fmt.i_extra );
231     }
232
233     msg_Dbg( p_demux, "format: 0x%4.4x, fourcc: %4.4s, channels: %d, "
234              "freq: %u Hz, bitrate: %uKo/s, blockalign: %d, bits/samples: %d, "
235              "extra size: %d",
236              GetWLE( &p_wf->wFormatTag ), (char *)&p_sys->fmt.i_codec,
237              p_sys->fmt.audio.i_channels, p_sys->fmt.audio.i_rate,
238              p_sys->fmt.i_bitrate / 8 / 1024, p_sys->fmt.audio.i_blockalign,
239              p_sys->fmt.audio.i_bitspersample, p_sys->fmt.i_extra );
240
241     free( p_wf );
242     p_wf = NULL;
243
244     switch( p_sys->fmt.i_codec )
245     {
246     case VLC_FOURCC( 'a', 'r', 'a', 'w' ):
247     case VLC_FOURCC( 'a', 'f', 'l', 't' ):
248     case VLC_FOURCC( 'u', 'l', 'a', 'w' ):
249     case VLC_FOURCC( 'a', 'l', 'a', 'w' ):
250     case VLC_FOURCC( 'm', 'l', 'a', 'w' ):
251     case VLC_FOURCC( 'p', 'c', 'm', ' ' ):
252         FrameInfo_PCM( p_demux, &p_sys->i_frame_size,
253                        &p_sys->i_frame_samples );
254         break;
255     case VLC_FOURCC( 'm', 's', 0x00, 0x02 ):
256         FrameInfo_MS_ADPCM( p_demux, &p_sys->i_frame_size,
257                             &p_sys->i_frame_samples );
258         break;
259     case VLC_FOURCC( 'm', 's', 0x00, 0x11 ):
260         FrameInfo_IMA_ADPCM( p_demux, &p_sys->i_frame_size,
261                              &p_sys->i_frame_samples );
262         break;
263     case VLC_FOURCC( 'm', 's', 0x00, 0x61 ):
264     case VLC_FOURCC( 'm', 's', 0x00, 0x62 ):
265         /* FIXME not sure at all FIXME */
266         FrameInfo_MS_ADPCM( p_demux, &p_sys->i_frame_size,
267                             &p_sys->i_frame_samples );
268         break;
269     case VLC_FOURCC( 'm', 'p', 'g', 'a' ):
270     case VLC_FOURCC( 'a', '5', '2', ' ' ):
271         /* FIXME set end of area FIXME */
272         goto error;
273     default:
274         msg_Err( p_demux, "unsupported codec (%4.4s)",
275                  (char*)&p_sys->fmt.i_codec );
276         goto error;
277     }
278
279     msg_Dbg( p_demux, "found %s audio format", psz_name );
280
281     if( ChunkFind( p_demux, "data", &p_sys->i_data_size ) )
282     {
283         msg_Err( p_demux, "cannot find 'data' chunk" );
284         goto error;
285     }
286     stream_Read( p_demux->s, NULL, 8 );   /* Cannot fail */
287     p_sys->i_data_pos = stream_Tell( p_demux->s );
288
289     if( p_sys->fmt.i_bitrate <= 0 )
290     {
291         p_sys->fmt.i_bitrate = (mtime_t)p_sys->i_frame_size *
292             p_sys->fmt.audio.i_rate * 8 / p_sys->i_frame_samples;
293     }
294
295     p_sys->p_es = es_out_Add( p_demux->out, &p_sys->fmt );
296
297     date_Init( &p_sys->pts, p_sys->fmt.audio.i_rate, 1 );
298     date_Set( &p_sys->pts, 1 );
299
300     return VLC_SUCCESS;
301
302 error:
303     free( p_wf );
304     free( p_sys );
305     return VLC_EGENERIC;
306 }
307
308 /*****************************************************************************
309  * Demux: read packet and send them to decoders
310  *****************************************************************************
311  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
312  *****************************************************************************/
313 static int Demux( demux_t *p_demux )
314 {
315     demux_sys_t *p_sys = p_demux->p_sys;
316     int64_t     i_pos;
317     block_t     *p_block;
318
319     i_pos = stream_Tell( p_demux->s );
320
321     if( p_sys->i_data_size > 0 &&
322         i_pos >= p_sys->i_data_pos + p_sys->i_data_size )
323     {
324         /* EOF */
325         return 0;
326     }
327
328     if( ( p_block = stream_Block( p_demux->s, p_sys->i_frame_size ) ) == NULL )
329     {
330         msg_Warn( p_demux, "cannot read data" );
331         return 0;
332     }
333
334     p_block->i_dts = p_block->i_pts =
335         date_Increment( &p_sys->pts, p_sys->i_frame_samples );
336
337     /* set PCR */
338     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
339
340     /* Do the channel reordering */
341     if( p_sys->b_chan_reorder )
342         aout_ChannelReorder( p_block->p_buffer, p_block->i_buffer,
343                              p_sys->fmt.audio.i_channels,
344                              p_sys->pi_chan_table,
345                              p_sys->fmt.audio.i_bitspersample );
346
347     es_out_Send( p_demux->out, p_sys->p_es, p_block );
348
349     return 1;
350 }
351
352 /*****************************************************************************
353  * Close: frees unused data
354  *****************************************************************************/
355 static void Close ( vlc_object_t * p_this )
356 {
357     demux_t     *p_demux = (demux_t*)p_this;
358     demux_sys_t *p_sys  = p_demux->p_sys;
359
360     free( p_sys );
361 }
362
363 /*****************************************************************************
364  * Control:
365  *****************************************************************************/
366 static int Control( demux_t *p_demux, int i_query, va_list args )
367 {
368     demux_sys_t *p_sys  = p_demux->p_sys;
369     int64_t i_end = -1;
370
371     if( p_sys->i_data_size > 0 )
372     {
373         i_end = p_sys->i_data_pos + p_sys->i_data_size;
374     }
375
376     return demux_vaControlHelper( p_demux->s, p_sys->i_data_pos, i_end,
377                                    p_sys->fmt.i_bitrate,
378                                    p_sys->fmt.audio.i_blockalign,
379                                    i_query, args );
380 }
381
382 /*****************************************************************************
383  * Local functions
384  *****************************************************************************/
385 static int ChunkFind( demux_t *p_demux, const char *fcc, unsigned int *pi_size )
386 {
387     const uint8_t *p_peek;
388
389     for( ;; )
390     {
391         uint32_t i_size;
392
393         if( stream_Peek( p_demux->s, &p_peek, 8 ) < 8 )
394         {
395             msg_Err( p_demux, "cannot peek" );
396             return VLC_EGENERIC;
397         }
398
399         i_size = GetDWLE( p_peek + 4 );
400
401         msg_Dbg( p_demux, "chunk: fcc=`%4.4s` size=%"PRIu32, p_peek, i_size );
402
403         if( !memcmp( p_peek, fcc, 4 ) )
404         {
405             if( pi_size )
406             {
407                 *pi_size = i_size;
408             }
409             return VLC_SUCCESS;
410         }
411
412         /* Skip chunk */
413         if( stream_Read( p_demux->s, NULL, 8 ) != 8
414          || stream_Read( p_demux->s, NULL, i_size ) != i_size
415          || ((i_size & 1) && stream_Read( p_demux->s, NULL, 1 ) != 1 ))
416             return VLC_EGENERIC;
417     }
418 }
419
420 static void FrameInfo_PCM( demux_t *p_demux, unsigned int *pi_size,
421                            int *pi_samples )
422 {
423     demux_sys_t *p_sys = p_demux->p_sys;
424     int i_bytes, i_modulo;
425
426     /* read samples for 50ms of */
427     *pi_samples = __MAX( p_sys->fmt.audio.i_rate / 20, 1 );
428
429     i_bytes = *pi_samples * p_sys->fmt.audio.i_channels *
430         ( (p_sys->fmt.audio.i_bitspersample + 7) / 8 );
431
432     if( p_sys->fmt.audio.i_blockalign > 0 )
433     {
434         if( ( i_modulo = i_bytes % p_sys->fmt.audio.i_blockalign ) != 0 )
435         {
436             i_bytes += p_sys->fmt.audio.i_blockalign - i_modulo;
437         }
438     }
439
440     *pi_size = i_bytes;
441 }
442
443 static void FrameInfo_MS_ADPCM( demux_t *p_demux, unsigned int *pi_size,
444                                 int *pi_samples )
445 {
446     demux_sys_t *p_sys = p_demux->p_sys;
447
448     *pi_samples = 2 + 2 * ( p_sys->fmt.audio.i_blockalign -
449         7 * p_sys->fmt.audio.i_channels ) / p_sys->fmt.audio.i_channels;
450
451     *pi_size = p_sys->fmt.audio.i_blockalign;
452 }
453
454 static void FrameInfo_IMA_ADPCM( demux_t *p_demux, unsigned int *pi_size,
455                                  int *pi_samples )
456 {
457     demux_sys_t *p_sys = p_demux->p_sys;
458
459     *pi_samples = 2 * ( p_sys->fmt.audio.i_blockalign -
460         4 * p_sys->fmt.audio.i_channels ) / p_sys->fmt.audio.i_channels;
461
462     *pi_size = p_sys->fmt.audio.i_blockalign;
463 }