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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * speex.c: speex decoder/packetizer/encoder module making use of libspeex.
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2008 the VideoLAN team
  5.  * $Id: af1ea6bd1ba4f231dea96c17adf299f99de01db9 $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_input.h>
  32. #include <vlc_codec.h>
  33. #include <vlc_aout.h>
  34. #include <ogg/ogg.h>
  35. #include <speex/speex.h>
  36. #include <speex/speex_header.h>
  37. #include <speex/speex_stereo.h>
  38. #include <speex/speex_callbacks.h>
  39. #include <assert.h>
  40. /*****************************************************************************
  41.  * Module descriptor
  42.  *****************************************************************************/
  43. static int  OpenDecoder   ( vlc_object_t * );
  44. static int  OpenPacketizer( vlc_object_t * );
  45. static void CloseDecoder  ( vlc_object_t * );
  46. static int OpenEncoder   ( vlc_object_t * );
  47. static void CloseEncoder ( vlc_object_t * );
  48. #define ENC_CFG_PREFIX "sout-speex-"
  49. #define ENC_MODE_TEXT N_("Mode" )
  50. #define ENC_MODE_LONGTEXT N_( 
  51.     "Enforce the mode of the encoder." )
  52. #define ENC_QUALITY_TEXT N_("Encoding quality")
  53. #define ENC_QUALITY_LONGTEXT N_( 
  54.     "Enforce a quality between 0 (low) and 10 (high)." )
  55. #define ENC_COMPLEXITY_TEXT N_("Encoding complexity" )
  56. #define ENC_COMPLEXITY_LONGTEXT N_( 
  57.     "Enforce the complexity of the encoder." )
  58. #define ENC_MAXBITRATE_TEXT N_( "Maximal bitrate" )
  59. #define ENC_MAXBITRATE_LONGTEXT N_( 
  60.     "Enforce the maximal VBR bitrate" )
  61. #define ENC_CBR_TEXT N_( "CBR encoding" )
  62. #define ENC_CBR_LONGTEXT N_( 
  63.     "Enforce a constant bitrate encoding (CBR) instead of default " 
  64.     "variable bitrate encoding (VBR)." )
  65. #define ENC_VAD_TEXT N_( "Voice activity detection" )
  66. #define ENC_VAD_LONGTEXT N_( 
  67.     "Enable voice activity detection (VAD). It is automatically " 
  68.     "activated in VBR mode." )
  69. #define ENC_DTX_TEXT N_( "Discontinuous Transmission" )
  70. #define ENC_DTX_LONGTEXT N_( 
  71.     "Enable discontinuous transmission (DTX)." )
  72. static const int pi_enc_mode_values[] = { 0, 1, 2 };
  73. static const char * const ppsz_enc_mode_descriptions[] = {
  74.     N_("Narrow-band (8kHz)"), N_("Wide-band (16kHz)"), N_("Ultra-wideband (32kHz)"), NULL
  75. };
  76. vlc_module_begin ()
  77.     set_category( CAT_INPUT )
  78.     set_subcategory( SUBCAT_INPUT_ACODEC )
  79.     set_description( N_("Speex audio decoder") )
  80.     set_capability( "decoder", 100 )
  81.     set_shortname( N_("Speex") )
  82.     set_callbacks( OpenDecoder, CloseDecoder )
  83.     add_submodule ()
  84.     set_description( N_("Speex audio packetizer") )
  85.     set_capability( "packetizer", 100 )
  86.     set_callbacks( OpenPacketizer, CloseDecoder )
  87.     add_submodule ()
  88.     set_description( N_("Speex audio encoder") )
  89.     set_capability( "encoder", 100 )
  90.     set_callbacks( OpenEncoder, CloseEncoder )
  91.     add_integer( ENC_CFG_PREFIX "mode", 0, NULL, ENC_MODE_TEXT,
  92.                  ENC_MODE_LONGTEXT, false )
  93.         change_integer_list( pi_enc_mode_values, ppsz_enc_mode_descriptions, NULL )
  94.     add_integer( ENC_CFG_PREFIX "complexity", 3, NULL, ENC_COMPLEXITY_TEXT,
  95.                  ENC_COMPLEXITY_LONGTEXT, false )
  96.         change_integer_range( 1, 10 )
  97.     add_bool( ENC_CFG_PREFIX "cbr", false, NULL, ENC_CBR_TEXT,
  98.                  ENC_CBR_LONGTEXT, false )
  99.     add_float( ENC_CFG_PREFIX "quality", 8.0, NULL, ENC_QUALITY_TEXT,
  100.                ENC_QUALITY_LONGTEXT, false )
  101.         change_float_range( 0.0, 10.0 )
  102.     add_integer( ENC_CFG_PREFIX "max-bitrate", 0, NULL, ENC_MAXBITRATE_TEXT,
  103.                  ENC_MAXBITRATE_LONGTEXT, false )
  104.     add_bool( ENC_CFG_PREFIX "vad", true, NULL, ENC_VAD_TEXT,
  105.                  ENC_VAD_LONGTEXT, false )
  106.     add_bool( ENC_CFG_PREFIX "dtx", false, NULL, ENC_DTX_TEXT,
  107.                  ENC_DTX_LONGTEXT, false )
  108.     /* TODO agc, noise suppression, */
  109. vlc_module_end ()
  110. static const char *const ppsz_enc_options[] = {
  111.     "mode", "complexity", "cbr", "quality", "max-bitrate", "vad", "dtx", NULL
  112. };
  113. /*****************************************************************************
  114.  * decoder_sys_t : speex decoder descriptor
  115.  *****************************************************************************/
  116. struct decoder_sys_t
  117. {
  118.     /* Module mode */
  119.     bool b_packetizer;
  120.     /*
  121.      * Input properties
  122.      */
  123.     int i_headers;
  124.     int i_frame_in_packet;
  125.     /*
  126.      * Speex properties
  127.      */
  128.     SpeexBits bits;
  129.     SpeexHeader *p_header;
  130.     SpeexStereoState stereo;
  131.     void *p_state;
  132.     unsigned int rtp_rate;
  133.     /*
  134.      * Common properties
  135.      */
  136.     audio_date_t end_date;
  137. };
  138. static const int pi_channels_maps[6] =
  139. {
  140.     0,
  141.     AOUT_CHAN_CENTER,   AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
  142.     AOUT_CHAN_CENTER | AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
  143.     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT
  144.      | AOUT_CHAN_REARRIGHT,
  145.     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  146.      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
  147. };
  148. /****************************************************************************
  149.  * Local prototypes
  150.  ****************************************************************************/
  151. static void *DecodeBlock  ( decoder_t *, block_t ** );
  152. static aout_buffer_t *DecodeRtpSpeexPacket( decoder_t *, block_t **);
  153. static int  ProcessHeaders( decoder_t * );
  154. static int  ProcessInitialHeader ( decoder_t *, ogg_packet * );
  155. static void *ProcessPacket( decoder_t *, ogg_packet *, block_t ** );
  156. static aout_buffer_t *DecodePacket( decoder_t *, ogg_packet * );
  157. static block_t *SendPacket( decoder_t *, block_t * );
  158. static void ParseSpeexComments( decoder_t *, ogg_packet * );
  159. static block_t *Encode   ( encoder_t *, aout_buffer_t * );
  160. /*****************************************************************************
  161.  * OpenDecoder: probe the decoder and return score
  162.  *****************************************************************************/
  163. static int OpenDecoder( vlc_object_t *p_this )
  164. {
  165.     decoder_t *p_dec = (decoder_t*)p_this;
  166.     decoder_sys_t *p_sys = p_dec->p_sys;
  167.     if( p_dec->fmt_in.i_codec != VLC_FOURCC('s','p','x',' ') 
  168.         && p_dec->fmt_in.i_codec != VLC_FOURCC('s', 'p', 'x', 'r') )
  169.     {
  170.         return VLC_EGENERIC;
  171.     }
  172.     /* Allocate the memory needed to store the decoder's structure */
  173.     if( ( p_dec->p_sys = p_sys =
  174.           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
  175.         return VLC_ENOMEM;
  176.     p_dec->p_sys->bits.buf_size = 0;
  177.     p_dec->p_sys->b_packetizer = false;
  178.     p_dec->p_sys->rtp_rate = p_dec->fmt_in.audio.i_rate;
  179.     aout_DateSet( &p_sys->end_date, 0 );
  180.     /* Set output properties */
  181.     p_dec->fmt_out.i_cat = AUDIO_ES;
  182.     p_dec->fmt_out.i_codec = AOUT_FMT_S16_NE;
  183.     /*
  184.       Set callbacks
  185.       If the codec is spxr then this decoder is 
  186.       being invoked on a Speex stream arriving via RTP. 
  187.       A special decoder callback is used.
  188.     */
  189.     if (p_dec->fmt_in.i_codec == VLC_FOURCC('s', 'p', 'x', 'r'))
  190.     {
  191.         msg_Dbg( p_dec, "Using RTP version of Speex decoder @ rate %d.", 
  192.     p_dec->fmt_in.audio.i_rate );
  193.         p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
  194.             DecodeRtpSpeexPacket;
  195.     }
  196.     else
  197.     {
  198.         p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
  199.             DecodeBlock;
  200.     }
  201.     p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
  202.         DecodeBlock;
  203.     p_sys->i_headers = 0;
  204.     p_sys->p_state = NULL;
  205.     p_sys->p_header = NULL;
  206.     p_sys->i_frame_in_packet = 0;
  207.     return VLC_SUCCESS;
  208. }
  209. static int OpenPacketizer( vlc_object_t *p_this )
  210. {
  211.     decoder_t *p_dec = (decoder_t*)p_this;
  212.     int i_ret = OpenDecoder( p_this );
  213.     if( i_ret == VLC_SUCCESS )
  214.     {
  215.         p_dec->p_sys->b_packetizer = true;
  216.         p_dec->fmt_out.i_codec = VLC_FOURCC('s','p','x',' ');
  217.     }
  218.     return i_ret;
  219. }
  220. /****************************************************************************
  221.  * DecodeBlock: the whole thing
  222.  ****************************************************************************
  223.  * This function must be fed with ogg packets.
  224.  ****************************************************************************/
  225. static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  226. {
  227.     decoder_sys_t *p_sys = p_dec->p_sys;
  228.     ogg_packet oggpacket;
  229.     if( !pp_block ) return NULL;
  230.     if( *pp_block )
  231.     {
  232.         /* Block to Ogg packet */
  233.         oggpacket.packet = (*pp_block)->p_buffer;
  234.         oggpacket.bytes = (*pp_block)->i_buffer;
  235.     }
  236.     else
  237.     {
  238.         if( p_sys->b_packetizer ) return NULL;
  239.         /* Block to Ogg packet */
  240.         oggpacket.packet = NULL;
  241.         oggpacket.bytes = 0;
  242.     }
  243.     oggpacket.granulepos = -1;
  244.     oggpacket.b_o_s = 0;
  245.     oggpacket.e_o_s = 0;
  246.     oggpacket.packetno = 0;
  247.     /* Check for headers */
  248.     if( p_sys->i_headers == 0 && p_dec->fmt_in.i_extra )
  249.     {
  250.         p_sys->i_headers = 2;
  251.     }
  252.     else if( oggpacket.bytes && p_sys->i_headers < 2 )
  253.     {
  254.         uint8_t *p_extra;
  255.         p_dec->fmt_in.p_extra =
  256.             realloc( p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra +
  257.                      oggpacket.bytes + 2 );
  258.         p_extra = ((uint8_t *)p_dec->fmt_in.p_extra) + p_dec->fmt_in.i_extra;
  259.         *(p_extra++) = oggpacket.bytes >> 8;
  260.         *(p_extra++) = oggpacket.bytes & 0xFF;
  261.         memcpy( p_extra, oggpacket.packet, oggpacket.bytes );
  262.         p_dec->fmt_in.i_extra += oggpacket.bytes + 2;
  263.         block_Release( *pp_block );
  264.         p_sys->i_headers++;
  265.         return NULL;
  266.     }
  267.     if( p_sys->i_headers == 2 )
  268.     {
  269.         if( ProcessHeaders( p_dec ) != VLC_SUCCESS )
  270.         {
  271.             p_sys->i_headers = 0;
  272.             p_dec->fmt_in.i_extra = 0;
  273.             block_Release( *pp_block );
  274.             return NULL;
  275.         }
  276.         else p_sys->i_headers++;
  277.     }
  278.     return ProcessPacket( p_dec, &oggpacket, pp_block );
  279. }
  280. /*****************************************************************************
  281.  * ProcessHeaders: process Speex headers.
  282.  *****************************************************************************/
  283. static int ProcessHeaders( decoder_t *p_dec )
  284. {
  285.     decoder_sys_t *p_sys = p_dec->p_sys;
  286.     ogg_packet oggpacket;
  287.     uint8_t *p_extra;
  288.     int i_extra;
  289.     if( !p_dec->fmt_in.i_extra ) return VLC_EGENERIC;
  290.     oggpacket.granulepos = -1;
  291.     oggpacket.b_o_s = 1; /* yes this actually is a b_o_s packet :) */
  292.     oggpacket.e_o_s = 0;
  293.     oggpacket.packetno = 0;
  294.     p_extra = p_dec->fmt_in.p_extra;
  295.     i_extra = p_dec->fmt_in.i_extra;
  296.     /* Take care of the initial Vorbis header */
  297.     oggpacket.bytes = *(p_extra++) << 8;
  298.     oggpacket.bytes |= (*(p_extra++) & 0xFF);
  299.     oggpacket.packet = p_extra;
  300.     p_extra += oggpacket.bytes;
  301.     i_extra -= (oggpacket.bytes + 2);
  302.     if( i_extra < 0 )
  303.     {
  304.         msg_Err( p_dec, "header data corrupted");
  305.         return VLC_EGENERIC;
  306.     }
  307.     /* Take care of the initial Speex header */
  308.     if( ProcessInitialHeader( p_dec, &oggpacket ) != VLC_SUCCESS )
  309.     {
  310.         msg_Err( p_dec, "initial Speex header is corrupted" );
  311.         return VLC_EGENERIC;
  312.     }
  313.     /* The next packet in order is the comments header */
  314.     oggpacket.b_o_s = 0;
  315.     oggpacket.bytes = *(p_extra++) << 8;
  316.     oggpacket.bytes |= (*(p_extra++) & 0xFF);
  317.     oggpacket.packet = p_extra;
  318.     p_extra += oggpacket.bytes;
  319.     i_extra -= (oggpacket.bytes + 2);
  320.     if( i_extra < 0 )
  321.     {
  322.         msg_Err( p_dec, "header data corrupted");
  323.         return VLC_EGENERIC;
  324.     }
  325.     ParseSpeexComments( p_dec, &oggpacket );
  326.     if( p_sys->b_packetizer )
  327.     {
  328.         p_dec->fmt_out.i_extra = p_dec->fmt_in.i_extra;
  329.         p_dec->fmt_out.p_extra =
  330.             realloc( p_dec->fmt_out.p_extra, p_dec->fmt_out.i_extra );
  331.         memcpy( p_dec->fmt_out.p_extra,
  332.                 p_dec->fmt_in.p_extra, p_dec->fmt_out.i_extra );
  333.     }
  334.     return VLC_SUCCESS;
  335. }
  336. /*****************************************************************************
  337.  * ProcessInitialHeader: processes the inital Speex header packet.
  338.  *****************************************************************************/
  339. static int ProcessInitialHeader( decoder_t *p_dec, ogg_packet *p_oggpacket )
  340. {
  341.     decoder_sys_t *p_sys = p_dec->p_sys;
  342.     void *p_state;
  343.     SpeexHeader *p_header;
  344.     const SpeexMode *p_mode;
  345.     SpeexCallback callback;
  346.     p_sys->p_header = p_header =
  347.         speex_packet_to_header( (char *)p_oggpacket->packet,
  348.                                 p_oggpacket->bytes );
  349.     if( !p_header )
  350.     {
  351.         msg_Err( p_dec, "cannot read Speex header" );
  352.         return VLC_EGENERIC;
  353.     }
  354.     if( p_header->mode >= SPEEX_NB_MODES || p_header->mode < 0 )
  355.     {
  356.         msg_Err( p_dec, "mode number %d does not (yet/any longer) exist in "
  357.                  "this version of libspeex.", p_header->mode );
  358.         return VLC_EGENERIC;
  359.     }
  360.     p_mode = speex_mode_list[p_header->mode];
  361.     if( p_mode == NULL )
  362.         return VLC_EGENERIC;
  363.     if( p_header->speex_version_id > 1 )
  364.     {
  365.         msg_Err( p_dec, "this file was encoded with Speex bit-stream "
  366.                  "version %d which is not supported by this decoder.",
  367.                  p_header->speex_version_id );
  368.         return VLC_EGENERIC;
  369.     }
  370.     if( p_mode->bitstream_version < p_header->mode_bitstream_version )
  371.     {
  372.         msg_Err( p_dec, "file encoded with a newer version of Speex." );
  373.         return VLC_EGENERIC;
  374.     }
  375.     if( p_mode->bitstream_version > p_header->mode_bitstream_version )
  376.     {
  377.         msg_Err( p_dec, "file encoded with an older version of Speex." );
  378.         return VLC_EGENERIC;
  379.     }
  380.     msg_Dbg( p_dec, "Speex %d Hz audio using %s mode %s%s",
  381.              p_header->rate, p_mode->modeName,
  382.              ( p_header->nb_channels == 1 ) ? " (mono" : " (stereo",
  383.              p_header->vbr ? ", VBR)" : ")" );
  384.     /* Take care of speex decoder init */
  385.     speex_bits_init( &p_sys->bits );
  386.     p_sys->p_state = p_state = speex_decoder_init( p_mode );
  387.     if( !p_state )
  388.     {
  389.         msg_Err( p_dec, "decoder initialization failed" );
  390.         return VLC_EGENERIC;
  391.     }
  392.     if( p_header->nb_channels == 2 )
  393.     {
  394.         SpeexStereoState stereo = SPEEX_STEREO_STATE_INIT;
  395.         p_sys->stereo = stereo;
  396.         callback.callback_id = SPEEX_INBAND_STEREO;
  397.         callback.func = speex_std_stereo_request_handler;
  398.         callback.data = &p_sys->stereo;
  399.         speex_decoder_ctl( p_state, SPEEX_SET_HANDLER, &callback );
  400.     }
  401.     if( p_header->nb_channels <= 0 ||
  402.         p_header->nb_channels > 5 )
  403.     {
  404.         msg_Err( p_dec, "invalid number of channels (not between 1 and 5): %i",
  405.                  p_header->nb_channels );
  406.         return VLC_EGENERIC;
  407.     }
  408.     /* Setup the format */
  409.     p_dec->fmt_out.audio.i_physical_channels =
  410.         p_dec->fmt_out.audio.i_original_channels =
  411.             pi_channels_maps[p_header->nb_channels];
  412.     p_dec->fmt_out.audio.i_channels = p_header->nb_channels;
  413.     p_dec->fmt_out.audio.i_rate = p_header->rate;
  414.     aout_DateInit( &p_sys->end_date, p_header->rate );
  415.     return VLC_SUCCESS;
  416. }
  417. /*****************************************************************************
  418.  * ProcessPacket: processes a Speex packet.
  419.  *****************************************************************************/
  420. static void *ProcessPacket( decoder_t *p_dec, ogg_packet *p_oggpacket,
  421.                             block_t **pp_block )
  422. {
  423.     decoder_sys_t *p_sys = p_dec->p_sys;
  424.     block_t *p_block = *pp_block;
  425.     /* Date management */
  426.     if( p_block && p_block->i_pts > 0 && 
  427.         p_block->i_pts != aout_DateGet( &p_sys->end_date ) )
  428.     {
  429.         aout_DateSet( &p_sys->end_date, p_block->i_pts );
  430.     }
  431.     if( !aout_DateGet( &p_sys->end_date ) )
  432.     {
  433.         /* We've just started the stream, wait for the first PTS. */
  434.         if( p_block ) block_Release( p_block );
  435.         return NULL;
  436.     }
  437.     *pp_block = NULL; /* To avoid being fed the same packet again */
  438.     if( p_sys->b_packetizer )
  439.     {
  440. if ( p_sys->p_header->frames_per_packet > 1 )
  441. {
  442.     short *p_frame_holder = NULL;
  443.     int i_bits_before = 0, i_bits_after = 0, i_bytes_in_speex_frame = 0,
  444.         i_pcm_output_size = 0, i_bits_in_speex_frame = 0;
  445.     block_t *p_new_block = NULL;
  446.     i_pcm_output_size = p_sys->p_header->frame_size;
  447.     p_frame_holder = (short*)malloc( sizeof(short)*i_pcm_output_size );
  448.             speex_bits_read_from( &p_sys->bits, (char*)p_oggpacket->packet,
  449.         p_oggpacket->bytes);
  450.             i_bits_before = speex_bits_remaining( &p_sys->bits );
  451.     speex_decode_int(p_sys->p_state, &p_sys->bits, p_frame_holder);
  452.     i_bits_after = speex_bits_remaining( &p_sys->bits );
  453.             i_bits_in_speex_frame = i_bits_before - i_bits_after;
  454.     i_bytes_in_speex_frame = ( i_bits_in_speex_frame + 
  455.         (8 - (i_bits_in_speex_frame % 8)) )
  456.                 / 8;
  457.             p_new_block = block_New( p_dec, i_bytes_in_speex_frame );
  458.     memset( p_new_block->p_buffer, 0xff, i_bytes_in_speex_frame );
  459.     /*
  460.      * Copy the first frame in this packet to a new packet.
  461.      */
  462.     speex_bits_rewind( &p_sys->bits );
  463.     speex_bits_write( &p_sys->bits, 
  464.         (char*)p_new_block->p_buffer, 
  465.     (int)i_bytes_in_speex_frame );
  466.     /*
  467.      * Move the remaining part of the original packet (subsequent
  468.      * frames, if there are any) into the beginning 
  469.      * of the original packet so
  470.      * they are preserved following the realloc. 
  471.      * Note: Any bits that
  472.      * remain in the initial packet
  473.      * are "filler" if they do not constitute
  474.      * an entire byte. 
  475.      */
  476.     if ( i_bits_after > 7 )
  477.     {
  478.         /* round-down since we rounded-up earlier (to include
  479.  * the speex terminator code. 
  480.  */
  481.         i_bytes_in_speex_frame--;
  482.         speex_bits_write( &p_sys->bits, 
  483.         (char*)p_block->p_buffer, 
  484.         p_block->i_buffer - i_bytes_in_speex_frame );
  485.             p_block = block_Realloc( p_block, 
  486.             0, 
  487.         p_block->i_buffer-i_bytes_in_speex_frame );
  488.         *pp_block = p_block;
  489.     }
  490.     else
  491.     {
  492.         speex_bits_reset( &p_sys->bits );
  493.     }
  494.     free( p_frame_holder );
  495.     return SendPacket( p_dec, p_new_block);
  496. }
  497. else
  498. {
  499.             return SendPacket( p_dec, p_block );
  500. }
  501.     }
  502.     else
  503.     {
  504.         aout_buffer_t *p_aout_buffer;
  505.         if( p_sys->i_headers >= p_sys->p_header->extra_headers + 2 )
  506.             p_aout_buffer = DecodePacket( p_dec, p_oggpacket );
  507.         else
  508.             p_aout_buffer = NULL; /* Skip headers */
  509.         if( p_block ) block_Release( p_block );
  510.         return p_aout_buffer;
  511.     }
  512. }
  513. static aout_buffer_t *DecodeRtpSpeexPacket( decoder_t *p_dec, block_t **pp_block )
  514. {
  515.     block_t *p_speex_bit_block = *pp_block;
  516.     decoder_sys_t *p_sys = p_dec->p_sys;
  517.     aout_buffer_t *p_aout_buffer;
  518.     int i_decode_ret;
  519.     unsigned int i_speex_frame_size;
  520.     if ( !p_speex_bit_block || p_speex_bit_block->i_pts == 0 ) return NULL;
  521.     /* 
  522.       If the SpeexBits buffer size is 0 (a default value),
  523.       we know that a proper initialization has not yet been done.
  524.     */
  525.     if ( p_sys->bits.buf_size==0 )
  526.     {
  527. p_sys->p_header = (SpeexHeader *)malloc(sizeof(SpeexHeader));
  528. if ( !p_sys->p_header )
  529. {
  530.     msg_Err( p_dec, "Could not allocate a Speex header.");
  531.     return NULL;
  532. }
  533. speex_init_header( p_sys->p_header,p_sys->rtp_rate,1,&speex_nb_mode );
  534.         speex_bits_init( &p_sys->bits );
  535. p_sys->p_state = speex_decoder_init( &speex_nb_mode );
  536. if ( !p_sys->p_state )
  537. {
  538.     msg_Err( p_dec, "Could not allocate a Speex decoder." );
  539.     free( p_sys->p_header );
  540.     return NULL;
  541. }
  542.         /*
  543.   Assume that variable bit rate is enabled. Also assume
  544.   that there is only one frame per packet. 
  545. */
  546. p_sys->p_header->vbr = 1;
  547. p_sys->p_header->frames_per_packet = 1;
  548.         p_dec->fmt_out.audio.i_channels = p_sys->p_header->nb_channels;
  549. p_dec->fmt_out.audio.i_physical_channels = 
  550. p_dec->fmt_out.audio.i_original_channels = 
  551.     pi_channels_maps[p_sys->p_header->nb_channels];
  552.         p_dec->fmt_out.audio.i_rate = p_sys->p_header->rate;
  553.         if ( speex_mode_query( &speex_nb_mode, 
  554.     SPEEX_MODE_FRAME_SIZE, 
  555.     &i_speex_frame_size ) )
  556. {
  557.     msg_Err( p_dec, "Could not determine the frame size." );
  558.     speex_decoder_destroy( p_sys->p_state );
  559.     free( p_sys->p_header );
  560.     return NULL;
  561. }
  562. p_dec->fmt_out.audio.i_bytes_per_frame = i_speex_frame_size;
  563. aout_DateInit(&p_sys->end_date, p_sys->p_header->rate);
  564.     }
  565.     /* 
  566.       If the SpeexBits are initialized but there is 
  567.       still no header, an error must be thrown.
  568.     */
  569.     if ( !p_sys->p_header )
  570.     {
  571.         msg_Err( p_dec, "There is no valid Speex header found." );
  572. return NULL;
  573.     }
  574.     *pp_block = NULL;
  575.     if ( !aout_DateGet( &p_sys->end_date ) )
  576.         aout_DateSet( &p_sys->end_date, p_speex_bit_block->i_dts );
  577.     /*
  578.       Ask for a new audio output buffer and make sure
  579.       we get one. 
  580.     */
  581.     p_aout_buffer = decoder_NewAudioBuffer( p_dec, 
  582.         p_sys->p_header->frame_size );
  583.     if ( !p_aout_buffer || p_aout_buffer->i_nb_bytes == 0 )
  584.     {
  585.         msg_Err(p_dec, "Oops: No new buffer was returned!");
  586. return NULL;
  587.     }
  588.     /*
  589.       Read the Speex payload into the SpeexBits buffer.
  590.     */
  591.     speex_bits_read_from( &p_sys->bits, 
  592.         (char*)p_speex_bit_block->p_buffer, 
  593.         p_speex_bit_block->i_buffer );
  594.     
  595.     /* 
  596.       Decode the input and ensure that no errors 
  597.       were encountered.
  598.     */
  599.     i_decode_ret = speex_decode_int( p_sys->p_state, &p_sys->bits, 
  600.             (int16_t*)p_aout_buffer->p_buffer );
  601.     if ( i_decode_ret < 0 )
  602.     {
  603.         msg_Err( p_dec, "Decoding failed. Perhaps we have a bad stream?" );
  604. return NULL;
  605.     }
  606.     /* 
  607.       Handle date management on the audio output buffer. 
  608.     */
  609.     p_aout_buffer->start_date = aout_DateGet( &p_sys->end_date );
  610.     p_aout_buffer->end_date = aout_DateIncrement( &p_sys->end_date, 
  611.         p_sys->p_header->frame_size );
  612.     
  613.     
  614.     p_sys->i_frame_in_packet++;
  615.     block_Release( p_speex_bit_block );
  616.     return p_aout_buffer;
  617. }
  618. /*****************************************************************************
  619.  * DecodePacket: decodes a Speex packet.
  620.  *****************************************************************************/
  621. static aout_buffer_t *DecodePacket( decoder_t *p_dec, ogg_packet *p_oggpacket )
  622. {
  623.     decoder_sys_t *p_sys = p_dec->p_sys;
  624.     if( p_oggpacket->bytes )
  625.     {
  626.         /* Copy Ogg packet to Speex bitstream */
  627.         speex_bits_read_from( &p_sys->bits, (char *)p_oggpacket->packet,
  628.                               p_oggpacket->bytes );
  629.         p_sys->i_frame_in_packet = 0;
  630.     }
  631.     /* Decode one frame at a time */
  632.     if( p_sys->i_frame_in_packet < p_sys->p_header->frames_per_packet )
  633.     {
  634.         aout_buffer_t *p_aout_buffer;
  635.         if( p_sys->p_header->frame_size == 0 )
  636.             return NULL;
  637.         p_aout_buffer =
  638.             decoder_NewAudioBuffer( p_dec, p_sys->p_header->frame_size );
  639.         if( !p_aout_buffer )
  640.         {
  641.             return NULL;
  642.         }
  643.         switch( speex_decode_int( p_sys->p_state, &p_sys->bits,
  644.                                   (int16_t *)p_aout_buffer->p_buffer ) )
  645.         {
  646.             case -2:
  647.                 msg_Err( p_dec, "decoding error: corrupted stream?" );
  648.             case -1: /* End of stream */
  649.                 return NULL;
  650.         }
  651.         if( speex_bits_remaining( &p_sys->bits ) < 0 )
  652.         {
  653.             msg_Err( p_dec, "decoding overflow: corrupted stream?" );
  654.         }
  655.         if( p_sys->p_header->nb_channels == 2 )
  656.             speex_decode_stereo_int( (int16_t *)p_aout_buffer->p_buffer,
  657.                                      p_sys->p_header->frame_size,
  658.                                      &p_sys->stereo );
  659.         /* Date management */
  660.         p_aout_buffer->start_date = aout_DateGet( &p_sys->end_date );
  661.         p_aout_buffer->end_date =
  662.             aout_DateIncrement( &p_sys->end_date, p_sys->p_header->frame_size );
  663.         p_sys->i_frame_in_packet++;
  664.         return p_aout_buffer;
  665.     }
  666.     else
  667.     {
  668.         return NULL;
  669.     }
  670. }
  671. /*****************************************************************************
  672.  * SendPacket: send an ogg packet to the stream output.
  673.  *****************************************************************************/
  674. static block_t *SendPacket( decoder_t *p_dec, block_t *p_block )
  675. {
  676.     decoder_sys_t *p_sys = p_dec->p_sys;
  677.     /* Date management */
  678.     p_block->i_dts = p_block->i_pts = aout_DateGet( &p_sys->end_date );
  679.     if( p_sys->i_headers >= p_sys->p_header->extra_headers + 2 )
  680.     {
  681.         p_block->i_length =
  682.             aout_DateIncrement( &p_sys->end_date,
  683.                                 p_sys->p_header->frame_size ) -
  684.             p_block->i_pts;
  685.     }
  686.     else
  687.         p_block->i_length = 0;
  688.     return p_block;
  689. }
  690. /*****************************************************************************
  691.  * ParseSpeexComments:
  692.  *****************************************************************************/
  693. #define readint(buf, base) (((buf[base+3]<<24)&0xff000000)| 
  694.                            ((buf[base+2]<<16)&0xff0000)| 
  695.                            ((buf[base+1]<<8)&0xff00)| 
  696.                             (buf[base]&0xff))
  697. static void ParseSpeexComments( decoder_t *p_dec, ogg_packet *p_oggpacket )
  698. {
  699.     decoder_sys_t *p_sys = p_dec->p_sys;
  700.     const SpeexMode *p_mode;
  701.     assert( p_sys->p_header->mode < SPEEX_NB_MODES );
  702.     p_mode = speex_mode_list[p_sys->p_header->mode];
  703.     assert( p_mode != NULL );
  704.     if( !p_dec->p_description )
  705.     {
  706.         p_dec->p_description = vlc_meta_New();
  707.         if( !p_dec->p_description )
  708.             return;
  709.     }
  710.     /* */
  711.     char *psz_mode;
  712.     if( asprintf( &psz_mode, "%s%s", p_mode->modeName, p_sys->p_header->vbr ? " VBR" : "" ) >= 0 )
  713.     {
  714.         vlc_meta_AddExtra( p_dec->p_description, _("Mode"), psz_mode );
  715.         free( psz_mode );
  716.     }
  717.     /* TODO: finish comments parsing */
  718.     VLC_UNUSED( p_oggpacket );
  719. }
  720. /*****************************************************************************
  721.  * CloseDecoder: speex decoder destruction
  722.  *****************************************************************************/
  723. static void CloseDecoder( vlc_object_t *p_this )
  724. {
  725.     decoder_t * p_dec = (decoder_t *)p_this;
  726.     decoder_sys_t *p_sys = p_dec->p_sys;
  727.     if( p_sys->p_state )
  728.     {
  729.         speex_decoder_destroy( p_sys->p_state );
  730.         speex_bits_destroy( &p_sys->bits );
  731.     }
  732.     free( p_sys->p_header );
  733.     free( p_sys );
  734. }
  735. /*****************************************************************************
  736.  * encoder_sys_t: encoder descriptor
  737.  *****************************************************************************/
  738. #define MAX_FRAME_SIZE  2000
  739. #define MAX_FRAME_BYTES 2000
  740. struct encoder_sys_t
  741. {
  742.     /*
  743.      * Input properties
  744.      */
  745.     char *p_buffer;
  746.     char p_buffer_out[MAX_FRAME_BYTES];
  747.     /*
  748.      * Speex properties
  749.      */
  750.     SpeexBits bits;
  751.     SpeexHeader header;
  752.     SpeexStereoState stereo;
  753.     void *p_state;
  754.     int i_frames_per_packet;
  755.     int i_frames_in_packet;
  756.     int i_frame_length;
  757.     int i_samples_delay;
  758.     int i_frame_size;
  759.     /*
  760.      * Common properties
  761.      */
  762.     mtime_t i_pts;
  763. };
  764. /*****************************************************************************
  765.  * OpenEncoder: probe the encoder and return score
  766.  *****************************************************************************/
  767. static int OpenEncoder( vlc_object_t *p_this )
  768. {
  769.     encoder_t *p_enc = (encoder_t *)p_this;
  770.     encoder_sys_t *p_sys;
  771.     const SpeexMode *p_speex_mode = &speex_nb_mode;
  772.     int i_tmp, i;
  773.     const char *pp_header[2];
  774.     int pi_header[2];
  775.     uint8_t *p_extra;
  776.     if( p_enc->fmt_out.i_codec != VLC_FOURCC('s','p','x',' ') &&
  777.         !p_enc->b_force )
  778.     {
  779.         return VLC_EGENERIC;
  780.     }
  781.     config_ChainParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
  782.     switch( var_GetInteger( p_enc, ENC_CFG_PREFIX "mode" ) )
  783.     {
  784.     case 1:
  785.         msg_Dbg( p_enc, "Using wideband" );
  786.         p_speex_mode = &speex_wb_mode;
  787.         break;
  788.     case 2:
  789.         msg_Dbg( p_enc, "Using ultra-wideband" );
  790.         p_speex_mode = &speex_uwb_mode;
  791.         break;
  792.     default:
  793.         msg_Dbg( p_enc, "Using narrowband" );
  794.         p_speex_mode = &speex_nb_mode;
  795.         break;
  796.     }
  797.     /* Allocate the memory needed to store the decoder's structure */
  798.     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
  799.         return VLC_ENOMEM;
  800.     p_enc->p_sys = p_sys;
  801.     p_enc->pf_encode_audio = Encode;
  802.     p_enc->fmt_in.i_codec = AOUT_FMT_S16_NE;
  803.     p_enc->fmt_out.i_codec = VLC_FOURCC('s','p','x',' ');
  804.     speex_init_header( &p_sys->header, p_enc->fmt_in.audio.i_rate,
  805.                        1, p_speex_mode );
  806.     p_sys->header.frames_per_packet = 1;
  807.     p_sys->header.vbr = var_GetBool( p_enc, ENC_CFG_PREFIX "cbr" ) ? 0 : 1;
  808.     p_sys->header.nb_channels = p_enc->fmt_in.audio.i_channels;
  809.     /* Create a new encoder state in narrowband mode */
  810.     p_sys->p_state = speex_encoder_init( p_speex_mode );
  811.     /* Parameters */
  812.     i_tmp = var_GetInteger( p_enc, ENC_CFG_PREFIX "complexity" );
  813.     speex_encoder_ctl( p_sys->p_state, SPEEX_SET_COMPLEXITY, &i_tmp );
  814.     i_tmp = var_GetBool( p_enc, ENC_CFG_PREFIX "cbr" ) ? 0 : 1;
  815.     speex_encoder_ctl( p_sys->p_state, SPEEX_SET_VBR, &i_tmp );
  816.     if( i_tmp == 0 ) /* CBR */
  817.     {
  818.         i_tmp = var_GetFloat( p_enc, ENC_CFG_PREFIX "quality" );
  819.         speex_encoder_ctl( p_sys->p_state, SPEEX_SET_QUALITY, &i_tmp );
  820.         i_tmp = var_GetBool( p_enc, ENC_CFG_PREFIX "vad" ) ? 1 : 0;
  821.         speex_encoder_ctl( p_sys->p_state, SPEEX_SET_VAD, &i_tmp );
  822.     }
  823.     else
  824.     {
  825.         float f_tmp;
  826.         f_tmp = var_GetFloat( p_enc, ENC_CFG_PREFIX "quality" );
  827.         speex_encoder_ctl( p_sys->p_state, SPEEX_SET_VBR_QUALITY, &f_tmp );
  828.         i_tmp = var_GetInteger( p_enc, ENC_CFG_PREFIX "max-bitrate" );
  829.         if( i_tmp > 0 )
  830. #ifdef SPEEX_SET_VBR_MAX_BITRATE
  831.             speex_encoder_ctl( p_sys->p_state, SPEEX_SET_VBR_MAX_BITRATE, &i_tmp );
  832. #else
  833.             msg_Dbg( p_enc, "max-bitrate cannot be set in this version of libspeex");
  834. #endif
  835.     }
  836.     i_tmp = var_GetBool( p_enc, ENC_CFG_PREFIX "dtx" ) ? 1 : 0;
  837.     speex_encoder_ctl( p_sys->p_state, SPEEX_SET_DTX, &i_tmp );
  838.     /*Initialization of the structure that holds the bits*/
  839.     speex_bits_init( &p_sys->bits );
  840.     p_sys->i_frames_in_packet = 0;
  841.     p_sys->i_samples_delay = 0;
  842.     p_sys->i_pts = 0;
  843.     speex_encoder_ctl( p_sys->p_state, SPEEX_GET_FRAME_SIZE,
  844.                        &p_sys->i_frame_length );
  845.     p_sys->i_frame_size = p_sys->i_frame_length *
  846.         sizeof(int16_t) * p_enc->fmt_in.audio.i_channels;
  847.     p_sys->p_buffer = malloc( p_sys->i_frame_size );
  848.     /* Create and store headers */
  849.     pp_header[0] = speex_header_to_packet( &p_sys->header, &pi_header[0] );
  850.     pp_header[1] = "ENCODER=VLC media player";
  851.     pi_header[1] = sizeof("ENCODER=VLC media player");
  852.     p_enc->fmt_out.i_extra = 3 * 2 + pi_header[0] + pi_header[1];
  853.     p_extra = p_enc->fmt_out.p_extra = malloc( p_enc->fmt_out.i_extra );
  854.     for( i = 0; i < 2; i++ )
  855.     {
  856.         *(p_extra++) = pi_header[i] >> 8;
  857.         *(p_extra++) = pi_header[i] & 0xFF;
  858.         memcpy( p_extra, pp_header[i], pi_header[i] );
  859.         p_extra += pi_header[i];
  860.     }
  861.     msg_Dbg( p_enc, "encoding: frame size:%d, channels:%d, samplerate:%d",
  862.              p_sys->i_frame_size, p_enc->fmt_in.audio.i_channels,
  863.              p_enc->fmt_in.audio.i_rate );
  864.     return VLC_SUCCESS;
  865. }
  866. /****************************************************************************
  867.  * Encode: the whole thing
  868.  ****************************************************************************
  869.  * This function spits out ogg packets.
  870.  ****************************************************************************/
  871. static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
  872. {
  873.     encoder_sys_t *p_sys = p_enc->p_sys;
  874.     block_t *p_block, *p_chain = NULL;
  875.     unsigned char *p_buffer = p_aout_buf->p_buffer;
  876.     int i_samples = p_aout_buf->i_nb_samples;
  877.     int i_samples_delay = p_sys->i_samples_delay;
  878.     p_sys->i_pts = p_aout_buf->start_date -
  879.                 (mtime_t)1000000 * (mtime_t)p_sys->i_samples_delay /
  880.                 (mtime_t)p_enc->fmt_in.audio.i_rate;
  881.     p_sys->i_samples_delay += i_samples;
  882.     while( p_sys->i_samples_delay >= p_sys->i_frame_length )
  883.     {
  884.         int16_t *p_samples;
  885.         int i_out;
  886.         if( i_samples_delay )
  887.         {
  888.             /* Take care of the left-over from last time */
  889.             int i_delay_size = i_samples_delay * 2 *
  890.                                  p_enc->fmt_in.audio.i_channels;
  891.             int i_size = p_sys->i_frame_size - i_delay_size;
  892.             p_samples = (int16_t *)p_sys->p_buffer;
  893.             memcpy( p_sys->p_buffer + i_delay_size, p_buffer, i_size );
  894.             p_buffer -= i_delay_size;
  895.             i_samples += i_samples_delay;
  896.             i_samples_delay = 0;
  897.         }
  898.         else
  899.         {
  900.             p_samples = (int16_t *)p_buffer;
  901.         }
  902.         /* Encode current frame */
  903.         if( p_enc->fmt_in.audio.i_channels == 2 )
  904.             speex_encode_stereo_int( p_samples, p_sys->i_frame_length,
  905.                                      &p_sys->bits );
  906. #if 0
  907.         if( p_sys->preprocess )
  908.             speex_preprocess( p_sys->preprocess, p_samples, NULL );
  909. #endif
  910.         speex_encode_int( p_sys->p_state, p_samples, &p_sys->bits );
  911.         p_buffer += p_sys->i_frame_size;
  912.         p_sys->i_samples_delay -= p_sys->i_frame_length;
  913.         i_samples -= p_sys->i_frame_length;
  914.         p_sys->i_frames_in_packet++;
  915.         if( p_sys->i_frames_in_packet < p_sys->header.frames_per_packet )
  916.             continue;
  917.         p_sys->i_frames_in_packet = 0;
  918.         speex_bits_insert_terminator( &p_sys->bits );
  919.         i_out = speex_bits_write( &p_sys->bits, p_sys->p_buffer_out,
  920.                                   MAX_FRAME_BYTES );
  921.         speex_bits_reset( &p_sys->bits );
  922.         p_block = block_New( p_enc, i_out );
  923.         memcpy( p_block->p_buffer, p_sys->p_buffer_out, i_out );
  924.         p_block->i_length = (mtime_t)1000000 *
  925.             (mtime_t)p_sys->i_frame_length * p_sys->header.frames_per_packet /
  926.             (mtime_t)p_enc->fmt_in.audio.i_rate;
  927.         p_block->i_dts = p_block->i_pts = p_sys->i_pts;
  928.         /* Update pts */
  929.         p_sys->i_pts += p_block->i_length;
  930.         block_ChainAppend( &p_chain, p_block );
  931.     }
  932.     /* Backup the remaining raw samples */
  933.     if( i_samples )
  934.     {
  935.         memcpy( p_sys->p_buffer + i_samples_delay * 2 *
  936.                 p_enc->fmt_in.audio.i_channels, p_buffer,
  937.                 i_samples * 2 * p_enc->fmt_in.audio.i_channels );
  938.     }
  939.     return p_chain;
  940. }
  941. /*****************************************************************************
  942.  * CloseEncoder: encoder destruction
  943.  *****************************************************************************/
  944. static void CloseEncoder( vlc_object_t *p_this )
  945. {
  946.     encoder_t *p_enc = (encoder_t *)p_this;
  947.     encoder_sys_t *p_sys = p_enc->p_sys;
  948.     speex_encoder_destroy( p_sys->p_state );
  949.     speex_bits_destroy( &p_sys->bits );
  950.     free( p_sys->p_buffer );
  951.     free( p_sys );
  952. }