]> git.sesse.net Git - vlc/blob - modules/demux/wav.c
mkv: fixed playback of certain files on 32bit Apple platforms
[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 static int ChunkFind( demux_t *, const char *, unsigned int * );
77
78 static int FrameInfo_IMA_ADPCM( unsigned int *, int *, const es_format_t * );
79 static int FrameInfo_MS_ADPCM ( unsigned int *, int *, const es_format_t * );
80 static int FrameInfo_PCM      ( unsigned int *, int *, const es_format_t * );
81 static int FrameInfo_MSGSM    ( unsigned int *, int *, const es_format_t * );
82
83 static const uint32_t pi_channels_src[] =
84     { WAVE_SPEAKER_FRONT_LEFT, WAVE_SPEAKER_FRONT_RIGHT,
85       WAVE_SPEAKER_FRONT_CENTER, WAVE_SPEAKER_LOW_FREQUENCY,
86       WAVE_SPEAKER_BACK_LEFT, WAVE_SPEAKER_BACK_RIGHT, WAVE_SPEAKER_BACK_CENTER,
87       WAVE_SPEAKER_SIDE_LEFT, WAVE_SPEAKER_SIDE_RIGHT, 0 };
88 static const uint32_t pi_channels_in[] =
89     { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
90       AOUT_CHAN_CENTER, AOUT_CHAN_LFE,
91       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, AOUT_CHAN_REARCENTER,
92       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT, 0 };
93
94 /*****************************************************************************
95  * Open: check file and initializes structures
96  *****************************************************************************/
97 static int Open( vlc_object_t * p_this )
98 {
99     demux_t     *p_demux = (demux_t*)p_this;
100     demux_sys_t *p_sys;
101
102     const uint8_t *p_peek;
103     unsigned int   i_size;
104     unsigned int   i_extended;
105     const char    *psz_name;
106
107     WAVEFORMATEXTENSIBLE *p_wf_ext = NULL;
108     WAVEFORMATEX         *p_wf = NULL;
109
110     /* Is it a wav file ? */
111     if( stream_Peek( p_demux->s, &p_peek, 12 ) < 12 )
112         return VLC_EGENERIC;
113
114     if( memcmp( p_peek, "RIFF", 4 ) || memcmp( &p_peek[8], "WAVE", 4 ) )
115     {
116         return VLC_EGENERIC;
117     }
118
119     p_demux->pf_demux     = Demux;
120     p_demux->pf_control   = Control;
121     p_demux->p_sys        = p_sys = malloc( sizeof( *p_sys ) );
122     if( unlikely(!p_sys) )
123         return VLC_ENOMEM;
124
125     p_sys->p_es           = NULL;
126     p_sys->b_chan_reorder = false;
127     p_sys->i_channel_mask = 0;
128
129     /* skip riff header */
130     if( stream_Read( p_demux->s, NULL, 12 ) != 12 )
131         goto error;
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     i_size += 2;
140     if( i_size < sizeof( WAVEFORMATEX ) )
141     {
142         msg_Err( p_demux, "invalid 'fmt ' chunk" );
143         goto error;
144     }
145     if( stream_Read( p_demux->s, NULL, 8 ) != 8 )
146         goto error;
147
148
149     /* load waveformatex */
150     p_wf_ext = malloc( i_size );
151     if( unlikely( !p_wf_ext ) )
152          goto error;
153
154     p_wf         = &p_wf_ext->Format;
155     p_wf->cbSize = 0;
156     i_size      -= 2;
157     if( stream_Read( p_demux->s, p_wf, i_size ) != (int)i_size ||
158         ( ( i_size & 1 ) && stream_Read( p_demux->s, NULL, 1 ) != 1 ) )
159     {
160         msg_Err( p_demux, "cannot load 'fmt ' chunk" );
161         goto error;
162     }
163
164     es_format_Init( &p_sys->fmt, AUDIO_ES, 0 );
165     wf_tag_to_fourcc( GetWLE( &p_wf->wFormatTag ), &p_sys->fmt.i_codec,
166                       &psz_name );
167     p_sys->fmt.audio.i_channels      = GetWLE ( &p_wf->nChannels );
168     p_sys->fmt.audio.i_rate          = GetDWLE( &p_wf->nSamplesPerSec );
169     p_sys->fmt.audio.i_blockalign    = GetWLE( &p_wf->nBlockAlign );
170     p_sys->fmt.i_bitrate             = GetDWLE( &p_wf->nAvgBytesPerSec ) * 8;
171     p_sys->fmt.audio.i_bitspersample = GetWLE( &p_wf->wBitsPerSample );
172     if( i_size >= sizeof(WAVEFORMATEX) )
173         p_sys->fmt.i_extra = __MIN( GetWLE( &p_wf->cbSize ), i_size - sizeof(WAVEFORMATEX) );
174     i_extended = 0;
175
176     /* Handle new WAVE_FORMAT_EXTENSIBLE wav files */
177     /* see the following link for more information:
178      * http://www.microsoft.com/whdc/device/audio/multichaud.mspx#EFAA */
179     if( GetWLE( &p_wf->wFormatTag ) == WAVE_FORMAT_EXTENSIBLE &&
180         i_size >= sizeof( WAVEFORMATEXTENSIBLE ) &&
181         ( p_sys->fmt.i_extra + sizeof( WAVEFORMATEX )
182             >= sizeof( WAVEFORMATEXTENSIBLE ) ) )
183     {
184         unsigned i_channel_mask;
185         GUID guid_subformat;
186
187         guid_subformat = p_wf_ext->SubFormat;
188         guid_subformat.Data1 = GetDWLE( &p_wf_ext->SubFormat.Data1 );
189         guid_subformat.Data2 = GetWLE( &p_wf_ext->SubFormat.Data2 );
190         guid_subformat.Data3 = GetWLE( &p_wf_ext->SubFormat.Data3 );
191
192         sf_tag_to_fourcc( &guid_subformat, &p_sys->fmt.i_codec, &psz_name );
193
194         i_extended = sizeof( WAVEFORMATEXTENSIBLE ) - sizeof( WAVEFORMATEX );
195         p_sys->fmt.i_extra -= i_extended;
196
197         i_channel_mask = GetDWLE( &p_wf_ext->dwChannelMask );
198         if( i_channel_mask )
199         {
200             int i_match = 0;
201             for( unsigned i = 0; i < sizeof(pi_channels_src)/sizeof(*pi_channels_src); i++ )
202             {
203                 if( i_channel_mask & pi_channels_src[i] )
204                 {
205                     if( !( p_sys->i_channel_mask & pi_channels_in[i] ) )
206                         i_match++;
207
208                     i_channel_mask &= ~pi_channels_src[i];
209                     p_sys->i_channel_mask |= pi_channels_in[i];
210
211                     if( i_match >= p_sys->fmt.audio.i_channels )
212                         break;
213                 }
214             }
215             if( i_channel_mask )
216                 msg_Warn( p_demux, "Some channels are unrecognized or uselessly specified (0x%x)", i_channel_mask );
217             if( i_match < p_sys->fmt.audio.i_channels )
218             {
219                 int i_missing = p_sys->fmt.audio.i_channels - i_match;
220                 msg_Warn( p_demux, "Trying to fill up unspecified position for %d channels", p_sys->fmt.audio.i_channels - i_match );
221
222                 static const uint32_t pi_pair[] = { AOUT_CHAN_REARLEFT|AOUT_CHAN_REARRIGHT,
223                                                     AOUT_CHAN_MIDDLELEFT|AOUT_CHAN_MIDDLERIGHT,
224                                                     AOUT_CHAN_LEFT|AOUT_CHAN_RIGHT };
225                 /* FIXME: Unused yet
226                 static const uint32_t pi_center[] = { AOUT_CHAN_REARCENTER,
227                                                       0,
228                                                       AOUT_CHAN_CENTER }; */
229
230                 /* Try to complete with pair */
231                 for( unsigned i = 0; i < sizeof(pi_pair)/sizeof(*pi_pair); i++ )
232                 {
233                     if( i_missing >= 2 && !(p_sys->i_channel_mask & pi_pair[i] ) )
234                     {
235                         i_missing -= 2;
236                         p_sys->i_channel_mask |= pi_pair[i];
237                     }
238                 }
239                 /* Well fill up with what we can */
240                 for( unsigned i = 0; i < sizeof(pi_channels_in)/sizeof(*pi_channels_in) && i_missing > 0; i++ )
241                 {
242                     if( !( p_sys->i_channel_mask & pi_channels_in[i] ) )
243                     {
244                         p_sys->i_channel_mask |= pi_channels_in[i];
245                         i_missing--;
246
247                         if( i_missing <= 0 )
248                             break;
249                     }
250                 }
251
252                 i_match = p_sys->fmt.audio.i_channels - i_missing;
253             }
254             if( i_match < p_sys->fmt.audio.i_channels )
255             {
256                 msg_Err( p_demux, "Invalid/unsupported channel mask" );
257                 p_sys->i_channel_mask = 0;
258             }
259         }
260     }
261     else if( GetWLE( &p_wf->wFormatTag ) == WAVE_FORMAT_PCM &&
262              p_sys->fmt.audio.i_channels > 2 && p_sys->fmt.audio.i_channels <= 9 )
263     {
264         for( int i = 0; i < p_sys->fmt.audio.i_channels; i++ )
265             p_sys->i_channel_mask |= pi_channels_in[i];
266     }
267
268     if( p_sys->i_channel_mask )
269     {
270         if( p_sys->fmt.i_codec == VLC_FOURCC('a','r','a','w') ||
271             p_sys->fmt.i_codec == VLC_FOURCC('p','c','m',' ') ||
272             p_sys->fmt.i_codec == VLC_FOURCC('a','f','l','t') )
273             p_sys->b_chan_reorder =
274                 aout_CheckChannelReorder( pi_channels_in, NULL,
275                                           p_sys->i_channel_mask,
276                                           p_sys->fmt.audio.i_channels,
277                                           p_sys->pi_chan_table );
278
279         msg_Dbg( p_demux, "channel mask: %x, reordering: %i",
280                  p_sys->i_channel_mask, (int)p_sys->b_chan_reorder );
281     }
282
283     p_sys->fmt.audio.i_physical_channels =
284     p_sys->fmt.audio.i_original_channels = p_sys->i_channel_mask;
285
286     if( p_sys->fmt.i_extra > 0 )
287     {
288         p_sys->fmt.p_extra = malloc( p_sys->fmt.i_extra );
289         if( unlikely(!p_sys->fmt.p_extra) )
290         {
291             p_sys->fmt.i_extra = 0;
292             goto error;
293         }
294         memcpy( p_sys->fmt.p_extra, (uint8_t *)p_wf + sizeof( WAVEFORMATEX ) + i_extended,
295                 p_sys->fmt.i_extra );
296     }
297
298     msg_Dbg( p_demux, "format: 0x%4.4x, fourcc: %4.4s, channels: %d, "
299              "freq: %u Hz, bitrate: %uKo/s, blockalign: %d, bits/samples: %d, "
300              "extra size: %d",
301              GetWLE( &p_wf->wFormatTag ), (char *)&p_sys->fmt.i_codec,
302              p_sys->fmt.audio.i_channels, p_sys->fmt.audio.i_rate,
303              p_sys->fmt.i_bitrate / 8 / 1024, p_sys->fmt.audio.i_blockalign,
304              p_sys->fmt.audio.i_bitspersample, p_sys->fmt.i_extra );
305
306     free( p_wf );
307     p_wf = NULL;
308
309     switch( p_sys->fmt.i_codec )
310     {
311     case VLC_FOURCC( 'a', 'r', 'a', 'w' ):
312     case VLC_FOURCC( 'a', 'f', 'l', 't' ):
313     case VLC_FOURCC( 'u', 'l', 'a', 'w' ):
314     case VLC_CODEC_ALAW:
315     case VLC_CODEC_MULAW:
316     case VLC_FOURCC( 'p', 'c', 'm', ' ' ):
317         if( FrameInfo_PCM( &p_sys->i_frame_size, &p_sys->i_frame_samples,
318                            &p_sys->fmt ) )
319             goto error;
320         break;
321     case VLC_CODEC_ADPCM_MS:
322         if( FrameInfo_MS_ADPCM( &p_sys->i_frame_size, &p_sys->i_frame_samples,
323                                 &p_sys->fmt ) )
324             goto error;
325         break;
326     case VLC_CODEC_ADPCM_IMA_WAV:
327         if( FrameInfo_IMA_ADPCM( &p_sys->i_frame_size, &p_sys->i_frame_samples,
328                                  &p_sys->fmt ) )
329             goto error;
330         break;
331     case VLC_FOURCC( 'm', 's', 0x00, 0x61 ):
332     case VLC_FOURCC( 'm', 's', 0x00, 0x62 ):
333         /* FIXME not sure at all FIXME */
334         if( FrameInfo_MS_ADPCM( &p_sys->i_frame_size, &p_sys->i_frame_samples,
335                                 &p_sys->fmt ) )
336             goto error;
337         break;
338     case VLC_CODEC_MPGA:
339     case VLC_CODEC_A52:
340         /* FIXME set end of area FIXME */
341         goto error;
342     case VLC_CODEC_GSM_MS:
343     case VLC_CODEC_ADPCM_G726:
344     case VLC_CODEC_TRUESPEECH:
345     case VLC_CODEC_ATRAC3:
346         if( FrameInfo_MSGSM( &p_sys->i_frame_size, &p_sys->i_frame_samples,
347                              &p_sys->fmt ) )
348             goto error;
349         break;
350     default:
351         msg_Err( p_demux, "unsupported codec (%4.4s)",
352                  (char*)&p_sys->fmt.i_codec );
353         goto error;
354     }
355
356     if( p_sys->i_frame_size <= 0 || p_sys->i_frame_samples <= 0 )
357     {
358         msg_Dbg( p_demux, "invalid frame size: %i %i", p_sys->i_frame_size,
359                                                        p_sys->i_frame_samples );
360         goto error;
361     }
362     if( p_sys->fmt.audio.i_rate <= 0 )
363     {
364         msg_Dbg( p_demux, "invalid sample rate: %i", p_sys->fmt.audio.i_rate );
365         goto error;
366     }
367
368     msg_Dbg( p_demux, "found %s audio format", psz_name );
369
370     if( ChunkFind( p_demux, "data", &p_sys->i_data_size ) )
371     {
372         msg_Err( p_demux, "cannot find 'data' chunk" );
373         goto error;
374     }
375     if( stream_Read( p_demux->s, NULL, 8 ) != 8 )
376         goto error;
377     p_sys->i_data_pos = stream_Tell( p_demux->s );
378
379     if( p_sys->fmt.i_bitrate <= 0 )
380     {
381         p_sys->fmt.i_bitrate = (int64_t)p_sys->i_frame_size *
382             p_sys->fmt.audio.i_rate * 8 / p_sys->i_frame_samples;
383     }
384
385     p_sys->p_es = es_out_Add( p_demux->out, &p_sys->fmt );
386
387     date_Init( &p_sys->pts, p_sys->fmt.audio.i_rate, 1 );
388     date_Set( &p_sys->pts, 1 );
389
390     return VLC_SUCCESS;
391
392 error:
393     msg_Err( p_demux, "An error occurred during wav demuxing" );
394     free( p_wf );
395     free( p_sys );
396     return VLC_EGENERIC;
397 }
398
399 /*****************************************************************************
400  * Demux: read packet and send them to decoders
401  *****************************************************************************
402  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
403  *****************************************************************************/
404 static int Demux( demux_t *p_demux )
405 {
406     demux_sys_t *p_sys = p_demux->p_sys;
407     block_t     *p_block;
408     const int64_t i_pos = stream_Tell( p_demux->s );
409
410     if( p_sys->i_data_size > 0 &&
411         i_pos >= p_sys->i_data_pos + p_sys->i_data_size )
412     {
413         /* EOF */
414         return 0;
415     }
416
417     if( ( p_block = stream_Block( p_demux->s, p_sys->i_frame_size ) ) == NULL )
418     {
419         msg_Warn( p_demux, "cannot read data" );
420         return 0;
421     }
422
423     p_block->i_dts =
424     p_block->i_pts = VLC_TS_0 + date_Get( &p_sys->pts );
425
426     /* set PCR */
427     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
428
429     /* Do the channel reordering */
430     if( p_sys->b_chan_reorder )
431         aout_ChannelReorder( p_block->p_buffer, p_block->i_buffer,
432                              p_sys->fmt.audio.i_channels,
433                              p_sys->pi_chan_table,
434                              p_sys->fmt.audio.i_bitspersample );
435
436     es_out_Send( p_demux->out, p_sys->p_es, p_block );
437
438     date_Increment( &p_sys->pts, p_sys->i_frame_samples );
439
440     return 1;
441 }
442
443 /*****************************************************************************
444  * Close: frees unused data
445  *****************************************************************************/
446 static void Close ( vlc_object_t * p_this )
447 {
448     demux_t     *p_demux = (demux_t*)p_this;
449     demux_sys_t *p_sys   = p_demux->p_sys;
450
451     free( p_sys );
452 }
453
454 /*****************************************************************************
455  * Control:
456  *****************************************************************************/
457 static int Control( demux_t *p_demux, int i_query, va_list args )
458 {
459     demux_sys_t *p_sys  = p_demux->p_sys;
460     int64_t i_end = -1;
461
462     if( p_sys->i_data_size > 0 )
463         i_end = p_sys->i_data_pos + p_sys->i_data_size;
464
465     return demux_vaControlHelper( p_demux->s, p_sys->i_data_pos, i_end,
466                                    p_sys->fmt.i_bitrate,
467                                    p_sys->fmt.audio.i_blockalign,
468                                    i_query, args );
469 }
470
471 /*****************************************************************************
472  * Local functions
473  *****************************************************************************/
474 static int ChunkFind( demux_t *p_demux, const char *fcc, unsigned int *pi_size )
475 {
476     const uint8_t *p_peek;
477
478     for( ;; )
479     {
480         uint32_t i_size;
481
482         if( stream_Peek( p_demux->s, &p_peek, 8 ) < 8 )
483         {
484             msg_Err( p_demux, "cannot peek" );
485             return VLC_EGENERIC;
486         }
487
488         i_size = GetDWLE( p_peek + 4 );
489
490         msg_Dbg( p_demux, "chunk: fcc=`%4.4s` size=%"PRIu32, p_peek, i_size );
491
492         if( !memcmp( p_peek, fcc, 4 ) )
493         {
494             if( pi_size )
495             {
496                 *pi_size = i_size;
497             }
498             return VLC_SUCCESS;
499         }
500
501         /* Skip chunk */
502         if( stream_Read( p_demux->s, NULL, 8 ) != 8 ||
503             stream_Read( p_demux->s, NULL, i_size ) != (int)i_size ||
504             ( (i_size & 1) && stream_Read( p_demux->s, NULL, 1 ) != 1 ) )
505             return VLC_EGENERIC;
506     }
507 }
508
509 static int FrameInfo_PCM( unsigned int *pi_size, int *pi_samples,
510                           const es_format_t *p_fmt )
511 {
512     int i_bytes;
513
514     /* read samples for 50ms of */
515     *pi_samples = __MAX( p_fmt->audio.i_rate / 20, 1 );
516
517     i_bytes = *pi_samples * p_fmt->audio.i_channels *
518         ( (p_fmt->audio.i_bitspersample + 7) / 8 );
519
520     if( p_fmt->audio.i_blockalign > 0 )
521     {
522         const int i_modulo = i_bytes % p_fmt->audio.i_blockalign;
523         if( i_modulo > 0 )
524             i_bytes += p_fmt->audio.i_blockalign - i_modulo;
525     }
526
527     *pi_size = i_bytes;
528     return VLC_SUCCESS;
529 }
530
531 static int FrameInfo_MS_ADPCM( unsigned int *pi_size, int *pi_samples,
532                                const es_format_t *p_fmt )
533 {
534     if( p_fmt->audio.i_channels <= 0 )
535         return VLC_EGENERIC;
536
537     *pi_samples = 2 + 2 * ( p_fmt->audio.i_blockalign -
538         7 * p_fmt->audio.i_channels ) / p_fmt->audio.i_channels;
539     *pi_size = p_fmt->audio.i_blockalign;
540
541     return VLC_SUCCESS;
542 }
543
544 static int FrameInfo_IMA_ADPCM( unsigned int *pi_size, int *pi_samples,
545                                 const es_format_t *p_fmt )
546 {
547     if( p_fmt->audio.i_channels <= 0 )
548         return VLC_EGENERIC;
549
550     *pi_samples = 2 * ( p_fmt->audio.i_blockalign -
551         4 * p_fmt->audio.i_channels ) / p_fmt->audio.i_channels;
552     *pi_size = p_fmt->audio.i_blockalign;
553
554     return VLC_SUCCESS;
555 }
556
557 static int FrameInfo_MSGSM( unsigned int *pi_size, int *pi_samples,
558                             const es_format_t *p_fmt )
559 {
560     if( p_fmt->i_bitrate <= 0 )
561         return VLC_EGENERIC;
562
563     *pi_samples = ( p_fmt->audio.i_blockalign * p_fmt->audio.i_rate * 8)
564                     / p_fmt->i_bitrate;
565     *pi_size = p_fmt->audio.i_blockalign;
566
567     return VLC_SUCCESS;
568 }
569