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