]> git.sesse.net Git - vlc/blob - modules/codec/vorbis.c
* ./modules/*: warning fixes.
[vlc] / modules / codec / vorbis.c
1 /*****************************************************************************
2  * vorbis.c: vorbis decoder module making use of libvorbis.
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: vorbis.c,v 1.12 2003/01/23 15:52:04 sam Exp $
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
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 #include <string.h>                                    /* memcpy(), memset() */
29
30 #include <vlc/vlc.h>
31 #include <vlc/aout.h>
32 #include <vlc/decoder.h>
33 #include <input_ext-dec.h>
34
35 #include <vlc/input.h>
36
37 #include <ogg/ogg.h>
38 #ifdef MODULE_NAME_IS_tremor
39 #include <tremor/ivorbiscodec.h>
40 #else
41 #include <vorbis/codec.h>
42 #endif
43
44 /*****************************************************************************
45  * dec_thread_t : vorbis decoder thread descriptor
46  *****************************************************************************/
47 typedef struct dec_thread_t
48 {
49     /*
50      * Thread properties
51      */
52     vlc_thread_t        thread_id;                /* id for thread functions */
53
54     /*
55      * Vorbis properties
56      */
57     vorbis_info      vi; /* struct that stores all the static vorbis bitstream
58                             settings */
59     vorbis_comment   vc; /* struct that stores all the bitstream user
60                           * comments */
61     vorbis_dsp_state vd; /* central working state for the packet->PCM
62                           * decoder */
63     vorbis_block     vb; /* local working space for packet->PCM decode */
64
65     /*
66      * Input properties
67      */
68     decoder_fifo_t         *p_fifo;            /* stores the PES stream data */
69     pes_packet_t           *p_pes;            /* current PES we are decoding */
70
71     /*
72      * Output properties
73      */
74     aout_instance_t        *p_aout;
75     aout_input_t           *p_aout_input;
76     audio_sample_format_t   output_format;
77     audio_date_t            end_date;
78
79 } dec_thread_t;
80
81 static int pi_channels_maps[6] =
82 {
83     0,
84     AOUT_CHAN_CENTER,   AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
85     AOUT_CHAN_CENTER | AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
86     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT
87      | AOUT_CHAN_REARRIGHT,
88     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
89      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
90 };
91
92 /*****************************************************************************
93  * Local prototypes
94  *****************************************************************************/
95 static int  OpenDecoder  ( vlc_object_t * );
96 static int  RunDecoder   ( decoder_fifo_t * );
97 static void CloseDecoder ( dec_thread_t * );
98
99 static void DecodePacket ( dec_thread_t * );
100 static int  GetOggPacket ( dec_thread_t *, ogg_packet *, mtime_t * );
101
102 #ifdef MODULE_NAME_IS_tremor
103 static void Interleave   ( int32_t *, const int32_t **, int, int );
104 #else
105 static void Interleave   ( float *, const float **, int, int );
106 #endif
107
108 /*****************************************************************************
109  * Module descriptor
110  *****************************************************************************/
111 vlc_module_begin();
112     set_description( _("Vorbis decoder module") );
113 #ifdef MODULE_NAME_IS_tremor
114     set_capability( "decoder", 90 );
115 #else
116     set_capability( "decoder", 100 );
117 #endif
118     set_callbacks( OpenDecoder, NULL );
119 vlc_module_end();
120
121 /*****************************************************************************
122  * OpenDecoder: probe the decoder and return score
123  *****************************************************************************/
124 static int OpenDecoder( vlc_object_t *p_this )
125 {
126     decoder_fifo_t *p_fifo = (decoder_fifo_t*) p_this;
127
128     if( p_fifo->i_fourcc != VLC_FOURCC('v','o','r','b') )
129     {
130         return VLC_EGENERIC;
131     }
132
133     p_fifo->pf_run = RunDecoder;
134     return VLC_SUCCESS;
135 }
136
137 /*****************************************************************************
138  * RunDecoder: the vorbis decoder
139  *****************************************************************************/
140 static int RunDecoder( decoder_fifo_t * p_fifo )
141 {
142     dec_thread_t *p_dec;
143     ogg_packet oggpacket;
144     mtime_t i_pts;
145
146     /* Allocate the memory needed to store the thread's structure */
147     if( (p_dec = (dec_thread_t *)malloc (sizeof(dec_thread_t)) )
148             == NULL)
149     {
150         msg_Err( p_fifo, "out of memory" );
151         goto error;
152     }
153
154     /* Initialize the thread properties */
155     memset( p_dec, 0, sizeof(dec_thread_t) );
156     p_dec->p_fifo = p_fifo;
157     p_dec->p_pes  = NULL;
158
159     /* Take care of the initial Vorbis header */
160     vorbis_info_init( &p_dec->vi );
161     vorbis_comment_init( &p_dec->vc );
162
163     if( GetOggPacket( p_dec, &oggpacket, &i_pts ) != VLC_SUCCESS )
164         goto error;
165
166     oggpacket.b_o_s = 1; /* yes this actually is a b_o_s packet :) */
167     if( vorbis_synthesis_headerin( &p_dec->vi, &p_dec->vc, &oggpacket ) < 0 )
168     {
169         msg_Err( p_dec->p_fifo, "This bitstream does not contain Vorbis "
170                  "audio data");
171         goto error;
172     }
173
174     /* The next two packets in order are the comment and codebook headers.
175        We need to watch out that these packets are not missing as a
176        missing or corrupted header is fatal. */
177     if( GetOggPacket( p_dec, &oggpacket, &i_pts ) != VLC_SUCCESS )
178         goto error;
179
180     if( vorbis_synthesis_headerin( &p_dec->vi, &p_dec->vc, &oggpacket ) < 0 )
181     {
182         msg_Err( p_dec->p_fifo, "2nd Vorbis header is corrupted" );
183         goto error;
184     }
185     /* parse the vorbis comment */
186     {
187         input_thread_t *p_input = (input_thread_t *)p_fifo->p_parent;
188         input_info_category_t *p_cat = input_InfoCategory( p_input,
189                                                            "Vorbis Comment" );
190         int i = 0;
191         char *psz_name, *psz_value, *psz_comment;
192         while ( i < p_dec->vc.comments )
193         {
194             psz_comment = strdup( p_dec->vc.user_comments[i] );
195             psz_name = psz_comment;
196             psz_value = strchr( psz_comment, '=' );
197             *psz_value = '\0';
198             psz_value++;
199             input_AddInfo( p_cat, psz_name, psz_value );
200             free( psz_comment );
201             i++;
202         }
203     }
204     
205     if( GetOggPacket( p_dec, &oggpacket, &i_pts ) != VLC_SUCCESS )
206         goto error;
207
208     if( vorbis_synthesis_headerin( &p_dec->vi, &p_dec->vc, &oggpacket ) < 0 )
209     {
210         msg_Err( p_dec->p_fifo, "3rd Vorbis header is corrupted" );
211         goto error;
212     }
213
214     /* Initialize the Vorbis packet->PCM decoder */
215     vorbis_synthesis_init( &p_dec->vd, &p_dec->vi );
216     vorbis_block_init( &p_dec->vd, &p_dec->vb );
217
218 #ifdef MODULE_NAME_IS_tremor
219     p_dec->output_format.i_format = VLC_FOURCC('f','i','3','2');
220 #else
221     p_dec->output_format.i_format = VLC_FOURCC('f','l','3','2');
222 #endif
223     p_dec->output_format.i_physical_channels =
224         p_dec->output_format.i_original_channels =
225             pi_channels_maps[p_dec->vi.channels];
226     p_dec->output_format.i_rate = p_dec->vi.rate;
227
228     aout_DateInit( &p_dec->end_date, p_dec->vi.rate );
229     p_dec->p_aout = NULL;
230     p_dec->p_aout_input = aout_DecNew( p_dec->p_fifo,
231                                        &p_dec->p_aout,
232                                        &p_dec->output_format );
233
234     if( p_dec->p_aout_input == NULL )
235     {
236         msg_Err( p_dec->p_fifo, "failed to create aout fifo" );
237         goto error;
238     }
239
240     /* vorbis decoder thread's main loop */
241     while( (!p_dec->p_fifo->b_die) && (!p_dec->p_fifo->b_error) )
242     {
243         DecodePacket( p_dec );
244     }
245
246     /* If b_error is set, the vorbis decoder thread enters the error loop */
247     if( p_dec->p_fifo->b_error )
248     {
249         DecoderError( p_dec->p_fifo );
250     }
251
252     /* End of the vorbis decoder thread */
253     CloseDecoder( p_dec );
254
255     return 0;
256
257  error:
258     DecoderError( p_fifo );
259     if( p_dec )
260     {
261         if( p_dec->p_fifo )
262             p_dec->p_fifo->b_error = 1;
263
264         /* End of the vorbis decoder thread */
265         CloseDecoder( p_dec );
266     }
267
268     return -1;
269
270 }
271
272 /*****************************************************************************
273  * DecodePacket: decodes a Vorbis packet.
274  *****************************************************************************/
275 static void DecodePacket( dec_thread_t *p_dec )
276 {
277     aout_buffer_t *p_aout_buffer;
278     ogg_packet    oggpacket;
279 #ifdef MODULE_NAME_IS_tremor
280     int32_t       **pp_pcm;
281 #else
282     float         **pp_pcm;
283 #endif
284     int           i_samples;
285     mtime_t       i_pts;
286
287     if( GetOggPacket( p_dec, &oggpacket, &i_pts ) != VLC_SUCCESS )
288     {
289         /* This should mean an eos */
290         return;
291     }
292
293     /* Date management */
294     if( i_pts > 0 && i_pts != aout_DateGet( &p_dec->end_date ) )
295     {
296         aout_DateSet( &p_dec->end_date, i_pts );
297     }
298
299     if( vorbis_synthesis( &p_dec->vb, &oggpacket ) == 0 )
300         vorbis_synthesis_blockin( &p_dec->vd, &p_dec->vb );
301
302     /* **pp_pcm is a multichannel float vector. In stereo, for
303      * example, pp_pcm[0] is left, and pp_pcm[1] is right. i_samples is
304      * the size of each channel. Convert the float values
305      * (-1.<=range<=1.) to whatever PCM format and write it out */
306
307     while( ( i_samples = vorbis_synthesis_pcmout( &p_dec->vd, &pp_pcm ) ) > 0 )
308     {
309
310         p_aout_buffer = aout_DecNewBuffer( p_dec->p_aout, p_dec->p_aout_input,
311                                            i_samples );
312         if( !p_aout_buffer )
313         {
314             msg_Err( p_dec->p_fifo, "cannot get aout buffer" );
315             p_dec->p_fifo->b_error = 1;
316             return;
317         }
318
319         /* Interleave the samples */
320 #ifdef MODULE_NAME_IS_tremor
321         Interleave( (int32_t *)p_aout_buffer->p_buffer,
322                     (const int32_t **)pp_pcm, p_dec->vi.channels, i_samples );
323 #else
324         Interleave( (float *)p_aout_buffer->p_buffer,
325                     (const float **)pp_pcm, p_dec->vi.channels, i_samples );
326 #endif
327
328         /* Tell libvorbis how many samples we actually consumed */
329         vorbis_synthesis_read( &p_dec->vd, i_samples );
330
331         /* Date management */
332         p_aout_buffer->start_date = aout_DateGet( &p_dec->end_date );
333         p_aout_buffer->end_date = aout_DateIncrement( &p_dec->end_date,
334                                                       i_samples );
335
336         aout_DecPlay( p_dec->p_aout, p_dec->p_aout_input, p_aout_buffer );
337     }
338
339 }
340
341 /*****************************************************************************
342  * GetOggPacket: get the following vorbis packet from the stream and send back
343  *               the result in an ogg packet (for easy decoding by libvorbis).
344  *****************************************************************************
345  * Returns VLC_EGENERIC in case of eof.
346  *****************************************************************************/
347 static int GetOggPacket( dec_thread_t *p_dec, ogg_packet *p_oggpacket,
348                          mtime_t *p_pts )
349 {
350     if( p_dec->p_pes ) input_DeletePES( p_dec->p_fifo->p_packets_mgt,
351                                         p_dec->p_pes );
352
353     input_ExtractPES( p_dec->p_fifo, &p_dec->p_pes );
354     if( !p_dec->p_pes ) return VLC_EGENERIC;
355
356     p_oggpacket->packet = p_dec->p_pes->p_first->p_payload_start;
357     p_oggpacket->bytes = p_dec->p_pes->i_pes_size;
358     p_oggpacket->granulepos = p_dec->p_pes->i_dts;
359     p_oggpacket->b_o_s = 0;
360     p_oggpacket->e_o_s = 0;
361     p_oggpacket->packetno = 0;
362
363     *p_pts = p_dec->p_pes->i_pts;
364
365     return VLC_SUCCESS;
366 }
367
368 /*****************************************************************************
369  * Interleave: helper function to interleave channels
370  *****************************************************************************/
371 #ifdef MODULE_NAME_IS_tremor
372 static void Interleave( int32_t *p_out, const int32_t **pp_in,
373 #else
374 static void Interleave( float *p_out, const float **pp_in,
375 #endif
376                         int i_nb_channels, int i_samples )
377 {
378     int i, j;
379
380     for ( j = 0; j < i_samples; j++ )
381     {
382         for ( i = 0; i < i_nb_channels; i++ )
383         {
384             p_out[j * i_nb_channels + i] = pp_in[i][j];
385         }
386     }
387 }
388
389 /*****************************************************************************
390  * CloseDecoder: vorbis decoder destruction
391  *****************************************************************************/
392 static void CloseDecoder( dec_thread_t * p_dec )
393 {
394     if( p_dec->p_aout_input != NULL )
395     {
396         aout_DecDelete( p_dec->p_aout, p_dec->p_aout_input );
397     }
398
399     if( p_dec )
400     {
401         if( p_dec->p_pes )
402             input_DeletePES( p_dec->p_fifo->p_packets_mgt, p_dec->p_pes );
403         vorbis_block_clear( &p_dec->vb );
404         vorbis_dsp_clear( &p_dec->vd );
405         vorbis_comment_clear( &p_dec->vc );
406         vorbis_info_clear( &p_dec->vi );  /* must be called last */
407         free( p_dec );
408     }
409 }