speex.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:25k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * speex.c: speex decoder/packetizer/encoder module making use of libspeex.
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: speex.c 8546 2004-08-28 11:02:51Z gbazin $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <vlc/vlc.h>
  27. #include <vlc/decoder.h>
  28. #include <vlc/input.h>
  29. #include <ogg/ogg.h>
  30. #include <speex.h>
  31. #include "speex_header.h"
  32. #include "speex_stereo.h"
  33. #include "speex_callbacks.h"
  34. /*****************************************************************************
  35.  * decoder_sys_t : speex decoder descriptor
  36.  *****************************************************************************/
  37. struct decoder_sys_t
  38. {
  39.     /* Module mode */
  40.     vlc_bool_t b_packetizer;
  41.     /*
  42.      * Input properties
  43.      */
  44.     int i_headers;
  45.     int i_frame_in_packet;
  46.     /*
  47.      * Speex properties
  48.      */
  49.     SpeexBits bits;
  50.     SpeexHeader *p_header;
  51.     SpeexStereoState stereo;
  52.     void *p_state;
  53.     /*
  54.      * Common properties
  55.      */
  56.     audio_date_t end_date;
  57. };
  58. static int pi_channels_maps[6] =
  59. {
  60.     0,
  61.     AOUT_CHAN_CENTER,   AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
  62.     AOUT_CHAN_CENTER | AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
  63.     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT
  64.      | AOUT_CHAN_REARRIGHT,
  65.     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  66.      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
  67. };
  68. /****************************************************************************
  69.  * Local prototypes
  70.  ****************************************************************************/
  71. static int  OpenDecoder   ( vlc_object_t * );
  72. static int  OpenPacketizer( vlc_object_t * );
  73. static void CloseDecoder  ( vlc_object_t * );
  74. static void *DecodeBlock  ( decoder_t *, block_t ** );
  75. static int  ProcessHeaders( decoder_t * );
  76. static int  ProcessInitialHeader ( decoder_t *, ogg_packet * );
  77. static void *ProcessPacket( decoder_t *, ogg_packet *, block_t ** );
  78. static aout_buffer_t *DecodePacket( decoder_t *, ogg_packet * );
  79. static block_t *SendPacket( decoder_t *, ogg_packet *, block_t * );
  80. static void ParseSpeexComments( decoder_t *, ogg_packet * );
  81. static int OpenEncoder   ( vlc_object_t * );
  82. static void CloseEncoder ( vlc_object_t * );
  83. static block_t *Encode   ( encoder_t *, aout_buffer_t * );
  84. /*****************************************************************************
  85.  * Module descriptor
  86.  *****************************************************************************/
  87. vlc_module_begin();
  88.     set_description( _("Speex audio decoder") );
  89.     set_capability( "decoder", 100 );
  90.     set_callbacks( OpenDecoder, CloseDecoder );
  91.     add_submodule();
  92.     set_description( _("Speex audio packetizer") );
  93.     set_capability( "packetizer", 100 );
  94.     set_callbacks( OpenPacketizer, CloseDecoder );
  95.     add_submodule();
  96.     set_description( _("Speex audio encoder") );
  97.     set_capability( "encoder", 100 );
  98.     set_callbacks( OpenEncoder, CloseEncoder );
  99. vlc_module_end();
  100. /*****************************************************************************
  101.  * OpenDecoder: probe the decoder and return score
  102.  *****************************************************************************/
  103. static int OpenDecoder( vlc_object_t *p_this )
  104. {
  105.     decoder_t *p_dec = (decoder_t*)p_this;
  106.     decoder_sys_t *p_sys = p_dec->p_sys;
  107.     if( p_dec->fmt_in.i_codec != VLC_FOURCC('s','p','x',' ') )
  108.     {
  109.         return VLC_EGENERIC;
  110.     }
  111.     /* Allocate the memory needed to store the decoder's structure */
  112.     if( ( p_dec->p_sys = p_sys =
  113.           (decoder_sys_t *)malloc(sizeof(decoder_sys_t)) ) == NULL )
  114.     {
  115.         msg_Err( p_dec, "out of memory" );
  116.         return VLC_EGENERIC;
  117.     }
  118.     p_dec->p_sys->b_packetizer = VLC_FALSE;
  119.     aout_DateSet( &p_sys->end_date, 0 );
  120.     /* Set output properties */
  121.     p_dec->fmt_out.i_cat = AUDIO_ES;
  122.     p_dec->fmt_out.i_codec = AOUT_FMT_S16_NE;
  123.     /* Set callbacks */
  124.     p_dec->pf_decode_audio = (aout_buffer_t *(*)(decoder_t *, block_t **))
  125.         DecodeBlock;
  126.     p_dec->pf_packetize    = (block_t *(*)(decoder_t *, block_t **))
  127.         DecodeBlock;
  128.     p_sys->i_headers = 0;
  129.     p_sys->p_state = NULL;
  130.     p_sys->p_header = NULL;
  131.     p_sys->i_frame_in_packet = 0;
  132.     return VLC_SUCCESS;
  133. }
  134. static int OpenPacketizer( vlc_object_t *p_this )
  135. {
  136.     decoder_t *p_dec = (decoder_t*)p_this;
  137.     int i_ret = OpenDecoder( p_this );
  138.     if( i_ret == VLC_SUCCESS )
  139.     {
  140.         p_dec->p_sys->b_packetizer = VLC_TRUE;
  141.         p_dec->fmt_out.i_codec = VLC_FOURCC('s','p','x',' ');
  142.     }
  143.     return i_ret;
  144. }
  145. /****************************************************************************
  146.  * DecodeBlock: the whole thing
  147.  ****************************************************************************
  148.  * This function must be fed with ogg packets.
  149.  ****************************************************************************/
  150. static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
  151. {
  152.     decoder_sys_t *p_sys = p_dec->p_sys;
  153.     ogg_packet oggpacket;
  154.     if( !pp_block ) return NULL;
  155.     if( *pp_block )
  156.     {
  157.         /* Block to Ogg packet */
  158.         oggpacket.packet = (*pp_block)->p_buffer;
  159.         oggpacket.bytes = (*pp_block)->i_buffer;
  160.     }
  161.     else
  162.     {
  163.         if( p_sys->b_packetizer ) return NULL;
  164.         /* Block to Ogg packet */
  165.         oggpacket.packet = NULL;
  166.         oggpacket.bytes = 0;
  167.     }
  168.     oggpacket.granulepos = -1;
  169.     oggpacket.b_o_s = 0;
  170.     oggpacket.e_o_s = 0;
  171.     oggpacket.packetno = 0;
  172.     /* Check for headers */
  173.     if( p_sys->i_headers == 0 && p_dec->fmt_in.i_extra )
  174.     {
  175.         /* Headers already available as extra data */
  176.         p_sys->i_headers = 2;
  177.     }
  178.     else if( oggpacket.bytes && p_sys->i_headers < 2 )
  179.     {
  180.         /* Backup headers as extra data */
  181.         uint8_t *p_extra;
  182.         p_dec->fmt_in.p_extra =
  183.             realloc( p_dec->fmt_in.p_extra, p_dec->fmt_in.i_extra +
  184.                      oggpacket.bytes + 2 );
  185.         p_extra = p_dec->fmt_in.p_extra + p_dec->fmt_in.i_extra;
  186.         *(p_extra++) = oggpacket.bytes >> 8;
  187.         *(p_extra++) = oggpacket.bytes & 0xFF;
  188.         memcpy( p_extra, oggpacket.packet, oggpacket.bytes );
  189.         p_dec->fmt_in.i_extra += oggpacket.bytes + 2;
  190.         block_Release( *pp_block );
  191.         p_sys->i_headers++;
  192.         return NULL;
  193.     }
  194.     if( p_sys->i_headers == 2 )
  195.     {
  196.         if( ProcessHeaders( p_dec ) != VLC_SUCCESS )
  197.         {
  198.             p_sys->i_headers = 0;
  199.             p_dec->fmt_in.i_extra = 0;
  200.             block_Release( *pp_block );
  201.             return NULL;
  202.         }
  203.         else p_sys->i_headers++;
  204.     }
  205.     return ProcessPacket( p_dec, &oggpacket, pp_block );
  206. }
  207. /*****************************************************************************
  208.  * ProcessHeaders: process Speex headers.
  209.  *****************************************************************************/
  210. static int ProcessHeaders( decoder_t *p_dec )
  211. {
  212.     decoder_sys_t *p_sys = p_dec->p_sys;
  213.     ogg_packet oggpacket;
  214.     uint8_t *p_extra;
  215.     int i_extra;
  216.     if( !p_dec->fmt_in.i_extra ) return VLC_EGENERIC;
  217.     oggpacket.granulepos = -1;
  218.     oggpacket.b_o_s = 1; /* yes this actually is a b_o_s packet :) */
  219.     oggpacket.e_o_s = 0;
  220.     oggpacket.packetno = 0;
  221.     p_extra = p_dec->fmt_in.p_extra;
  222.     i_extra = p_dec->fmt_in.i_extra;
  223.     /* Take care of the initial Vorbis header */
  224.     oggpacket.bytes = *(p_extra++) << 8;
  225.     oggpacket.bytes |= (*(p_extra++) & 0xFF);
  226.     oggpacket.packet = p_extra;
  227.     p_extra += oggpacket.bytes;
  228.     i_extra -= (oggpacket.bytes + 2);
  229.     if( i_extra < 0 )
  230.     {
  231.         msg_Err( p_dec, "header data corrupted");
  232.         return VLC_EGENERIC;
  233.     }
  234.     /* Take care of the initial Speex header */
  235.     if( ProcessInitialHeader( p_dec, &oggpacket ) != VLC_SUCCESS )
  236.     {
  237.         msg_Err( p_dec, "initial Speex header is corrupted" );
  238.         return VLC_EGENERIC;
  239.     }
  240.     /* The next packet in order is the comments header */
  241.     oggpacket.b_o_s = 0;
  242.     oggpacket.bytes = *(p_extra++) << 8;
  243.     oggpacket.bytes |= (*(p_extra++) & 0xFF);
  244.     oggpacket.packet = p_extra;
  245.     p_extra += oggpacket.bytes;
  246.     i_extra -= (oggpacket.bytes + 2);
  247.     if( i_extra < 0 )
  248.     {
  249.         msg_Err( p_dec, "header data corrupted");
  250.         return VLC_EGENERIC;
  251.     }
  252.     ParseSpeexComments( p_dec, &oggpacket );
  253.     if( p_sys->b_packetizer )
  254.     {
  255.         p_dec->fmt_out.i_extra = p_dec->fmt_in.i_extra;
  256.         p_dec->fmt_out.p_extra =
  257.             realloc( p_dec->fmt_out.p_extra, p_dec->fmt_out.i_extra );
  258.         memcpy( p_dec->fmt_out.p_extra,
  259.                 p_dec->fmt_in.p_extra, p_dec->fmt_out.i_extra );
  260.     }
  261.     return VLC_SUCCESS;
  262. }
  263. /*****************************************************************************
  264.  * ProcessInitialHeader: processes the inital Speex header packet.
  265.  *****************************************************************************/
  266. static int ProcessInitialHeader( decoder_t *p_dec, ogg_packet *p_oggpacket )
  267. {
  268.     decoder_sys_t *p_sys = p_dec->p_sys;
  269.     void *p_state;
  270.     SpeexHeader *p_header;
  271.     const SpeexMode *p_mode;
  272.     SpeexCallback callback;
  273.     p_sys->p_header = p_header =
  274.         speex_packet_to_header( p_oggpacket->packet, p_oggpacket->bytes );
  275.     if( !p_header )
  276.     {
  277.         msg_Err( p_dec, "cannot read Speex header" );
  278.         return VLC_EGENERIC;
  279.     }
  280.     if( p_header->mode >= SPEEX_NB_MODES )
  281.     {
  282.         msg_Err( p_dec, "mode number %d does not (yet/any longer) exist in "
  283.                  "this version of libspeex.", p_header->mode );
  284.         return VLC_EGENERIC;
  285.     }
  286.     p_mode = speex_mode_list[p_header->mode];
  287.     if( p_header->speex_version_id > 1 )
  288.     {
  289.         msg_Err( p_dec, "this file was encoded with Speex bit-stream "
  290.                  "version %d, which I don't know how to decode.",
  291.                  p_header->speex_version_id );
  292.         return VLC_EGENERIC;
  293.     }
  294.     if( p_mode->bitstream_version < p_header->mode_bitstream_version )
  295.     {
  296.         msg_Err( p_dec, "file encoded with a newer version of Speex." );
  297.         return VLC_EGENERIC;
  298.     }
  299.     if( p_mode->bitstream_version > p_header->mode_bitstream_version )
  300.     {
  301.         msg_Err( p_dec, "file encoded with an older version of Speex." );
  302.         return VLC_EGENERIC;
  303.     }
  304.     msg_Dbg( p_dec, "Speex %d Hz audio using %s mode %s%s",
  305.              p_header->rate, p_mode->modeName,
  306.              ( p_header->nb_channels == 1 ) ? " (mono" : " (stereo",
  307.              p_header->vbr ? ", VBR)" : ")" );
  308.     /* Take care of speex decoder init */
  309.     speex_bits_init( &p_sys->bits );
  310.     p_sys->p_state = p_state = speex_decoder_init( p_mode );
  311.     if( !p_state )
  312.     {
  313.         msg_Err( p_dec, "decoder initialization failed" );
  314.         return VLC_EGENERIC;
  315.     }
  316.     if( p_header->nb_channels == 2 )
  317.     {
  318.         SpeexStereoState stereo = SPEEX_STEREO_STATE_INIT;
  319.         p_sys->stereo = stereo;
  320.         callback.callback_id = SPEEX_INBAND_STEREO;
  321.         callback.func = speex_std_stereo_request_handler;
  322.         callback.data = &p_sys->stereo;
  323.         speex_decoder_ctl( p_state, SPEEX_SET_HANDLER, &callback );
  324.     }
  325.     /* Setup the format */
  326.     p_dec->fmt_out.audio.i_physical_channels =
  327.         p_dec->fmt_out.audio.i_original_channels =
  328.             pi_channels_maps[p_header->nb_channels];
  329.     p_dec->fmt_out.audio.i_channels = p_header->nb_channels;
  330.     p_dec->fmt_out.audio.i_rate = p_header->rate;
  331.     aout_DateInit( &p_sys->end_date, p_header->rate );
  332.     return VLC_SUCCESS;
  333. }
  334. /*****************************************************************************
  335.  * ProcessPacket: processes a Speex packet.
  336.  *****************************************************************************/
  337. static void *ProcessPacket( decoder_t *p_dec, ogg_packet *p_oggpacket,
  338.                             block_t **pp_block )
  339. {
  340.     decoder_sys_t *p_sys = p_dec->p_sys;
  341.     block_t *p_block = *pp_block;
  342.     /* Date management */
  343.     if( p_block && p_block->i_pts > 0 &&
  344.         p_block->i_pts != aout_DateGet( &p_sys->end_date ) )
  345.     {
  346.         aout_DateSet( &p_sys->end_date, p_block->i_pts );
  347.     }
  348.     if( !aout_DateGet( &p_sys->end_date ) )
  349.     {
  350.         /* We've just started the stream, wait for the first PTS. */
  351.         if( p_block ) block_Release( p_block );
  352.         return NULL;
  353.     }
  354.     *pp_block = NULL; /* To avoid being fed the same packet again */
  355.     if( p_sys->b_packetizer )
  356.     {
  357.          return SendPacket( p_dec, p_oggpacket, p_block );
  358.     }
  359.     else
  360.     {
  361.         aout_buffer_t *p_aout_buffer;
  362.         if( p_sys->i_headers >= p_sys->p_header->extra_headers + 2 )
  363.             p_aout_buffer = DecodePacket( p_dec, p_oggpacket );
  364.         else
  365.             p_aout_buffer = NULL; /* Skip headers */
  366.         if( p_block ) block_Release( p_block );
  367.         return p_aout_buffer;
  368.     }
  369. }
  370. /*****************************************************************************
  371.  * DecodePacket: decodes a Speex packet.
  372.  *****************************************************************************/
  373. static aout_buffer_t *DecodePacket( decoder_t *p_dec, ogg_packet *p_oggpacket )
  374. {
  375.     decoder_sys_t *p_sys = p_dec->p_sys;
  376.     if( p_oggpacket->bytes )
  377.     {
  378.         /* Copy Ogg packet to Speex bitstream */
  379.         speex_bits_read_from( &p_sys->bits, p_oggpacket->packet,
  380.                               p_oggpacket->bytes );
  381.         p_sys->i_frame_in_packet = 0;
  382.     }
  383.     /* Decode one frame at a time */
  384.     if( p_sys->i_frame_in_packet < p_sys->p_header->frames_per_packet )
  385.     {
  386.         aout_buffer_t *p_aout_buffer;
  387.         int i_ret;
  388.         p_aout_buffer =
  389.             p_dec->pf_aout_buffer_new( p_dec, p_sys->p_header->frame_size );
  390.         if( !p_aout_buffer )
  391.         {
  392.             return NULL;
  393.         }
  394.         i_ret = speex_decode( p_sys->p_state, &p_sys->bits,
  395.                               (int16_t *)p_aout_buffer->p_buffer );
  396.         if( i_ret == -1 )
  397.         {
  398.             /* End of stream */
  399.             return NULL;
  400.         }
  401.         if( i_ret== -2 )
  402.         {
  403.             msg_Warn( p_dec, "decoding error: corrupted stream?" );
  404.             return NULL;
  405.         }
  406.         if( speex_bits_remaining( &p_sys->bits ) < 0 )
  407.         {
  408.             msg_Warn( p_dec, "decoding overflow: corrupted stream?" );
  409.         }
  410.         if( p_sys->p_header->nb_channels == 2 )
  411.             speex_decode_stereo( (int16_t *)p_aout_buffer->p_buffer,
  412.                                  p_sys->p_header->frame_size, &p_sys->stereo );
  413.         /* Date management */
  414.         p_aout_buffer->start_date = aout_DateGet( &p_sys->end_date );
  415.         p_aout_buffer->end_date =
  416.             aout_DateIncrement( &p_sys->end_date, p_sys->p_header->frame_size);
  417.         p_sys->i_frame_in_packet++;
  418.         return p_aout_buffer;
  419.     }
  420.     else
  421.     {
  422.         return NULL;
  423.     }
  424. }
  425. /*****************************************************************************
  426.  * SendPacket: send an ogg packet to the stream output.
  427.  *****************************************************************************/
  428. static block_t *SendPacket( decoder_t *p_dec, ogg_packet *p_oggpacket,
  429.                             block_t *p_block )
  430. {
  431.     decoder_sys_t *p_sys = p_dec->p_sys;
  432.     /* Date management */
  433.     p_block->i_dts = p_block->i_pts = aout_DateGet( &p_sys->end_date );
  434.     if( p_sys->i_headers >= p_sys->p_header->extra_headers + 2 )
  435.         p_block->i_length =
  436.             aout_DateIncrement( &p_sys->end_date,
  437.                                 p_sys->p_header->frame_size ) -
  438.             p_block->i_pts;
  439.     else
  440.         p_block->i_length = 0;
  441.     return p_block;
  442. }
  443. /*****************************************************************************
  444.  * ParseSpeexComments: FIXME should be done in demuxer
  445.  *****************************************************************************/
  446. #define readint(buf, base) (((buf[base+3]<<24)&0xff000000)| 
  447.                            ((buf[base+2]<<16)&0xff0000)| 
  448.                            ((buf[base+1]<<8)&0xff00)| 
  449.                             (buf[base]&0xff))
  450. static void ParseSpeexComments( decoder_t *p_dec, ogg_packet *p_oggpacket )
  451. {
  452.     input_thread_t *p_input = (input_thread_t *)p_dec->p_parent;
  453.     decoder_sys_t *p_sys = p_dec->p_sys;
  454.     char *p_buf = (char *)p_oggpacket->packet;
  455.     const SpeexMode *p_mode;
  456.     int i_len;
  457.     if( p_input->i_object_type != VLC_OBJECT_INPUT ) return;
  458.     p_mode = speex_mode_list[p_sys->p_header->mode];
  459.     input_Control( p_input, INPUT_ADD_INFO, _("Speex comment"), _("Mode"),
  460.                    "%s%s", p_mode->modeName,
  461.                    p_sys->p_header->vbr ? " VBR" : "" );
  462.     if( p_oggpacket->bytes < 8 )
  463.     {
  464.         msg_Warn( p_dec, "invalid/corrupted comments" );
  465.         return;
  466.     }
  467.     i_len = readint( p_buf, 0 ); p_buf += 4;
  468.     if( i_len > p_oggpacket->bytes - 4 )
  469.     {
  470.         msg_Warn( p_dec, "invalid/corrupted comments" );
  471.         return;
  472.     }
  473.     input_Control( p_input, INPUT_ADD_INFO, _("Speex comment"), p_buf, "" );
  474.     /* TODO: finish comments parsing */
  475. }
  476. /*****************************************************************************
  477.  * CloseDecoder: speex decoder destruction
  478.  *****************************************************************************/
  479. static void CloseDecoder( vlc_object_t *p_this )
  480. {
  481.     decoder_t * p_dec = (decoder_t *)p_this;
  482.     decoder_sys_t *p_sys = p_dec->p_sys;
  483.     if( p_sys->p_state )
  484.     {
  485.         speex_decoder_destroy( p_sys->p_state );
  486.         speex_bits_destroy( &p_sys->bits );
  487.     }
  488.     if( p_sys->p_header ) free( p_sys->p_header );
  489.     free( p_sys );
  490. }
  491. /*****************************************************************************
  492.  * encoder_sys_t: encoder descriptor
  493.  *****************************************************************************/
  494. #define MAX_FRAME_SIZE  2000
  495. #define MAX_FRAME_BYTES 2000
  496. struct encoder_sys_t
  497. {
  498.     /*
  499.      * Input properties
  500.      */
  501.     char *p_buffer;
  502.     char p_buffer_out[MAX_FRAME_BYTES];
  503.     /*
  504.      * Speex properties
  505.      */
  506.     SpeexBits bits;
  507.     SpeexHeader header;
  508.     SpeexStereoState stereo;
  509.     void *p_state;
  510.     int i_frames_per_packet;
  511.     int i_frames_in_packet;
  512.     int i_frame_length;
  513.     int i_samples_delay;
  514.     int i_frame_size;
  515.     /*
  516.      * Common properties
  517.      */
  518.     mtime_t i_pts;
  519. };
  520. /*****************************************************************************
  521.  * OpenEncoder: probe the encoder and return score
  522.  *****************************************************************************/
  523. static int OpenEncoder( vlc_object_t *p_this )
  524. {
  525.     encoder_t *p_enc = (encoder_t *)p_this;
  526.     encoder_sys_t *p_sys;
  527.     const SpeexMode *p_speex_mode = &speex_nb_mode;
  528.     int i_quality, i;
  529.     char *pp_header[2];
  530.     int pi_header[2];
  531.     uint8_t *p_extra;
  532.     if( p_enc->fmt_out.i_codec != VLC_FOURCC('s','p','x',' ') &&
  533.         !p_enc->b_force )
  534.     {
  535.         return VLC_EGENERIC;
  536.     }
  537.     /* Allocate the memory needed to store the decoder's structure */
  538.     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
  539.     {
  540.         msg_Err( p_enc, "out of memory" );
  541.         return VLC_EGENERIC;
  542.     }
  543.     p_enc->p_sys = p_sys;
  544.     p_enc->pf_encode_audio = Encode;
  545.     p_enc->fmt_in.i_codec = AOUT_FMT_S16_NE;
  546.     p_enc->fmt_out.i_codec = VLC_FOURCC('s','p','x',' ');
  547.     speex_init_header( &p_sys->header, p_enc->fmt_in.audio.i_rate,
  548.                        1, p_speex_mode );
  549.     p_sys->header.frames_per_packet = 1;
  550.     p_sys->header.vbr = 1;
  551.     p_sys->header.nb_channels = p_enc->fmt_in.audio.i_channels;
  552.     /* Create a new encoder state in narrowband mode */
  553.     p_sys->p_state = speex_encoder_init( p_speex_mode );
  554.     /* Set the quality to 8 (15 kbps) */
  555.     i_quality = 8;
  556.     speex_encoder_ctl( p_sys->p_state, SPEEX_SET_QUALITY, &i_quality );
  557.     /*Initialization of the structure that holds the bits*/
  558.     speex_bits_init( &p_sys->bits );
  559.     p_sys->i_frames_in_packet = 0;
  560.     p_sys->i_samples_delay = 0;
  561.     p_sys->i_pts = 0;
  562.     speex_encoder_ctl( p_sys->p_state, SPEEX_GET_FRAME_SIZE,
  563.                        &p_sys->i_frame_length );
  564.     p_sys->i_frame_size = p_sys->i_frame_length *
  565.         sizeof(int16_t) * p_enc->fmt_in.audio.i_channels;
  566.     p_sys->p_buffer = malloc( p_sys->i_frame_size );
  567.     /* Create and store headers */
  568.     pp_header[0] = speex_header_to_packet( &p_sys->header, &pi_header[0] );
  569.     pp_header[1] = "ENCODER=VLC media player";
  570.     pi_header[1] = sizeof("ENCODER=VLC media player");
  571.     p_enc->fmt_out.i_extra = 3 * 2 + pi_header[0] + pi_header[1];
  572.     p_extra = p_enc->fmt_out.p_extra = malloc( p_enc->fmt_out.i_extra );
  573.     for( i = 0; i < 2; i++ )
  574.     {
  575.         *(p_extra++) = pi_header[i] >> 8;
  576.         *(p_extra++) = pi_header[i] & 0xFF;
  577.         memcpy( p_extra, pp_header[i], pi_header[i] );
  578.         p_extra += pi_header[i];
  579.     }
  580.     msg_Dbg( p_enc, "encoding: frame size:%d, channels:%d, samplerate:%d",
  581.              p_sys->i_frame_size, p_enc->fmt_in.audio.i_channels,
  582.              p_enc->fmt_in.audio.i_rate );
  583.     return VLC_SUCCESS;
  584. }
  585. /****************************************************************************
  586.  * Encode: the whole thing
  587.  ****************************************************************************
  588.  * This function spits out ogg packets.
  589.  ****************************************************************************/
  590. static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
  591. {
  592.     encoder_sys_t *p_sys = p_enc->p_sys;
  593.     block_t *p_block, *p_chain = NULL;
  594.     char *p_buffer = p_aout_buf->p_buffer;
  595.     int i_samples = p_aout_buf->i_nb_samples;
  596.     int i_samples_delay = p_sys->i_samples_delay;
  597.     p_sys->i_pts = p_aout_buf->start_date -
  598.                 (mtime_t)1000000 * (mtime_t)p_sys->i_samples_delay /
  599.                 (mtime_t)p_enc->fmt_in.audio.i_rate;
  600.     p_sys->i_samples_delay += i_samples;
  601.     while( p_sys->i_samples_delay >= p_sys->i_frame_length )
  602.     {
  603.         int16_t *p_samples;
  604.         int i_out;
  605.         if( i_samples_delay )
  606.         {
  607.             /* Take care of the left-over from last time */
  608.             int i_delay_size = i_samples_delay * 2 *
  609.                                  p_enc->fmt_in.audio.i_channels;
  610.             int i_size = p_sys->i_frame_size - i_delay_size;
  611.             p_samples = (int16_t *)p_sys->p_buffer;
  612.             memcpy( p_sys->p_buffer + i_delay_size, p_buffer, i_size );
  613.             p_buffer -= i_delay_size;
  614.             i_samples += i_samples_delay;
  615.             i_samples_delay = 0;
  616.         }
  617.         else
  618.         {
  619.             p_samples = (int16_t *)p_buffer;
  620.         }
  621.         /* Encode current frame */
  622.         if( p_enc->fmt_in.audio.i_channels == 2 )
  623.             speex_encode_stereo( p_samples, p_sys->i_frame_length,
  624.                                  &p_sys->bits );
  625. #if 0
  626.         if( p_sys->preprocess )
  627.             speex_preprocess( p_sys->preprocess, p_samples, NULL );
  628. #endif
  629.         speex_encode( p_sys->p_state, p_samples, &p_sys->bits );
  630.         p_buffer += p_sys->i_frame_size;
  631.         p_sys->i_samples_delay -= p_sys->i_frame_length;
  632.         i_samples -= p_sys->i_frame_length;
  633.         p_sys->i_frames_in_packet++;
  634.         if( p_sys->i_frames_in_packet < p_sys->header.frames_per_packet )
  635.             continue;
  636.         p_sys->i_frames_in_packet = 0;
  637.         speex_bits_insert_terminator( &p_sys->bits );
  638.         i_out = speex_bits_write( &p_sys->bits, p_sys->p_buffer_out,
  639.                                   MAX_FRAME_BYTES );
  640.         speex_bits_reset( &p_sys->bits );
  641.         p_block = block_New( p_enc, i_out );
  642.         memcpy( p_block->p_buffer, p_sys->p_buffer_out, i_out );
  643.         p_block->i_length = (mtime_t)1000000 *
  644.             (mtime_t)p_sys->i_frame_length * p_sys->header.frames_per_packet /
  645.             (mtime_t)p_enc->fmt_in.audio.i_rate;
  646.         p_block->i_dts = p_block->i_pts = p_sys->i_pts;
  647.         /* Update pts */
  648.         p_sys->i_pts += p_block->i_length;
  649.         block_ChainAppend( &p_chain, p_block );
  650.     }
  651.     /* Backup the remaining raw samples */
  652.     if( i_samples )
  653.     {
  654.         memcpy( p_sys->p_buffer + i_samples_delay * 2 *
  655.                 p_enc->fmt_in.audio.i_channels, p_buffer,
  656.                 i_samples * 2 * p_enc->fmt_in.audio.i_channels );
  657.     }
  658.     return p_chain;
  659. }
  660. /*****************************************************************************
  661.  * CloseEncoder: encoder destruction
  662.  *****************************************************************************/
  663. static void CloseEncoder( vlc_object_t *p_this )
  664. {
  665.     encoder_t *p_enc = (encoder_t *)p_this;
  666.     encoder_sys_t *p_sys = p_enc->p_sys;
  667.     speex_encoder_destroy( p_sys->p_state );
  668.     speex_bits_destroy( &p_sys->bits );
  669.     if( p_sys->p_buffer ) free( p_sys->p_buffer );
  670.     free( p_sys );
  671. }