]> git.sesse.net Git - vlc/blob - modules/codec/lpcm.c
Add error messages for unsupported rates or number of channels.
[vlc] / modules / codec / lpcm.c
1 /*****************************************************************************
2  * lpcm.c: lpcm decoder/packetizer module
3  *****************************************************************************
4  * Copyright (C) 1999-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *          Henri Fallon <henri@videolan.org>
9  *          Christophe Massiot <massiot@via.ecp.fr>
10  *          Gildas Bazin <gbazin@videolan.org>
11  *          Lauren Aimar <fenrir _AT_ videolan _DOT_ org >
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 /*****************************************************************************
29  * Preamble
30  *****************************************************************************/
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37 #include <vlc_codec.h>
38 #include <vlc_aout.h>
39 #include <assert.h>
40
41 /*****************************************************************************
42  * Module descriptor
43  *****************************************************************************/
44 static int  OpenDecoder   ( vlc_object_t * );
45 static int  OpenPacketizer( vlc_object_t * );
46 static void CloseCommon   ( vlc_object_t * );
47
48 #ifdef ENABLE_SOUT
49 static int  OpenEncoder   ( vlc_object_t * );
50 static void CloseEncoder  ( vlc_object_t * );
51 static block_t *EncodeFrames( encoder_t *, aout_buffer_t * );
52 #endif
53
54 vlc_module_begin ()
55
56     set_category( CAT_INPUT )
57     set_subcategory( SUBCAT_INPUT_ACODEC )
58     set_description( N_("Linear PCM audio decoder") )
59     set_capability( "decoder", 100 )
60     set_callbacks( OpenDecoder, CloseCommon )
61
62     add_submodule ()
63     set_description( N_("Linear PCM audio packetizer") )
64     set_capability( "packetizer", 100 )
65     set_callbacks( OpenPacketizer, CloseCommon )
66
67 #ifdef ENABLE_SOUT
68     add_submodule ()
69     set_description( N_("Linear PCM audio encoder") )
70     set_capability( "encoder", 100 )
71     set_callbacks( OpenEncoder, CloseEncoder )
72     add_shortcut( "lpcm" )
73 #endif
74
75 vlc_module_end ()
76
77
78 /*****************************************************************************
79  * decoder_sys_t : lpcm decoder descriptor
80  *****************************************************************************/
81 struct decoder_sys_t
82 {
83     /* Module mode */
84     bool b_packetizer;
85
86     /*
87      * Output properties
88      */
89     date_t   end_date;
90
91     /* */
92     unsigned i_header_size;
93     int      i_type;
94 };
95
96 #ifdef ENABLE_SOUT
97 struct encoder_sys_t
98 {
99     int     i_channels;
100     int     i_rate;
101
102     int     i_frame_samples;
103     uint8_t *p_buffer;
104     int     i_buffer_used;
105     int     i_frame_num;
106 };
107 #endif
108
109 /*
110  * LPCM DVD header :
111  * - frame number (8 bits)
112  * - unknown (16 bits) == 0x0003 ?
113  * - unknown (4 bits)
114  * - current frame (4 bits)
115  * - unknown (2 bits)
116  * - frequency (2 bits) 0 == 48 kHz, 1 == 32 kHz, 2 == ?, 3 == ?
117  * - unknown (1 bit)
118  * - number of channels - 1 (3 bits) 1 == 2 channels
119  * - start code (8 bits) == 0x80
120  *
121  * LPCM DVD-A header (http://dvd-audio.sourceforge.net/spec/aob.shtml)
122  * - continuity counter (8 bits, clipped to 0x00-0x1f)
123  * - header size (16 bits)
124  * - byte pointer to start of first audio frame.
125  * - unknown (8bits, 0x10 for stereo, 0x00 for surround)
126  * - sample size (4+4 bits)
127  * - samplerate (4+4 bits)
128  * - unknown (8 bits)
129  * - group assignment (8 bits)
130  * - unknown (8 bits)
131  * - padding(variable)
132  *
133  * LPCM BD header :
134  * - unkown (16 bits)
135  * - number of channels (4 bits)
136  * - frequency (4 bits)
137  * - bits per sample (2 bits)
138  * - unknown (6 bits)
139  */
140
141 #define LPCM_VOB_HEADER_LEN (6)
142 #define LPCM_AOB_HEADER_LEN (11)
143 #define LPCM_BD_HEADER_LEN (4)
144
145 enum
146 {
147     LPCM_VOB,
148     LPCM_AOB,
149     LPCM_BD,
150 };
151
152 typedef struct
153 {
154     unsigned i_channels;
155     bool     b_used;
156     unsigned pi_position[6];
157 } aob_group_t;
158
159 /*****************************************************************************
160  * Local prototypes
161  *****************************************************************************/
162 static void *DecodeFrame  ( decoder_t *, block_t ** );
163
164 /* */
165 static int VobHeader( unsigned *pi_rate,
166                       unsigned *pi_channels, unsigned *pi_original_channels,
167                       unsigned *pi_bits,
168                       const uint8_t *p_header );
169 static void VobExtract( aout_buffer_t *, block_t *, unsigned i_bits );
170 /* */
171 static int AobHeader( unsigned *pi_rate,
172                       unsigned *pi_channels, unsigned *pi_layout,
173                       unsigned *pi_bits,
174                       unsigned *pi_padding,
175                       aob_group_t g[2],
176                       const uint8_t *p_header );
177 static void AobExtract( aout_buffer_t *, block_t *, unsigned i_bits, aob_group_t p_group[2] );
178 /* */
179 static int BdHeader( unsigned *pi_rate,
180                      unsigned *pi_channels, unsigned *pi_original_channels,
181                      unsigned *pi_bits,
182                      const uint8_t *p_header );
183 static void BdExtract( aout_buffer_t *, block_t * );
184
185
186 /*****************************************************************************
187  * OpenCommon:
188  *****************************************************************************/
189 static int OpenCommon( vlc_object_t *p_this, bool b_packetizer )
190 {
191     decoder_t *p_dec = (decoder_t*)p_this;
192     decoder_sys_t *p_sys;
193     int i_type;
194     int i_header_size;
195
196     switch( p_dec->fmt_in.i_codec )
197     {
198     /* DVD LPCM */
199     case VLC_CODEC_DVD_LPCM:
200         i_type = LPCM_VOB;
201         i_header_size = LPCM_VOB_HEADER_LEN;
202         break;
203     /* DVD-Audio LPCM */
204     case VLC_CODEC_DVDA_LPCM:
205         i_type = LPCM_AOB;
206         i_header_size = LPCM_AOB_HEADER_LEN;
207         break;
208     /* BD LPCM */
209     case VLC_CODEC_BD_LPCM:
210         i_type = LPCM_BD;
211         i_header_size = LPCM_BD_HEADER_LEN;
212         break;
213     default:
214         return VLC_EGENERIC;
215     }
216
217     /* Allocate the memory needed to store the decoder's structure */
218     if( ( p_dec->p_sys = p_sys = malloc(sizeof(decoder_sys_t)) ) == NULL )
219         return VLC_ENOMEM;
220
221     /* Misc init */
222     p_sys->b_packetizer = b_packetizer;
223     date_Set( &p_sys->end_date, 0 );
224     p_sys->i_type = i_type;
225     p_sys->i_header_size = i_header_size;
226
227     /* Set output properties */
228     p_dec->fmt_out.i_cat = AUDIO_ES;
229
230     if( b_packetizer )
231     {
232         switch( i_type )
233         {
234         case LPCM_VOB:
235             p_dec->fmt_out.i_codec = VLC_CODEC_DVD_LPCM;
236             break;
237         case LPCM_AOB:
238             p_dec->fmt_out.i_codec = VLC_CODEC_DVDA_LPCM;
239             break;
240         default:
241             assert(0);
242         case LPCM_BD:
243             p_dec->fmt_out.i_codec = VLC_CODEC_BD_LPCM;
244             break;
245         }
246     }
247     else
248     {
249         switch( p_dec->fmt_out.audio.i_bitspersample )
250         {
251         case 24:
252         case 20:
253             p_dec->fmt_out.i_codec = VLC_CODEC_S24B;
254             p_dec->fmt_out.audio.i_bitspersample = 24;
255             break;
256         default:
257             p_dec->fmt_out.i_codec = VLC_CODEC_S16B;
258             p_dec->fmt_out.audio.i_bitspersample = 16;
259             break;
260         }
261     }
262
263     /* Set callback */
264     p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
265         DecodeFrame;
266     p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
267         DecodeFrame;
268
269     return VLC_SUCCESS;
270 }
271 static int OpenDecoder( vlc_object_t *p_this )
272 {
273     return OpenCommon( p_this, false );
274 }
275 static int OpenPacketizer( vlc_object_t *p_this )
276 {
277     return OpenCommon( p_this, true );
278 }
279
280 /*****************************************************************************
281  * DecodeFrame: decodes an lpcm frame.
282  ****************************************************************************
283  * Beware, this function must be fed with complete frames (PES packet).
284  *****************************************************************************/
285 static void *DecodeFrame( decoder_t *p_dec, block_t **pp_block )
286 {
287     decoder_sys_t *p_sys = p_dec->p_sys;
288     block_t       *p_block;
289     unsigned int  i_rate = 0, i_original_channels = 0, i_channels = 0, i_bits = 0;
290     int           i_frame_length;
291
292     if( !pp_block || !*pp_block ) return NULL;
293
294     p_block = *pp_block;
295     *pp_block = NULL; /* So the packet doesn't get re-sent */
296
297     /* Date management */
298     if( p_block->i_pts > VLC_TS_INVALID &&
299         p_block->i_pts != date_Get( &p_sys->end_date ) )
300     {
301         date_Set( &p_sys->end_date, p_block->i_pts );
302     }
303
304     if( !date_Get( &p_sys->end_date ) )
305     {
306         /* We've just started the stream, wait for the first PTS. */
307         block_Release( p_block );
308         return NULL;
309     }
310
311     if( p_block->i_buffer <= p_sys->i_header_size )
312     {
313         msg_Err(p_dec, "frame is too short");
314         block_Release( p_block );
315         return NULL;
316     }
317
318     int i_ret;
319     unsigned i_padding = 0;
320     aob_group_t p_aob_group[2];
321     switch( p_sys->i_type )
322     {
323     case LPCM_VOB:
324         i_ret = VobHeader( &i_rate, &i_channels, &i_original_channels, &i_bits,
325                            p_block->p_buffer );
326         break;
327     case LPCM_AOB:
328         i_ret = AobHeader( &i_rate, &i_channels, &i_original_channels, &i_bits, &i_padding,
329                            p_aob_group,
330                            p_block->p_buffer );
331         break;
332     case LPCM_BD:
333         i_ret = BdHeader( &i_rate, &i_channels, &i_original_channels, &i_bits,
334                           p_block->p_buffer );
335         break;
336     default:
337         abort();
338     }
339
340     if( i_ret || p_block->i_buffer <= p_sys->i_header_size + i_padding )
341     {
342         msg_Warn( p_dec, "no frame sync or too small frame" );
343         block_Release( p_block );
344         return NULL;
345     }
346
347     /* Set output properties */
348     if( p_dec->fmt_out.audio.i_rate != i_rate )
349     {
350         date_Init( &p_sys->end_date, i_rate, 1 );
351         date_Set( &p_sys->end_date, p_block->i_pts );
352     }
353     p_dec->fmt_out.audio.i_rate = i_rate;
354     p_dec->fmt_out.audio.i_channels = i_channels;
355     p_dec->fmt_out.audio.i_original_channels = i_original_channels;
356     p_dec->fmt_out.audio.i_physical_channels = i_original_channels & AOUT_CHAN_PHYSMASK;
357
358     i_frame_length = (p_block->i_buffer - p_sys->i_header_size - i_padding) / i_channels * 8 / i_bits;
359
360     if( p_sys->b_packetizer )
361     {
362         p_block->i_pts = p_block->i_dts = date_Get( &p_sys->end_date );
363         p_block->i_length =
364             date_Increment( &p_sys->end_date, i_frame_length ) -
365             p_block->i_pts;
366
367         /* Just pass on the incoming frame */
368         return p_block;
369     }
370     else
371     {
372         /* */
373         if( i_bits == 16 )
374         {
375             p_dec->fmt_out.i_codec = VLC_CODEC_S16B;
376             p_dec->fmt_out.audio.i_bitspersample = 16;
377         }
378         else
379         {
380             p_dec->fmt_out.i_codec = VLC_CODEC_S24B;
381             p_dec->fmt_out.audio.i_bitspersample = 24;
382         }
383
384         /* */
385         aout_buffer_t *p_aout_buffer;
386         p_aout_buffer = decoder_NewAudioBuffer( p_dec, i_frame_length );
387         if( !p_aout_buffer )
388             return NULL;
389
390         p_aout_buffer->i_pts = date_Get( &p_sys->end_date );
391         p_aout_buffer->i_length =
392             date_Increment( &p_sys->end_date, i_frame_length )
393             - p_aout_buffer->i_pts;
394
395         p_block->p_buffer += p_sys->i_header_size + i_padding;
396         p_block->i_buffer -= p_sys->i_header_size + i_padding;
397
398         switch( p_sys->i_type )
399         {
400         case LPCM_VOB:
401             VobExtract( p_aout_buffer, p_block, i_bits );
402             break;
403         case LPCM_AOB:
404             AobExtract( p_aout_buffer, p_block, i_bits, p_aob_group );
405             break;
406         default:
407             assert(0);
408         case LPCM_BD:
409             BdExtract( p_aout_buffer, p_block );
410             break;
411         }
412
413         block_Release( p_block );
414         return p_aout_buffer;
415     }
416 }
417
418 /*****************************************************************************
419  * CloseCommon : lpcm decoder destruction
420  *****************************************************************************/
421 static void CloseCommon( vlc_object_t *p_this )
422 {
423     decoder_t *p_dec = (decoder_t*)p_this;
424     free( p_dec->p_sys );
425 }
426
427 #ifdef ENABLE_SOUT
428 /*****************************************************************************
429  * OpenEncoder: lpcm encoder construction
430  *****************************************************************************/
431 static int OpenEncoder( vlc_object_t *p_this )
432 {
433     encoder_t *p_enc = (encoder_t *)p_this;
434     encoder_sys_t *p_sys;
435
436     /* We only support DVD LPCM yet. */
437     if( p_enc->fmt_out.i_codec != VLC_CODEC_DVD_LPCM )
438         return VLC_EGENERIC;
439
440     if( p_enc->fmt_in.audio.i_rate != 48000 &&
441         p_enc->fmt_in.audio.i_rate != 96000 &&
442         p_enc->fmt_in.audio.i_rate != 44100 &&
443         p_enc->fmt_in.audio.i_rate != 32000 )
444     {
445         msg_Err( p_enc, "DVD LPCM supports only sample rates of 48, 96, 44.1 or 32 kHz" );
446         return VLC_EGENERIC;
447     }
448
449     if( p_enc->fmt_in.audio.i_channels > 8 )
450     {
451         msg_Err( p_enc, "DVD LPCM supports a maximum of eight channels" );
452         return VLC_EGENERIC;
453     }
454
455     /* Allocate the memory needed to store the encoder's structure */
456     if( ( p_enc->p_sys = p_sys =
457           (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
458         return VLC_ENOMEM;
459     
460     /* In DVD LCPM, a frame is always 150 PTS ticks. */
461     p_sys->i_frame_samples = p_enc->fmt_in.audio.i_rate * 150 / 90000;
462     p_sys->p_buffer = (uint8_t *)malloc(
463         p_sys->i_frame_samples *
464         p_enc->fmt_in.audio.i_channels *
465         p_enc->fmt_in.audio.i_bitspersample);
466     p_sys->i_buffer_used = 0;
467     p_sys->i_frame_num = 0;
468
469     p_sys->i_channels = p_enc->fmt_in.audio.i_channels;
470     p_sys->i_rate = p_enc->fmt_in.audio.i_rate;
471     
472     p_enc->pf_encode_audio = EncodeFrames;
473     p_enc->fmt_in.i_codec = p_enc->fmt_out.i_codec;
474
475     p_enc->fmt_in.audio.i_bitspersample = 16;
476     p_enc->fmt_in.i_codec = VLC_CODEC_S16B;
477
478     p_enc->fmt_out.i_bitrate =
479         p_enc->fmt_in.audio.i_channels *
480         p_enc->fmt_in.audio.i_rate *
481         p_enc->fmt_in.audio.i_bitspersample *
482         (p_sys->i_frame_samples + LPCM_VOB_HEADER_LEN) /
483         p_sys->i_frame_samples;
484     
485     return VLC_SUCCESS;
486 }
487
488 /*****************************************************************************
489  * CloseEncoder: lpcm encoder destruction
490  *****************************************************************************/
491 static void CloseEncoder ( vlc_object_t *p_this )
492 {
493     VLC_UNUSED(p_this);
494 }
495
496 /*****************************************************************************
497  * EncodeFrames: encode zero or more LCPM audio packets
498  *****************************************************************************/
499 static block_t *EncodeFrames( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
500 {
501     encoder_sys_t *p_sys = p_enc->p_sys;
502     block_t *p_first_block = NULL, *p_last_block = NULL;
503
504     if( !p_aout_buf || !p_aout_buf->i_buffer ) return NULL;
505
506     const int i_num_frames = ( p_sys->i_buffer_used + p_aout_buf->i_nb_samples ) /
507         p_sys->i_frame_samples;
508     const int i_leftover_samples = ( p_sys->i_buffer_used + p_aout_buf->i_nb_samples ) %
509         p_sys->i_frame_samples;
510     const int i_frame_size = p_sys->i_frame_samples * p_sys->i_channels * 2 + LPCM_VOB_HEADER_LEN;
511     const int i_start_offset = -p_sys->i_buffer_used;
512
513     uint8_t i_freq_code = 0;
514
515     switch( p_sys->i_rate ) {
516     case 48000:
517         i_freq_code = 0;
518         break;
519     case 96000:
520         i_freq_code = 1;
521         break;
522     case 44100:
523         i_freq_code = 2;
524         break;
525     case 32000:
526         i_freq_code = 3;
527         break;
528     }
529
530     int i_bytes_consumed = 0;
531
532     for ( int i = 0; i < i_num_frames; ++i )
533     {
534         block_t *p_block = block_New( p_enc, i_frame_size );
535         if( !p_block )
536             return NULL;
537
538         uint8_t *frame = (uint8_t *)p_block->p_buffer;
539         frame[0] = 1;  /* one frame in packet */
540         frame[1] = 0;
541         frame[2] = 0;  /* no first access unit */
542         frame[3] = (p_sys->i_frame_num + i) & 0x1f;  /* no emphasis, no mute */
543         frame[4] = (i_freq_code << 4) | (p_sys->i_channels - 1);
544         frame[5] = 0x80;  /* neutral dynamic range */
545
546         const int i_consume_samples = p_sys->i_frame_samples - p_sys->i_buffer_used;
547         const int i_kept_bytes = p_sys->i_buffer_used * p_sys->i_channels * 2;
548         const int i_consume_bytes = i_consume_samples * p_sys->i_channels * 2;
549
550         memcpy( frame + 6, p_sys->p_buffer, i_kept_bytes );
551         memcpy( frame + 6 + i_kept_bytes, p_aout_buf->p_buffer + i_bytes_consumed, i_consume_bytes );
552      
553         p_sys->i_frame_num++;
554         p_sys->i_buffer_used = 0;
555         i_bytes_consumed += i_consume_bytes;
556
557         p_block->i_dts = p_block->i_pts = p_aout_buf->i_pts +
558             (i * p_sys->i_frame_samples + i_start_offset) * CLOCK_FREQ / p_sys->i_rate;
559         p_block->i_length = p_sys->i_frame_samples * CLOCK_FREQ / p_sys->i_rate;
560     
561         if( !p_first_block )
562             p_first_block = p_last_block = p_block;
563         else
564             p_last_block = p_last_block->p_next = p_block;
565     }
566
567     memcpy( p_sys->p_buffer,
568             p_aout_buf->p_buffer + i_bytes_consumed,
569             i_leftover_samples * p_sys->i_channels * 2 );
570     p_sys->i_buffer_used = i_leftover_samples;
571
572     return p_first_block;
573 }
574 #endif
575
576 /*****************************************************************************
577  *
578  *****************************************************************************/
579 static int VobHeader( unsigned *pi_rate,
580                       unsigned *pi_channels, unsigned *pi_original_channels,
581                       unsigned *pi_bits,
582                       const uint8_t *p_header )
583 {
584     const uint8_t i_header = p_header[4];
585
586     switch( (i_header >> 4) & 0x3 )
587     {
588     case 0:
589         *pi_rate = 48000;
590         break;
591     case 1:
592         *pi_rate = 96000;
593         break;
594     case 2:
595         *pi_rate = 44100;
596         break;
597     case 3:
598         *pi_rate = 32000;
599         break;
600     }
601
602     *pi_channels = (i_header & 0x7) + 1;
603     switch( *pi_channels - 1 )
604     {
605     case 0:
606         *pi_original_channels = AOUT_CHAN_CENTER;
607         break;
608     case 1:
609         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
610         break;
611     case 2:
612         /* This is unsure. */
613         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_LFE;
614         break;
615     case 3:
616         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
617                                | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
618         break;
619     case 4:
620         /* This is unsure. */
621         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
622                                | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
623                                | AOUT_CHAN_LFE;
624         break;
625     case 5:
626         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
627                                | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
628                                | AOUT_CHAN_CENTER | AOUT_CHAN_LFE;
629         break;
630     case 6:
631         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
632                                | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
633                                | AOUT_CHAN_CENTER | AOUT_CHAN_MIDDLELEFT
634                                | AOUT_CHAN_MIDDLERIGHT;
635         break;
636     case 7:
637         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
638                                | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
639                                | AOUT_CHAN_CENTER | AOUT_CHAN_MIDDLELEFT
640                                | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE;
641         break;
642     }
643
644     switch( (i_header >> 6) & 0x3 )
645     {
646     case 2:
647         *pi_bits = 24;
648         break;
649     case 1:
650         *pi_bits = 20;
651         break;
652     case 0:
653     default:
654         *pi_bits = 16;
655         break;
656     }
657
658     /* Check frame sync and drop it. */
659     if( p_header[5] != 0x80 )
660         return -1;
661     return 0;
662 }
663
664 static const unsigned p_aob_group1[21][6] = {
665     { AOUT_CHAN_CENTER, 0 },
666     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
667     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
668     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
669     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
670     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
671     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
672     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
673     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
674     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
675     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
676     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
677     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, 0 },
678     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, AOUT_CHAN_CENTER,   0 },
679     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, AOUT_CHAN_CENTER,   0 },
680     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, AOUT_CHAN_CENTER,   0 },
681     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, AOUT_CHAN_CENTER,   0 },
682     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, AOUT_CHAN_CENTER,   0 },
683     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, 0  },
684     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, 0  },
685     { AOUT_CHAN_LEFT,   AOUT_CHAN_RIGHT, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, 0  },
686 };
687 static const unsigned p_aob_group2[21][6] = {
688     { 0 },
689     { 0 },
690     { AOUT_CHAN_REARCENTER, 0 },
691     { AOUT_CHAN_REARLEFT,   AOUT_CHAN_REARRIGHT,    0 },
692     { AOUT_CHAN_LFE,        0 },
693     { AOUT_CHAN_LFE,        AOUT_CHAN_REARCENTER,   0 },
694     { AOUT_CHAN_LFE,        AOUT_CHAN_REARLEFT,     AOUT_CHAN_REARRIGHT,    0 },
695     { AOUT_CHAN_CENTER,     0 },
696     { AOUT_CHAN_CENTER,     AOUT_CHAN_REARCENTER, 0 },
697     { AOUT_CHAN_CENTER,     AOUT_CHAN_REARLEFT,   AOUT_CHAN_REARRIGHT,    0 },
698     { AOUT_CHAN_CENTER,     AOUT_CHAN_LFE,        0 },
699     { AOUT_CHAN_CENTER,     AOUT_CHAN_LFE,        AOUT_CHAN_REARCENTER,   0 },
700     { AOUT_CHAN_CENTER,     AOUT_CHAN_LFE,        AOUT_CHAN_REARLEFT,     AOUT_CHAN_REARRIGHT,    0 },
701     { AOUT_CHAN_REARCENTER, 0 },
702     { AOUT_CHAN_REARLEFT,   AOUT_CHAN_REARRIGHT,    0 },
703     { AOUT_CHAN_LFE,        0 },
704     { AOUT_CHAN_LFE,        AOUT_CHAN_REARCENTER,   0 },
705     { AOUT_CHAN_LFE,        AOUT_CHAN_REARLEFT,     AOUT_CHAN_REARRIGHT,    0 },
706     { AOUT_CHAN_LFE,        0 },
707     { AOUT_CHAN_CENTER,     0 },
708     { AOUT_CHAN_CENTER,     AOUT_CHAN_LFE,          0 },
709 };
710
711 static int AobHeader( unsigned *pi_rate,
712                       unsigned *pi_channels, unsigned *pi_layout,
713                       unsigned *pi_bits,
714                       unsigned *pi_padding,
715                       aob_group_t g[2],
716                       const uint8_t *p_header )
717 {
718     const unsigned i_header_size = GetWBE( &p_header[1] );
719     if( i_header_size + 3 < LPCM_AOB_HEADER_LEN )
720         return VLC_EGENERIC;
721
722     *pi_padding = 3+i_header_size - LPCM_AOB_HEADER_LEN;
723
724     const int i_index_size_g1 = (p_header[6] >> 4) & 0x0f;
725     const int i_index_size_g2 = (p_header[6]     ) & 0x0f;
726     const int i_index_rate_g1 = (p_header[7] >> 4) & 0x0f;
727     const int i_index_rate_g2 = (p_header[7]     ) & 0x0f;
728     const int i_assignment     = p_header[9];
729
730     /* Validate */
731     if( i_index_size_g1 > 0x02 ||
732         ( i_index_size_g2 != 0x0f && i_index_size_g2 > 0x02 ) )
733         return VLC_EGENERIC;
734     if( (i_index_rate_g1 & 0x07) > 0x02 ||
735         ( i_index_rate_g2 != 0x0f && (i_index_rate_g1 & 0x07) > 0x02 ) )
736         return VLC_EGENERIC;
737     if( i_assignment > 20 )
738         return VLC_EGENERIC;
739
740     /* */
741     *pi_bits = 16 + 4 * i_index_size_g1;
742     if( i_index_rate_g1 & 0x08 )
743         *pi_rate = 44100 << (i_index_rate_g1 & 0x07);
744     else
745         *pi_rate = 48000 << (i_index_rate_g1 & 0x07);
746
747
748     /* Group1 */
749     unsigned i_channels1 = 0;
750     unsigned i_layout1 = 0;
751     for( int i = 0; p_aob_group1[i_assignment][i] != 0; i++ )
752     {
753         i_channels1++;
754         i_layout1 |= p_aob_group1[i_assignment][i];
755     }
756     /* Group2 */
757     unsigned i_channels2 = 0;
758     unsigned i_layout2 = 0;
759     if( i_index_size_g2 != 0x0f && i_index_rate_g2 != 0x0f )
760     {
761         for( int i = 0; p_aob_group2[i_assignment][i] != 0; i++ )
762         {
763             i_channels2++;
764             i_layout2 |= p_aob_group2[i_assignment][i];
765         }
766         assert( (i_layout1 & i_layout2) == 0 );
767     }
768     /* It is enabled only when presents and compatible wih group1 */
769     const bool b_group2_used = i_index_size_g1 == i_index_size_g2 &&
770                                i_index_rate_g1 == i_index_rate_g2;
771
772     /* */
773     *pi_channels = i_channels1 + ( b_group2_used ? i_channels2 : 0 );
774     *pi_layout   = i_layout1   | ( b_group2_used ? i_layout2   : 0 );
775
776     /* */
777     for( unsigned i = 0; i < 2; i++ )
778     {
779         const unsigned *p_aob = i == 0 ? p_aob_group1[i_assignment] :
780                                          p_aob_group2[i_assignment];
781         g[i].i_channels = i == 0 ? i_channels1 :
782                                    i_channels2;
783
784         g[i].b_used = i == 0 || b_group2_used;
785         if( !g[i].b_used )
786             continue;
787         for( unsigned j = 0; j < g[i].i_channels; j++ )
788         {
789             g[i].pi_position[j] = 0;
790             for( int k = 0; pi_vlc_chan_order_wg4[k] != 0; k++ )
791             {
792                 const unsigned i_channel = pi_vlc_chan_order_wg4[k];
793                 if( i_channel == p_aob[j] )
794                     break;
795                 if( (*pi_layout) & i_channel )
796                     g[i].pi_position[j]++;
797             }
798         }
799     }
800     return VLC_SUCCESS;
801 }
802
803 static int BdHeader( unsigned *pi_rate,
804                      unsigned *pi_channels, unsigned *pi_original_channels,
805                      unsigned *pi_bits,
806                      const uint8_t *p_header )
807 {
808     const uint32_t h = GetDWBE( p_header );
809     switch( ( h & 0xf000) >> 12 )
810     {
811     case 1:
812         *pi_channels = 1;
813         *pi_original_channels = AOUT_CHAN_CENTER;
814         break;
815     case 3:
816         *pi_channels = 2;
817         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
818         break;
819     case 4:
820         *pi_channels = 3;
821         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER;
822         break;
823     case 5:
824         *pi_channels = 3;
825         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER;
826         break;
827     case 6:
828         *pi_channels = 4;
829         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER |
830                                 AOUT_CHAN_REARCENTER;
831         break;
832     case 7:
833         *pi_channels = 4;
834         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT |
835                                 AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
836         break;
837     case 8:
838         *pi_channels = 5;
839         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER |
840                                 AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
841         break;
842     case 9:
843         *pi_channels = 6;
844         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER |
845                                 AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT |
846                                 AOUT_CHAN_LFE;
847         break;
848     case 10:
849         *pi_channels = 7;
850         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER |
851                                 AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT |
852                                 AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT;
853         break;
854     case 11:
855         *pi_channels = 8;
856         *pi_original_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER |
857                                 AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT |
858                                 AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT |
859                                 AOUT_CHAN_LFE;
860         break;
861
862     default:
863         return -1;
864     }
865     switch( (h >> 6) & 0x03 )
866     {
867     case 1:
868         *pi_bits = 16;
869         break;
870     case 2: /* 20 bits but samples are stored on 24 bits */
871     case 3: /* 24 bits */
872         *pi_bits = 24;
873         break;
874     default:
875         return -1;
876     }
877     switch( (h >> 8) & 0x0f ) 
878     {
879     case 1:
880         *pi_rate = 48000;
881         break;
882     case 4:
883         *pi_rate = 96000;
884         break;
885     case 5:
886         *pi_rate = 192000;
887         break;
888     default:
889         return -1;
890     }
891     return 0;
892 }
893
894 static void VobExtract( aout_buffer_t *p_aout_buffer, block_t *p_block,
895                         unsigned i_bits )
896 {
897     uint8_t *p_out = p_aout_buffer->p_buffer;
898
899     /* 20/24 bits LPCM use special packing */
900     if( i_bits == 24 )
901     {
902         while( p_block->i_buffer / 12 )
903         {
904             /* Sample 1 */
905             p_out[0] = p_block->p_buffer[0];
906             p_out[1] = p_block->p_buffer[1];
907             p_out[2] = p_block->p_buffer[8];
908             /* Sample 2 */
909             p_out[3] = p_block->p_buffer[2];
910             p_out[4] = p_block->p_buffer[3];
911             p_out[5] = p_block->p_buffer[9];
912             /* Sample 3 */
913             p_out[6] = p_block->p_buffer[4];
914             p_out[7] = p_block->p_buffer[5];
915             p_out[8] = p_block->p_buffer[10];
916             /* Sample 4 */
917             p_out[9] = p_block->p_buffer[6];
918             p_out[10] = p_block->p_buffer[7];
919             p_out[11] = p_block->p_buffer[11];
920
921             p_block->i_buffer -= 12;
922             p_block->p_buffer += 12;
923             p_out += 12;
924         }
925     }
926     else if( i_bits == 20 )
927     {
928         while( p_block->i_buffer / 10 )
929         {
930             /* Sample 1 */
931             p_out[0] = p_block->p_buffer[0];
932             p_out[1] = p_block->p_buffer[1];
933             p_out[2] = p_block->p_buffer[8] & 0xF0;
934             /* Sample 2 */
935             p_out[3] = p_block->p_buffer[2];
936             p_out[4] = p_block->p_buffer[3];
937             p_out[5] = p_block->p_buffer[8] << 4;
938             /* Sample 3 */
939             p_out[6] = p_block->p_buffer[4];
940             p_out[7] = p_block->p_buffer[5];
941             p_out[8] = p_block->p_buffer[9] & 0xF0;
942             /* Sample 4 */
943             p_out[9] = p_block->p_buffer[6];
944             p_out[10] = p_block->p_buffer[7];
945             p_out[11] = p_block->p_buffer[9] << 4;
946
947             p_block->i_buffer -= 10;
948             p_block->p_buffer += 10;
949             p_out += 12;
950         }
951     }
952     else
953     {
954         assert( i_bits == 16 );
955         memcpy( p_out, p_block->p_buffer, p_block->i_buffer );
956     }
957 }
958 static void AobExtract( aout_buffer_t *p_aout_buffer,
959                         block_t *p_block, unsigned i_bits, aob_group_t p_group[2] )
960 {
961     const unsigned i_channels = p_group[0].i_channels +
962                                 ( p_group[1].b_used ? p_group[1].i_channels : 0 );
963     uint8_t *p_out = p_aout_buffer->p_buffer;
964
965     while( p_block->i_buffer > 0 )
966     {
967         for( int i = 0; i < 2; i++ )
968         {
969             const aob_group_t *g = &p_group[1-i];
970             const unsigned int i_group_size = 2 * g->i_channels * i_bits / 8;
971
972             if( p_block->i_buffer < i_group_size )
973             {
974                 p_block->i_buffer = 0;
975                 break;
976             }
977             for( unsigned n = 0; n < 2; n++ )
978             {
979                 for( unsigned j = 0; j < g->i_channels && g->b_used; j++ )
980                 {
981                     const int i_src = n * g->i_channels + j;
982                     const int i_dst = n * i_channels + g->pi_position[j];
983
984                     if( i_bits == 24 )
985                     {
986                         p_out[3*i_dst+0] = p_block->p_buffer[2*i_src+0];
987                         p_out[3*i_dst+1] = p_block->p_buffer[2*i_src+1];
988                         p_out[3*i_dst+2] = p_block->p_buffer[4*g->i_channels+i_src];
989                     }
990                     else if( i_bits == 20 )
991                     {
992                         p_out[3*i_dst+0] = p_block->p_buffer[2*i_src+0];
993                         p_out[3*i_dst+1] = p_block->p_buffer[2*i_src+1];
994                         if( n == 0 )
995                             p_out[3*i_dst+2] = (p_block->p_buffer[4*g->i_channels+i_src]     ) & 0xf0;
996                         else
997                             p_out[3*i_dst+2] = (p_block->p_buffer[4*g->i_channels+i_src] << 4) & 0xf0;
998                     }
999                     else
1000                     {
1001                         assert( i_bits == 16 );
1002                         p_out[2*i_dst+0] = p_block->p_buffer[2*i_src+0];
1003                         p_out[2*i_dst+1] = p_block->p_buffer[2*i_src+1];
1004                     }
1005                 }
1006             }
1007
1008             p_block->i_buffer -= i_group_size;
1009             p_block->p_buffer += i_group_size;
1010         }
1011         /* */
1012         p_out += (i_bits == 16 ? 2 : 3) * i_channels * 2;
1013
1014     }
1015 }
1016 static void BdExtract( aout_buffer_t *p_aout_buffer, block_t *p_block )
1017 {
1018     memcpy( p_aout_buffer->p_buffer, p_block->p_buffer, p_block->i_buffer );
1019 }
1020