vorbis.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:32k
源码类别:

midi

开发平台:

Unix_Linux

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