]> git.sesse.net Git - vlc/blob - modules/codec/vorbis.c
upnp: change item b_net and i_type
[vlc] / modules / codec / vorbis.c
1 /*****************************************************************************
2  * vorbis.c: vorbis decoder/encoder/packetizer module using of libvorbis.
3  *****************************************************************************
4  * Copyright (C) 2001-2012 VLC authors and VideoLAN
5  * Copyright (C) 2007 Société des arts technologiques
6  * Copyright (C) 2007 Savoir-faire Linux
7  *
8  * $Id$
9  *
10  * Authors: Gildas Bazin <gbazin@videolan.org>
11  *
12  * This program is free software; you can redistribute it and/or modify it
13  * under the terms of the GNU Lesser General Public License as published by
14  * the Free Software Foundation; either version 2.1 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public License
23  * along with this program; if not, write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <vlc_common.h>
35 #include <vlc_plugin.h>
36 #include <vlc_codec.h>
37 #include <vlc_charset.h>
38 #include <vlc_aout.h>
39 #include <vlc_input.h>
40 #include <vlc_sout.h>
41 #include "../demux/xiph.h"
42
43 #include <ogg/ogg.h>
44
45 #ifdef MODULE_NAME_IS_tremor
46 # include <tremor/ivorbiscodec.h>
47 # define INTERLEAVE_TYPE int32_t
48
49 #else
50 # include <vorbis/codec.h>
51 # define INTERLEAVE_TYPE float
52
53 # ifdef ENABLE_SOUT
54 #  define HAVE_VORBIS_ENCODER
55 #  include <vorbis/vorbisenc.h>
56 #  ifndef OV_ECTL_RATEMANAGE_AVG
57 #   define OV_ECTL_RATEMANAGE_AVG 0x0
58 #  endif
59 # endif
60 #endif
61
62 /*****************************************************************************
63  * decoder_sys_t : vorbis decoder descriptor
64  *****************************************************************************/
65 struct decoder_sys_t
66 {
67     /* Module mode */
68     bool b_packetizer;
69
70     bool            b_has_headers;
71
72     /*
73      * Vorbis properties
74      */
75     vorbis_info      vi; /* struct that stores all the static vorbis bitstream
76                             settings */
77     vorbis_comment   vc; /* struct that stores all the bitstream user
78                           * comments */
79     vorbis_dsp_state vd; /* central working state for the packet->PCM
80                           * decoder */
81     vorbis_block     vb; /* local working space for packet->PCM decode */
82
83     /*
84      * Common properties
85      */
86     date_t       end_date;
87     int          i_last_block_size;
88
89     /*
90     ** Channel reordering
91     */
92     uint8_t pi_chan_table[AOUT_CHAN_MAX];
93 };
94
95 static const int pi_channels_maps[9] =
96 {
97     0,
98     AOUT_CHAN_CENTER,
99     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
100     AOUT_CHAN_CENTER | AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
101     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT
102      | AOUT_CHAN_REARRIGHT,
103     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
104      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT,
105     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
106      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT | AOUT_CHAN_LFE,
107     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
108      | AOUT_CHAN_REARCENTER | AOUT_CHAN_MIDDLELEFT
109      | AOUT_CHAN_MIDDLERIGHT | AOUT_CHAN_LFE,
110     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER | AOUT_CHAN_REARLEFT
111      | AOUT_CHAN_REARRIGHT | AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT
112      | AOUT_CHAN_LFE,
113 };
114
115 /*
116 **  channel order as defined in http://www.xiph.org/vorbis/doc/Vorbis_I_spec.html#x1-800004.3.9
117 */
118
119 /* recommended vorbis channel order for 8 channels */
120 static const uint32_t pi_8channels_in[] =
121 { AOUT_CHAN_LEFT, AOUT_CHAN_CENTER, AOUT_CHAN_RIGHT,
122   AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
123   AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,AOUT_CHAN_LFE, 0 };
124
125 /* recommended vorbis channel order for 7 channels */
126 static const uint32_t pi_7channels_in[] =
127 { AOUT_CHAN_LEFT, AOUT_CHAN_CENTER, AOUT_CHAN_RIGHT,
128   AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
129   AOUT_CHAN_REARCENTER, AOUT_CHAN_LFE, 0 };
130
131 /* recommended vorbis channel order for 6 channels */
132 static const uint32_t pi_6channels_in[] =
133 { AOUT_CHAN_LEFT, AOUT_CHAN_CENTER, AOUT_CHAN_RIGHT,
134   AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, AOUT_CHAN_LFE, 0 };
135
136 /* recommended vorbis channel order for 4 channels */
137 static const uint32_t pi_4channels_in[] =
138 { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, 0 };
139
140 /* recommended vorbis channel order for 3 channels */
141 static const uint32_t pi_3channels_in[] =
142 { AOUT_CHAN_LEFT, AOUT_CHAN_CENTER, AOUT_CHAN_RIGHT, 0 };
143
144 /****************************************************************************
145  * Local prototypes
146  ****************************************************************************/
147 static int  OpenDecoder   ( vlc_object_t * );
148 static int  OpenPacketizer( vlc_object_t * );
149 static void CloseDecoder  ( vlc_object_t * );
150 static block_t *DecodeBlock  ( decoder_t *, block_t ** );
151
152 static int  ProcessHeaders( decoder_t * );
153 static void *ProcessPacket ( decoder_t *, ogg_packet *, block_t ** );
154
155 static block_t *DecodePacket( decoder_t *, ogg_packet * );
156 static block_t *SendPacket( decoder_t *, ogg_packet *, block_t * );
157
158 static void ParseVorbisComments( decoder_t * );
159
160 static void ConfigureChannelOrder(uint8_t *, int, uint32_t, bool );
161
162 #ifdef HAVE_VORBIS_ENCODER
163 static int OpenEncoder   ( vlc_object_t * );
164 static void CloseEncoder ( vlc_object_t * );
165 static block_t *Encode   ( encoder_t *, block_t * );
166 #endif
167
168 /*****************************************************************************
169  * Module descriptor
170  *****************************************************************************/
171 #define ENC_QUALITY_TEXT N_("Encoding quality")
172 #define ENC_QUALITY_LONGTEXT N_( \
173   "Enforce a quality between 1 (low) and 10 (high), instead " \
174   "of specifying a particular bitrate. This will produce a VBR stream." )
175 #define ENC_MAXBR_TEXT N_("Maximum encoding bitrate")
176 #define ENC_MAXBR_LONGTEXT N_( \
177   "Maximum bitrate in kbps. This is useful for streaming applications." )
178 #define ENC_MINBR_TEXT N_("Minimum encoding bitrate")
179 #define ENC_MINBR_LONGTEXT N_( \
180   "Minimum bitrate in kbps. This is useful for encoding for a fixed-size channel." )
181 #define ENC_CBR_TEXT N_("CBR encoding")
182 #define ENC_CBR_LONGTEXT N_( \
183   "Force a constant bitrate encoding (CBR)." )
184
185 vlc_module_begin ()
186     set_shortname( "Vorbis" )
187     set_description( N_("Vorbis audio decoder") )
188 #ifdef MODULE_NAME_IS_tremor
189     set_capability( "decoder", 90 )
190 #else
191     set_capability( "decoder", 100 )
192 #endif
193     set_category( CAT_INPUT )
194     set_subcategory( SUBCAT_INPUT_ACODEC )
195     set_callbacks( OpenDecoder, CloseDecoder )
196
197     add_submodule ()
198     set_description( N_("Vorbis audio packetizer") )
199     set_capability( "packetizer", 100 )
200     set_callbacks( OpenPacketizer, CloseDecoder )
201
202 #ifdef HAVE_VORBIS_ENCODER
203 #   define ENC_CFG_PREFIX "sout-vorbis-"
204     add_submodule ()
205     set_description( N_("Vorbis audio encoder") )
206     set_capability( "encoder", 130 )
207     set_callbacks( OpenEncoder, CloseEncoder )
208
209     add_integer( ENC_CFG_PREFIX "quality", 0, ENC_QUALITY_TEXT,
210                  ENC_QUALITY_LONGTEXT, false )
211         change_integer_range( 0, 10 )
212     add_integer( ENC_CFG_PREFIX "max-bitrate", 0, ENC_MAXBR_TEXT,
213                  ENC_MAXBR_LONGTEXT, false )
214     add_integer( ENC_CFG_PREFIX "min-bitrate", 0, ENC_MINBR_TEXT,
215                  ENC_MINBR_LONGTEXT, false )
216     add_bool( ENC_CFG_PREFIX "cbr", false, ENC_CBR_TEXT,
217                  ENC_CBR_LONGTEXT, false )
218 #endif
219
220 vlc_module_end ()
221
222 #ifdef HAVE_VORBIS_ENCODER
223 static const char *const ppsz_enc_options[] = {
224     "quality", "max-bitrate", "min-bitrate", "cbr", NULL
225 };
226 #endif
227
228 /*****************************************************************************
229  * OpenDecoder: probe the decoder and return score
230  *****************************************************************************/
231 static int OpenDecoder( vlc_object_t *p_this )
232 {
233     decoder_t *p_dec = (decoder_t*)p_this;
234     decoder_sys_t *p_sys;
235
236     if( p_dec->fmt_in.i_codec != VLC_CODEC_VORBIS )
237         return VLC_EGENERIC;
238
239     /* Allocate the memory needed to store the decoder's structure */
240     p_dec->p_sys = p_sys = malloc( sizeof(*p_sys) );
241     if( unlikely( !p_sys ) )
242         return VLC_ENOMEM;
243
244     /* Misc init */
245     date_Set( &p_sys->end_date, 0 );
246     p_sys->i_last_block_size = 0;
247     p_sys->b_packetizer = false;
248     p_sys->b_has_headers = false;
249
250     /* Take care of vorbis init */
251     vorbis_info_init( &p_sys->vi );
252     vorbis_comment_init( &p_sys->vc );
253
254     /* Set output properties */
255     p_dec->fmt_out.i_cat = AUDIO_ES;
256 #ifdef MODULE_NAME_IS_tremor
257     p_dec->fmt_out.i_codec = VLC_CODEC_S32N;
258 #else
259     p_dec->fmt_out.i_codec = VLC_CODEC_FL32;
260 #endif
261
262     /* Set callbacks */
263     p_dec->pf_decode_audio = DecodeBlock;
264     p_dec->pf_packetize    = DecodeBlock;
265
266     return VLC_SUCCESS;
267 }
268
269 static int OpenPacketizer( vlc_object_t *p_this )
270 {
271     decoder_t *p_dec = (decoder_t*)p_this;
272
273     int i_ret = OpenDecoder( p_this );
274
275     if( i_ret == VLC_SUCCESS )
276     {
277         p_dec->p_sys->b_packetizer = true;
278         p_dec->fmt_out.i_codec = VLC_CODEC_VORBIS;
279     }
280
281     return i_ret;
282 }
283
284 /****************************************************************************
285  * DecodeBlock: the whole thing
286  ****************************************************************************
287  * This function must be fed with ogg packets.
288  ****************************************************************************/
289 static block_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
290 {
291     decoder_sys_t *p_sys = p_dec->p_sys;
292     ogg_packet oggpacket;
293
294     if( !pp_block ) return NULL;
295
296     if( *pp_block )
297     {
298         /* Block to Ogg packet */
299         oggpacket.packet = (*pp_block)->p_buffer;
300         oggpacket.bytes = (*pp_block)->i_buffer;
301     }
302     else
303     {
304         if( p_sys->b_packetizer ) return NULL;
305
306         /* Block to Ogg packet */
307         oggpacket.packet = NULL;
308         oggpacket.bytes = 0;
309     }
310
311     oggpacket.granulepos = -1;
312     oggpacket.b_o_s = 0;
313     oggpacket.e_o_s = 0;
314     oggpacket.packetno = 0;
315
316     /* Check for headers */
317     if( !p_sys->b_has_headers )
318     {
319         if( ProcessHeaders( p_dec ) )
320         {
321             if( *pp_block )
322                 block_Release( *pp_block );
323             return NULL;
324         }
325         p_sys->b_has_headers = true;
326     }
327
328     return ProcessPacket( p_dec, &oggpacket, pp_block );
329 }
330
331 /*****************************************************************************
332  * ProcessHeaders: process Vorbis headers.
333  *****************************************************************************/
334 static int ProcessHeaders( decoder_t *p_dec )
335 {
336     decoder_sys_t *p_sys = p_dec->p_sys;
337     ogg_packet oggpacket;
338
339     unsigned pi_size[XIPH_MAX_HEADER_COUNT];
340     void *pp_data[XIPH_MAX_HEADER_COUNT];
341     unsigned i_count;
342     if( xiph_SplitHeaders( pi_size, pp_data, &i_count,
343                            p_dec->fmt_in.i_extra, p_dec->fmt_in.p_extra) )
344         return VLC_EGENERIC;
345     if( i_count < 3 )
346         return VLC_EGENERIC;
347
348     oggpacket.granulepos = -1;
349     oggpacket.e_o_s = 0;
350     oggpacket.packetno = 0;
351
352     /* Take care of the initial Vorbis header */
353     oggpacket.b_o_s  = 1; /* yes this actually is a b_o_s packet :) */
354     oggpacket.bytes  = pi_size[0];
355     oggpacket.packet = pp_data[0];
356     if( vorbis_synthesis_headerin( &p_sys->vi, &p_sys->vc, &oggpacket ) < 0 )
357     {
358         msg_Err( p_dec, "this bitstream does not contain Vorbis audio data");
359         return VLC_EGENERIC;
360     }
361
362     /* Setup the format */
363     p_dec->fmt_out.audio.i_rate     = p_sys->vi.rate;
364     p_dec->fmt_out.audio.i_channels = p_sys->vi.channels;
365
366     if( p_dec->fmt_out.audio.i_channels >= ARRAY_SIZE(pi_channels_maps) )
367     {
368         msg_Err( p_dec, "invalid number of channels (1-%zu): %i",
369                  ARRAY_SIZE(pi_channels_maps),
370                  p_dec->fmt_out.audio.i_channels );
371         return VLC_EGENERIC;
372     }
373
374     p_dec->fmt_out.audio.i_physical_channels =
375         p_dec->fmt_out.audio.i_original_channels =
376             pi_channels_maps[p_sys->vi.channels];
377     p_dec->fmt_out.i_bitrate = __MAX( 0, (int32_t) p_sys->vi.bitrate_nominal );
378
379     date_Init( &p_sys->end_date, p_sys->vi.rate, 1 );
380
381     msg_Dbg( p_dec, "channels:%d samplerate:%ld bitrate:%ud",
382              p_sys->vi.channels, p_sys->vi.rate, p_dec->fmt_out.i_bitrate );
383
384     /* The next packet in order is the comments header */
385     oggpacket.b_o_s  = 0;
386     oggpacket.bytes  = pi_size[1];
387     oggpacket.packet = pp_data[1];
388     if( vorbis_synthesis_headerin( &p_sys->vi, &p_sys->vc, &oggpacket ) < 0 )
389     {
390         msg_Err( p_dec, "2nd Vorbis header is corrupted" );
391         return VLC_EGENERIC;
392     }
393     ParseVorbisComments( p_dec );
394
395     /* The next packet in order is the codebooks header
396      * We need to watch out that this packet is not missing as a
397      * missing or corrupted header is fatal. */
398     oggpacket.b_o_s  = 0;
399     oggpacket.bytes  = pi_size[2];
400     oggpacket.packet = pp_data[2];
401     if( vorbis_synthesis_headerin( &p_sys->vi, &p_sys->vc, &oggpacket ) < 0 )
402     {
403         msg_Err( p_dec, "3rd Vorbis header is corrupted" );
404         return VLC_EGENERIC;
405     }
406
407     if( !p_sys->b_packetizer )
408     {
409         /* Initialize the Vorbis packet->PCM decoder */
410         vorbis_synthesis_init( &p_sys->vd, &p_sys->vi );
411         vorbis_block_init( &p_sys->vd, &p_sys->vb );
412     }
413     else
414     {
415         p_dec->fmt_out.i_extra = p_dec->fmt_in.i_extra;
416         p_dec->fmt_out.p_extra = xrealloc( p_dec->fmt_out.p_extra,
417                                            p_dec->fmt_out.i_extra );
418         memcpy( p_dec->fmt_out.p_extra,
419                 p_dec->fmt_in.p_extra, p_dec->fmt_out.i_extra );
420     }
421
422     ConfigureChannelOrder(p_sys->pi_chan_table, p_sys->vi.channels,
423             p_dec->fmt_out.audio.i_physical_channels, true);
424
425     return VLC_SUCCESS;
426 }
427
428 /*****************************************************************************
429  * ProcessPacket: processes a Vorbis packet.
430  *****************************************************************************/
431 static void *ProcessPacket( decoder_t *p_dec, ogg_packet *p_oggpacket,
432                             block_t **pp_block )
433 {
434     decoder_sys_t *p_sys = p_dec->p_sys;
435     block_t *p_block = *pp_block;
436
437     /* Date management */
438     if( p_block && p_block->i_pts > VLC_TS_INVALID &&
439         p_block->i_pts != date_Get( &p_sys->end_date ) )
440     {
441         date_Set( &p_sys->end_date, p_block->i_pts );
442     }
443
444     if( !date_Get( &p_sys->end_date ) )
445     {
446         /* We've just started the stream, wait for the first PTS. */
447         if( p_block ) block_Release( p_block );
448         return NULL;
449     }
450
451     *pp_block = NULL; /* To avoid being fed the same packet again */
452
453     if( p_sys->b_packetizer )
454     {
455         return SendPacket( p_dec, p_oggpacket, p_block );
456     }
457     else
458     {
459         block_t *p_aout_buffer = DecodePacket( p_dec, p_oggpacket );
460         if( p_block )
461             block_Release( p_block );
462         return p_aout_buffer;
463     }
464 }
465
466 /*****************************************************************************
467  * Interleave: helper function to interleave channels
468  *****************************************************************************/
469 static void Interleave( INTERLEAVE_TYPE *p_out, const INTERLEAVE_TYPE **pp_in,
470                         int i_nb_channels, int i_samples, uint8_t *pi_chan_table)
471 {
472     for( int j = 0; j < i_samples; j++ )
473         for( int i = 0; i < i_nb_channels; i++ )
474         {
475 #ifdef MODULE_NAME_IS_tremor
476             union { int32_t i; uint32_t u;} spl;
477
478             spl.u = ((uint32_t)pp_in[i][j]) << 8;
479             p_out[j * i_nb_channels + pi_chan_table[i]] = spl.i;
480 #else
481             p_out[j * i_nb_channels + pi_chan_table[i]] = pp_in[i][j];
482 #endif
483         }
484 }
485
486 /*****************************************************************************
487  * DecodePacket: decodes a Vorbis packet.
488  *****************************************************************************/
489 static block_t *DecodePacket( decoder_t *p_dec, ogg_packet *p_oggpacket )
490 {
491     decoder_sys_t *p_sys = p_dec->p_sys;
492     int           i_samples;
493
494     INTERLEAVE_TYPE **pp_pcm;
495
496     if( p_oggpacket->bytes &&
497         vorbis_synthesis( &p_sys->vb, p_oggpacket ) == 0 )
498         vorbis_synthesis_blockin( &p_sys->vd, &p_sys->vb );
499
500     /* **pp_pcm is a multichannel float vector. In stereo, for
501      * example, pp_pcm[0] is left, and pp_pcm[1] is right. i_samples is
502      * the size of each channel. Convert the float values
503      * (-1.<=range<=1.) to whatever PCM format and write it out */
504
505     if( ( i_samples = vorbis_synthesis_pcmout( &p_sys->vd, &pp_pcm ) ) > 0 )
506     {
507
508         block_t *p_aout_buffer;
509
510         p_aout_buffer =
511             decoder_NewAudioBuffer( p_dec, i_samples );
512
513         if( p_aout_buffer == NULL ) return NULL;
514
515         /* Interleave the samples */
516         Interleave( (INTERLEAVE_TYPE*)p_aout_buffer->p_buffer,
517                     (const INTERLEAVE_TYPE**)pp_pcm, p_sys->vi.channels, i_samples,
518                     p_sys->pi_chan_table);
519
520         /* Tell libvorbis how many samples we actually consumed */
521         vorbis_synthesis_read( &p_sys->vd, i_samples );
522
523         /* Date management */
524         p_aout_buffer->i_pts = date_Get( &p_sys->end_date );
525         p_aout_buffer->i_length = date_Increment( &p_sys->end_date,
526                                            i_samples ) - p_aout_buffer->i_pts;
527         return p_aout_buffer;
528     }
529     else
530     {
531         return NULL;
532     }
533 }
534
535 /*****************************************************************************
536  * SendPacket: send an ogg dated packet to the stream output.
537  *****************************************************************************/
538 static block_t *SendPacket( decoder_t *p_dec, ogg_packet *p_oggpacket,
539                             block_t *p_block )
540 {
541     decoder_sys_t *p_sys = p_dec->p_sys;
542     int i_block_size, i_samples;
543
544     i_block_size = vorbis_packet_blocksize( &p_sys->vi, p_oggpacket );
545     if( i_block_size < 0 ) i_block_size = 0; /* non audio packet */
546     i_samples = ( p_sys->i_last_block_size + i_block_size ) >> 2;
547     p_sys->i_last_block_size = i_block_size;
548
549     /* Date management */
550     p_block->i_dts = p_block->i_pts = date_Get( &p_sys->end_date );
551
552     p_block->i_length = date_Increment( &p_sys->end_date, i_samples ) - p_block->i_pts;
553
554     return p_block;
555 }
556
557 /*****************************************************************************
558  * ParseVorbisComments
559  *****************************************************************************/
560 static void ParseVorbisComments( decoder_t *p_dec )
561 {
562     char *psz_name, *psz_value, *psz_comment;
563     int i = 0;
564
565     while( i < p_dec->p_sys->vc.comments )
566     {
567         psz_comment = strdup( p_dec->p_sys->vc.user_comments[i] );
568         if( !psz_comment )
569             break;
570         psz_name = psz_comment;
571         psz_value = strchr( psz_comment, '=' );
572         /* Don't add empty values */
573         if( psz_value && psz_value[1] != '\0')
574         {
575             *psz_value = '\0';
576             psz_value++;
577
578             if( !strcasecmp( psz_name, "REPLAYGAIN_TRACK_GAIN" ) ||
579                 !strcasecmp( psz_name, "RG_RADIO" ) )
580             {
581                 audio_replay_gain_t *r = &p_dec->fmt_out.audio_replay_gain;
582
583                 r->pb_gain[AUDIO_REPLAY_GAIN_TRACK] = true;
584                 r->pf_gain[AUDIO_REPLAY_GAIN_TRACK] = us_atof( psz_value );
585             }
586             else if( !strcasecmp( psz_name, "REPLAYGAIN_TRACK_PEAK" ) ||
587                      !strcasecmp( psz_name, "RG_PEAK" ) )
588             {
589                 audio_replay_gain_t *r = &p_dec->fmt_out.audio_replay_gain;
590
591                 r->pb_peak[AUDIO_REPLAY_GAIN_TRACK] = true;
592                 r->pf_peak[AUDIO_REPLAY_GAIN_TRACK] = us_atof( psz_value );
593             }
594             else if( !strcasecmp( psz_name, "REPLAYGAIN_ALBUM_GAIN" ) ||
595                      !strcasecmp( psz_name, "RG_AUDIOPHILE" ) )
596             {
597                 audio_replay_gain_t *r = &p_dec->fmt_out.audio_replay_gain;
598
599                 r->pb_gain[AUDIO_REPLAY_GAIN_ALBUM] = true;
600                 r->pf_gain[AUDIO_REPLAY_GAIN_ALBUM] = us_atof( psz_value );
601             }
602             else if( !strcasecmp( psz_name, "REPLAYGAIN_ALBUM_PEAK" ) )
603             {
604                 audio_replay_gain_t *r = &p_dec->fmt_out.audio_replay_gain;
605
606                 r->pb_peak[AUDIO_REPLAY_GAIN_ALBUM] = true;
607                 r->pf_peak[AUDIO_REPLAY_GAIN_ALBUM] = us_atof( psz_value );
608             }
609             else if( !strcasecmp( psz_name, "METADATA_BLOCK_PICTURE" ) )
610             { /* Do nothing, for now */ }
611             else
612             {
613                 if( !p_dec->p_description )
614                     p_dec->p_description = vlc_meta_New();
615                 if( p_dec->p_description )
616                     vlc_meta_AddExtra( p_dec->p_description, psz_name, psz_value );
617             }
618
619         }
620         free( psz_comment );
621         i++;
622     }
623 }
624
625 /*****************************************************************************
626  *
627  *****************************************************************************/
628 static void ConfigureChannelOrder(uint8_t *pi_chan_table, int i_channels,
629                                   uint32_t i_channel_mask, bool b_decode)
630 {
631     const uint32_t *pi_channels_in;
632     switch( i_channels )
633     {
634         case 8:
635             pi_channels_in = pi_8channels_in;
636             break;
637         case 7:
638             pi_channels_in = pi_7channels_in;
639             break;
640         case 6:
641         case 5:
642             pi_channels_in = pi_6channels_in;
643             break;
644         case 4:
645             pi_channels_in = pi_4channels_in;
646             break;
647         case 3:
648             pi_channels_in = pi_3channels_in;
649             break;
650         default:
651             {
652                 int i;
653                 for( i = 0; i< i_channels; ++i )
654                 {
655                     pi_chan_table[i] = i;
656                 }
657                 return;
658             }
659     }
660
661     if( b_decode )
662         aout_CheckChannelReorder( pi_channels_in, NULL,
663                                   i_channel_mask, pi_chan_table );
664     else
665         aout_CheckChannelReorder( NULL, pi_channels_in,
666                                   i_channel_mask, pi_chan_table );
667 }
668
669 /*****************************************************************************
670  * CloseDecoder: vorbis decoder destruction
671  *****************************************************************************/
672 static void CloseDecoder( vlc_object_t *p_this )
673 {
674     decoder_t *p_dec = (decoder_t *)p_this;
675     decoder_sys_t *p_sys = p_dec->p_sys;
676
677     if( !p_sys->b_packetizer && p_sys->b_has_headers )
678     {
679         vorbis_block_clear( &p_sys->vb );
680         vorbis_dsp_clear( &p_sys->vd );
681     }
682
683     vorbis_comment_clear( &p_sys->vc );
684     vorbis_info_clear( &p_sys->vi );  /* must be called last */
685
686     free( p_sys );
687 }
688
689 #ifdef HAVE_VORBIS_ENCODER
690 /*****************************************************************************
691  * encoder_sys_t : vorbis encoder descriptor
692  *****************************************************************************/
693 struct encoder_sys_t
694 {
695     /*
696      * Vorbis properties
697      */
698     vorbis_info      vi; /* struct that stores all the static vorbis bitstream
699                             settings */
700     vorbis_comment   vc; /* struct that stores all the bitstream user
701                           * comments */
702     vorbis_dsp_state vd; /* central working state for the packet->PCM
703                           * decoder */
704     vorbis_block     vb; /* local working space for packet->PCM decode */
705
706     int i_last_block_size;
707     int i_samples_delay;
708     unsigned int i_channels;
709
710     /*
711     ** Channel reordering
712     */
713     uint8_t pi_chan_table[AOUT_CHAN_MAX];
714
715 };
716
717 /*****************************************************************************
718  * OpenEncoder: probe the encoder and return score
719  *****************************************************************************/
720 static int OpenEncoder( vlc_object_t *p_this )
721 {
722     encoder_t *p_enc = (encoder_t *)p_this;
723     encoder_sys_t *p_sys;
724     int i_quality, i_min_bitrate, i_max_bitrate;
725     ogg_packet header[3];
726
727     if( p_enc->fmt_out.i_codec != VLC_CODEC_VORBIS &&
728         !p_enc->b_force )
729     {
730         return VLC_EGENERIC;
731     }
732
733     /* Allocate the memory needed to store the decoder's structure */
734     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
735         return VLC_ENOMEM;
736     p_enc->p_sys = p_sys;
737
738     p_enc->pf_encode_audio = Encode;
739     p_enc->fmt_in.i_codec  = VLC_CODEC_FL32;
740     p_enc->fmt_out.i_codec = VLC_CODEC_VORBIS;
741
742     config_ChainParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
743
744     i_quality = var_GetInteger( p_enc, ENC_CFG_PREFIX "quality" );
745     if( i_quality > 10 ) i_quality = 10;
746     if( i_quality < 0 ) i_quality = 0;
747
748     if( var_GetBool( p_enc, ENC_CFG_PREFIX "cbr" ) ) i_quality = 0;
749     i_max_bitrate = var_GetInteger( p_enc, ENC_CFG_PREFIX "max-bitrate" );
750     i_min_bitrate = var_GetInteger( p_enc, ENC_CFG_PREFIX "min-bitrate" );
751
752     /* Initialize vorbis encoder */
753     vorbis_info_init( &p_sys->vi );
754
755     if( i_quality > 0 )
756     {
757         /* VBR mode */
758         if( vorbis_encode_setup_vbr( &p_sys->vi,
759               p_enc->fmt_in.audio.i_channels, p_enc->fmt_in.audio.i_rate,
760               i_quality * 0.1 ) )
761         {
762             vorbis_info_clear( &p_sys->vi );
763             free( p_enc->p_sys );
764             msg_Err( p_enc, "VBR mode initialisation failed" );
765             return VLC_EGENERIC;
766         }
767
768         /* Do we have optional hard quality restrictions? */
769         if( i_max_bitrate > 0 || i_min_bitrate > 0 )
770         {
771             struct ovectl_ratemanage_arg ai;
772             vorbis_encode_ctl( &p_sys->vi, OV_ECTL_RATEMANAGE_GET, &ai );
773
774             ai.bitrate_hard_min = i_min_bitrate;
775             ai.bitrate_hard_max = i_max_bitrate;
776             ai.management_active = 1;
777
778             vorbis_encode_ctl( &p_sys->vi, OV_ECTL_RATEMANAGE_SET, &ai );
779
780         }
781         else
782         {
783             /* Turn off management entirely */
784             vorbis_encode_ctl( &p_sys->vi, OV_ECTL_RATEMANAGE_SET, NULL );
785         }
786     }
787     else
788     {
789         if( vorbis_encode_setup_managed( &p_sys->vi,
790               p_enc->fmt_in.audio.i_channels, p_enc->fmt_in.audio.i_rate,
791               i_min_bitrate > 0 ? i_min_bitrate * 1000: -1,
792               p_enc->fmt_out.i_bitrate,
793               i_max_bitrate > 0 ? i_max_bitrate * 1000: -1 ) )
794           {
795               vorbis_info_clear( &p_sys->vi );
796               msg_Err( p_enc, "CBR mode initialisation failed" );
797               free( p_enc->p_sys );
798               return VLC_EGENERIC;
799           }
800     }
801
802     vorbis_encode_setup_init( &p_sys->vi );
803
804     /* Add a comment */
805     vorbis_comment_init( &p_sys->vc);
806     vorbis_comment_add_tag( &p_sys->vc, "ENCODER", "VLC media player");
807
808     /* Set up the analysis state and auxiliary encoding storage */
809     vorbis_analysis_init( &p_sys->vd, &p_sys->vi );
810     vorbis_block_init( &p_sys->vd, &p_sys->vb );
811
812     /* Create and store headers */
813     vorbis_analysis_headerout( &p_sys->vd, &p_sys->vc,
814                                &header[0], &header[1], &header[2]);
815     for( int i = 0; i < 3; i++ )
816     {
817         if( xiph_AppendHeaders( &p_enc->fmt_out.i_extra, &p_enc->fmt_out.p_extra,
818                                 header[i].bytes, header[i].packet ) )
819         {
820             p_enc->fmt_out.i_extra = 0;
821             p_enc->fmt_out.p_extra = NULL;
822         }
823     }
824
825     p_sys->i_channels = p_enc->fmt_in.audio.i_channels;
826     p_sys->i_last_block_size = 0;
827     p_sys->i_samples_delay = 0;
828
829     ConfigureChannelOrder(p_sys->pi_chan_table, p_sys->vi.channels,
830             p_enc->fmt_in.audio.i_physical_channels, true);
831
832     return VLC_SUCCESS;
833 }
834
835 /****************************************************************************
836  * Encode: the whole thing
837  ****************************************************************************
838  * This function spits out ogg packets.
839  ****************************************************************************/
840 static block_t *Encode( encoder_t *p_enc, block_t *p_aout_buf )
841 {
842     encoder_sys_t *p_sys = p_enc->p_sys;
843     ogg_packet oggpacket;
844     block_t *p_block, *p_chain = NULL;
845     float **buffer;
846
847     /* FIXME: flush buffers in here */
848     if( unlikely( !p_aout_buf ) ) return NULL;
849
850     mtime_t i_pts = p_aout_buf->i_pts -
851                 (mtime_t)1000000 * (mtime_t)p_sys->i_samples_delay /
852                 (mtime_t)p_enc->fmt_in.audio.i_rate;
853
854     p_sys->i_samples_delay += p_aout_buf->i_nb_samples;
855
856     buffer = vorbis_analysis_buffer( &p_sys->vd, p_aout_buf->i_nb_samples );
857
858     /* convert samples to float and uninterleave */
859     for( unsigned int i = 0; i < p_sys->i_channels; i++ )
860     {
861         for( unsigned int j = 0 ; j < p_aout_buf->i_nb_samples ; j++ )
862         {
863             buffer[i][j]= ((float *)p_aout_buf->p_buffer)
864                                     [j * p_sys->i_channels + p_sys->pi_chan_table[i]];
865         }
866     }
867
868     vorbis_analysis_wrote( &p_sys->vd, p_aout_buf->i_nb_samples );
869
870     while( vorbis_analysis_blockout( &p_sys->vd, &p_sys->vb ) == 1 )
871     {
872         int i_samples;
873
874         vorbis_analysis( &p_sys->vb, NULL );
875         vorbis_bitrate_addblock( &p_sys->vb );
876
877         while( vorbis_bitrate_flushpacket( &p_sys->vd, &oggpacket ) )
878         {
879             int i_block_size;
880             p_block = block_Alloc( oggpacket.bytes );
881             memcpy( p_block->p_buffer, oggpacket.packet, oggpacket.bytes );
882
883             i_block_size = vorbis_packet_blocksize( &p_sys->vi, &oggpacket );
884
885             if( i_block_size < 0 ) i_block_size = 0;
886             i_samples = ( p_sys->i_last_block_size + i_block_size ) >> 2;
887             p_sys->i_last_block_size = i_block_size;
888
889             p_block->i_length = (mtime_t)1000000 *
890                 (mtime_t)i_samples / (mtime_t)p_enc->fmt_in.audio.i_rate;
891
892             p_block->i_dts = p_block->i_pts = i_pts;
893
894             p_sys->i_samples_delay -= i_samples;
895
896             /* Update pts */
897             i_pts += p_block->i_length;
898             block_ChainAppend( &p_chain, p_block );
899         }
900     }
901
902     return p_chain;
903 }
904
905 /*****************************************************************************
906  * CloseEncoder: vorbis encoder destruction
907  *****************************************************************************/
908 static void CloseEncoder( vlc_object_t *p_this )
909 {
910     encoder_t *p_enc = (encoder_t *)p_this;
911     encoder_sys_t *p_sys = p_enc->p_sys;
912
913     vorbis_block_clear( &p_sys->vb );
914     vorbis_dsp_clear( &p_sys->vd );
915     vorbis_comment_clear( &p_sys->vc );
916     vorbis_info_clear( &p_sys->vi );  /* must be called last */
917
918     free( p_sys );
919 }
920
921 #endif /* HAVE_VORBIS_ENCODER */