]> git.sesse.net Git - vlc/blob - modules/codec/faad.c
* include/vlc_es.h: added b_packetized field to es_format_t to tell a decoder if...
[vlc] / modules / codec / faad.c
1 /*****************************************************************************
2  * decoder.c: AAC decoder using libfaad2
3  *****************************************************************************
4  * Copyright (C) 2001, 2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@netcourrier.com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 #include <vlc/vlc.h>
26 #include <vlc/aout.h>
27 #include <vlc/decoder.h>
28
29 #include <faad.h>
30
31 /*****************************************************************************
32  * Module descriptor
33  *****************************************************************************/
34 static int  Open( vlc_object_t * );
35 static void Close( vlc_object_t * );
36
37 vlc_module_begin();
38     set_description( _("AAC audio decoder (using libfaad2)") );
39     set_capability( "decoder", 100 );
40     set_callbacks( Open, Close );
41 vlc_module_end();
42
43 /****************************************************************************
44  * Local prototypes
45  ****************************************************************************/
46 static aout_buffer_t *DecodeBlock( decoder_t *, block_t ** );
47 static void DoReordering( decoder_t *, uint32_t *, uint32_t *, int, int,
48                           uint32_t * );
49
50 #define MAX_CHANNEL_POSITIONS 9
51
52 struct decoder_sys_t
53 {
54     /* faad handler */
55     faacDecHandle *hfaad;
56
57     /* samples */
58     audio_date_t date;
59
60     /* temporary buffer */
61     uint8_t *p_buffer;
62     int     i_buffer;
63     int     i_buffer_size;
64
65     /* Channel positions of the current stream (for re-ordering) */
66     uint32_t pi_channel_positions[MAX_CHANNEL_POSITIONS];
67 };
68
69 static const uint32_t pi_channels_in[MAX_CHANNEL_POSITIONS] =
70     { FRONT_CHANNEL_CENTER, FRONT_CHANNEL_LEFT, FRONT_CHANNEL_RIGHT,
71       SIDE_CHANNEL_LEFT, SIDE_CHANNEL_RIGHT,
72       BACK_CHANNEL_LEFT, BACK_CHANNEL_RIGHT,
73       BACK_CHANNEL_CENTER, LFE_CHANNEL };
74 static const uint32_t pi_channels_out[MAX_CHANNEL_POSITIONS] =
75     { AOUT_CHAN_CENTER, AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
76       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
77       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
78       AOUT_CHAN_REARCENTER, AOUT_CHAN_LFE };
79 static const uint32_t pi_channels_ordered[MAX_CHANNEL_POSITIONS] =
80     { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
81       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
82       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
83       AOUT_CHAN_CENTER, AOUT_CHAN_REARCENTER, AOUT_CHAN_LFE
84     };
85
86 /*****************************************************************************
87  * OpenDecoder: probe the decoder and return score
88  *****************************************************************************/
89 static int Open( vlc_object_t *p_this )
90 {
91     decoder_t *p_dec = (decoder_t*)p_this;
92     decoder_sys_t *p_sys = p_dec->p_sys;
93     faacDecConfiguration *cfg;
94
95     if( p_dec->fmt_in.i_codec != VLC_FOURCC('m','p','4','a') )
96     {
97         return VLC_EGENERIC;
98     }
99
100     /* Allocate the memory needed to store the decoder's structure */
101     if( ( p_dec->p_sys = p_sys =
102           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
103     {
104         msg_Err( p_dec, "out of memory" );
105         return VLC_EGENERIC;
106     }
107
108     /* Open a faad context */
109     if( ( p_sys->hfaad = faacDecOpen() ) == NULL )
110     {
111         msg_Err( p_dec, "cannot initialize faad" );
112         return VLC_EGENERIC;
113     }
114
115     /* Misc init */
116     aout_DateSet( &p_sys->date, 0 );
117     p_dec->fmt_out.i_cat = AUDIO_ES;
118
119     if (p_this->p_libvlc->i_cpu & CPU_CAPABILITY_FPU)
120         p_dec->fmt_out.i_codec = VLC_FOURCC('f','l','3','2');
121     else
122         p_dec->fmt_out.i_codec = AOUT_FMT_S16_NE;
123     p_dec->pf_decode_audio = DecodeBlock;
124
125     p_dec->fmt_out.audio.i_physical_channels =
126         p_dec->fmt_out.audio.i_original_channels = 0;
127
128     if( p_dec->fmt_in.i_extra > 0 )
129     {
130         /* We have a decoder config so init the handle */
131         unsigned long i_rate;
132         unsigned char i_channels;
133
134         if( faacDecInit2( p_sys->hfaad, p_dec->fmt_in.p_extra,
135                           p_dec->fmt_in.i_extra,
136                           &i_rate, &i_channels ) < 0 )
137         {
138             return VLC_EGENERIC;
139         }
140
141         p_dec->fmt_out.audio.i_rate = i_rate;
142         p_dec->fmt_out.audio.i_channels = i_channels;
143         aout_DateInit( &p_sys->date, i_rate );
144     }
145     else
146     {
147         /* Will be initalised from first frame */
148         p_dec->fmt_out.audio.i_rate = 0;
149         p_dec->fmt_out.audio.i_channels = 0;
150     }
151
152     /* Set the faad config */
153     cfg = faacDecGetCurrentConfiguration( p_sys->hfaad );
154     if (p_this->p_libvlc->i_cpu & CPU_CAPABILITY_FPU)
155         cfg->outputFormat = FAAD_FMT_FLOAT;
156     else
157         cfg->outputFormat = FAAD_FMT_16BIT;
158     faacDecSetConfiguration( p_sys->hfaad, cfg );
159
160     /* buffer */
161     p_sys->i_buffer = p_sys->i_buffer_size = 0;
162     p_sys->p_buffer = 0;
163
164     /* Faad2 can't deal with truncated data (eg. from MPEG TS) */
165     p_dec->b_need_packetized = VLC_TRUE;
166
167     return VLC_SUCCESS;
168 }
169
170 /*****************************************************************************
171  * DecodeBlock:
172  *****************************************************************************/
173 static aout_buffer_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
174 {
175     decoder_sys_t *p_sys = p_dec->p_sys;
176     block_t *p_block;
177
178     if( !pp_block || !*pp_block ) return NULL;
179
180     p_block = *pp_block;
181
182     if( p_block->i_flags&BLOCK_FLAG_DISCONTINUITY )
183     {
184         block_Release( p_block );
185         return NULL;
186     }
187
188     /* Append the block to the temporary buffer */
189     if( p_sys->i_buffer_size < p_sys->i_buffer + p_block->i_buffer )
190     {
191         p_sys->i_buffer_size = p_sys->i_buffer + p_block->i_buffer;
192         p_sys->p_buffer = realloc( p_sys->p_buffer, p_sys->i_buffer_size );
193     }
194
195     if( p_block->i_buffer )
196     {
197         memcpy( &p_sys->p_buffer[p_sys->i_buffer],
198                 p_block->p_buffer, p_block->i_buffer );
199         p_sys->i_buffer += p_block->i_buffer;
200         p_block->i_buffer = 0;
201     }
202
203     if( p_dec->fmt_out.audio.i_rate == 0 && p_sys->i_buffer )
204     {
205         unsigned long i_rate;
206         unsigned char i_channels;
207
208         /* Init faad with the first frame */
209         if( faacDecInit( p_sys->hfaad,
210                          p_sys->p_buffer, p_sys->i_buffer,
211                          &i_rate, &i_channels ) < 0 )
212         {
213             block_Release( p_block );
214             return NULL;
215         }
216
217         p_dec->fmt_out.audio.i_rate = i_rate;
218         p_dec->fmt_out.audio.i_channels = i_channels;
219         aout_DateInit( &p_sys->date, i_rate );
220     }
221
222     if( p_block->i_pts != 0 && p_block->i_pts != aout_DateGet( &p_sys->date ) )
223     {
224         aout_DateSet( &p_sys->date, p_block->i_pts );
225     }
226     else if( !aout_DateGet( &p_sys->date ) )
227     {
228         /* We've just started the stream, wait for the first PTS. */
229         block_Release( p_block );
230         p_sys->i_buffer = 0;
231         return NULL;
232     }
233
234     /* Decode all data */
235     if( p_sys->i_buffer )
236     {
237         void *samples;
238         faacDecFrameInfo frame;
239         aout_buffer_t *p_out;
240         int i, j;
241
242         samples = faacDecDecode( p_sys->hfaad, &frame,
243                                  p_sys->p_buffer, p_sys->i_buffer );
244
245         if( frame.error > 0 )
246         {
247             msg_Warn( p_dec, "%s", faacDecGetErrorMessage( frame.error ) );
248
249             /* Flush the buffer */
250             p_sys->i_buffer = 0;
251             block_Release( p_block );
252             return NULL;
253         }
254
255         if( frame.channels <= 0 || frame.channels > 8 || frame.channels == 7 )
256         {
257             msg_Warn( p_dec, "invalid channels count: %i", frame.channels );
258
259             /* Flush the buffer */
260             p_sys->i_buffer -= frame.bytesconsumed;
261             if( p_sys->i_buffer > 0 )
262             {
263                 memmove( p_sys->p_buffer,&p_sys->p_buffer[frame.bytesconsumed],
264                          p_sys->i_buffer );
265             }
266             block_Release( p_block );
267             return NULL;
268         }
269
270         if( frame.samples <= 0 )
271         {
272             msg_Warn( p_dec, "decoded zero sample" );
273
274             /* Flush the buffer */
275             p_sys->i_buffer -= frame.bytesconsumed;
276             if( p_sys->i_buffer > 0 )
277             {
278                 memmove( p_sys->p_buffer,&p_sys->p_buffer[frame.bytesconsumed],
279                          p_sys->i_buffer );
280             }
281             block_Release( p_block );
282             return NULL;
283         }
284
285         /* We decoded a valid frame */
286         if( p_dec->fmt_out.audio.i_rate != frame.samplerate )
287         {
288             aout_DateInit( &p_sys->date, frame.samplerate );
289             aout_DateSet( &p_sys->date, p_block->i_pts );
290         }
291         p_block->i_pts = 0;  /* PTS is valid only once */
292
293         p_dec->fmt_out.audio.i_rate = frame.samplerate;
294         p_dec->fmt_out.audio.i_channels = frame.channels;
295
296
297         /* Convert frame.channel_position to our own channel values */
298         for( i = 0; i < frame.channels; i++ )
299         {
300             /* Find the channel code */
301             for( j = 0; j < MAX_CHANNEL_POSITIONS; j++ )
302             {
303                 if( frame.channel_position[i] == pi_channels_in[j] )
304                 {
305                     p_sys->pi_channel_positions[i] = pi_channels_out[j];
306                     p_dec->fmt_out.audio.i_physical_channels |=
307                         pi_channels_out[j];
308                     break;
309                 }
310             }
311         }
312         p_dec->fmt_out.audio.i_original_channels =
313             p_dec->fmt_out.audio.i_physical_channels;
314
315         p_out = p_dec->pf_aout_buffer_new(p_dec, frame.samples/frame.channels);
316         if( p_out == NULL )
317         {
318             p_sys->i_buffer = 0;
319             block_Release( p_block );
320             return NULL;
321         }
322
323         p_out->start_date = aout_DateGet( &p_sys->date );
324         p_out->end_date = aout_DateIncrement( &p_sys->date,
325                                               frame.samples / frame.channels );
326
327         DoReordering( p_dec, (uint32_t *)p_out->p_buffer, samples,
328                       frame.samples / frame.channels, frame.channels,
329                       p_sys->pi_channel_positions );
330
331         p_sys->i_buffer -= frame.bytesconsumed;
332         if( p_sys->i_buffer > 0 )
333         {
334             memmove( p_sys->p_buffer, &p_sys->p_buffer[frame.bytesconsumed],
335                      p_sys->i_buffer );
336         }
337
338         return p_out;
339     }
340
341     block_Release( p_block );
342     return NULL;
343 }
344
345 /*****************************************************************************
346  * Close:
347  *****************************************************************************/
348 static void Close( vlc_object_t *p_this )
349 {
350     decoder_t *p_dec = (decoder_t *)p_this;
351     decoder_sys_t *p_sys = p_dec->p_sys;
352
353     faacDecClose( p_sys->hfaad );
354     free( p_sys );
355 }
356
357 /*****************************************************************************
358  * DoReordering: do some channel re-ordering (the ac3 channel order is
359  *   different from the aac one).
360  *****************************************************************************/
361 static void DoReordering( decoder_t *p_dec,
362                           uint32_t *p_out, uint32_t *p_in, int i_samples,
363                           int i_nb_channels, uint32_t *pi_chan_positions )
364 {
365     int pi_chan_table[MAX_CHANNEL_POSITIONS];
366     int i, j, k;
367
368     /* Find the channels mapping */
369     for( i = 0, j = 0; i < MAX_CHANNEL_POSITIONS; i++ )
370     {
371         for( k = 0; k < i_nb_channels; k++ )
372         {
373             if( pi_channels_ordered[i] == pi_chan_positions[k] )
374             {
375                 pi_chan_table[k] = j++;
376                 break;
377             }
378         }
379     }
380
381     /* Do the actual reordering */
382     if( p_dec->p_libvlc->i_cpu & CPU_CAPABILITY_FPU )
383         for( i = 0; i < i_samples; i++ )
384             for( j = 0; j < i_nb_channels; j++ )
385                 p_out[i * i_nb_channels + pi_chan_table[j]] =
386                     p_in[i * i_nb_channels + j];
387     else
388         for( i = 0; i < i_samples; i++ )
389             for( j = 0; j < i_nb_channels; j++ )
390                 ((uint16_t *)p_out)[i * i_nb_channels + pi_chan_table[j]] =
391                     ((uint16_t *)p_in)[i * i_nb_channels + j];
392 }