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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * toolame.c: libtoolame encoder (MPEG-1/2 layer II) module
  3.  *            (using libtoolame from http://users.tpg.com.au/adslblvi/)
  4.  *****************************************************************************
  5.  * Copyright (C) 2004 VideoLAN
  6.  * $Id: toolame.c 8945 2004-10-07 20:12:19Z gbazin $
  7.  *
  8.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <vlc/vlc.h>
  28. #include <vlc/decoder.h>
  29. #include <vlc/sout.h>
  30. #include <vlc/aout.h>
  31. #include <toolame.h>
  32. #define MPEG_FRAME_SIZE 1152
  33. #define MAX_CODED_FRAME_SIZE 1792
  34. /****************************************************************************
  35.  * Local prototypes
  36.  ****************************************************************************/
  37. static int OpenEncoder   ( vlc_object_t * );
  38. static void CloseEncoder ( vlc_object_t * );
  39. static block_t *Encode   ( encoder_t *, aout_buffer_t * );
  40. /*****************************************************************************
  41.  * Module descriptor
  42.  *****************************************************************************/
  43. #define ENC_CFG_PREFIX "sout-toolame-"
  44. #define ENC_QUALITY_TEXT N_("Encoding quality")
  45. #define ENC_QUALITY_LONGTEXT N_( 
  46.   "Allows you to specify a quality between 0.0 (high) and 50.0 (low), " 
  47.   "instead of specifying a particular bitrate. " 
  48.   "This will produce a VBR stream." )
  49. #define ENC_MODE_TEXT N_("Stereo mode")
  50. #define ENC_MODE_LONGTEXT N_( 
  51.   "[0=stereo, 1=dual-mono, 2=joint-stereo]" )
  52. #define ENC_VBR_TEXT N_("VBR mode")
  53. #define ENC_VBR_LONGTEXT N_( 
  54.   "By default the encoding is CBR." )
  55. vlc_module_begin();
  56.     set_description( _("libtoolame audio encoder") );
  57.     set_capability( "encoder", 50 );
  58.     set_callbacks( OpenEncoder, CloseEncoder );
  59.     add_float( ENC_CFG_PREFIX "quality", 0.0, NULL, ENC_QUALITY_TEXT,
  60.                ENC_QUALITY_LONGTEXT, VLC_FALSE );
  61.     add_integer( ENC_CFG_PREFIX "mode", 0, NULL, ENC_MODE_TEXT,
  62.                  ENC_MODE_LONGTEXT, VLC_FALSE );
  63.     add_bool( ENC_CFG_PREFIX "vbr", 0, NULL, ENC_VBR_TEXT,
  64.               ENC_VBR_LONGTEXT, VLC_FALSE );
  65. vlc_module_end();
  66. static const char *ppsz_enc_options[] = {
  67.     "quality", "mode", "vbr", NULL
  68. };
  69. /*****************************************************************************
  70.  * encoder_sys_t : toolame encoder descriptor
  71.  *****************************************************************************/
  72. struct encoder_sys_t
  73. {
  74.     /*
  75.      * Input properties
  76.      */
  77.     int16_t p_left[MPEG_FRAME_SIZE];
  78.     int16_t p_right[MPEG_FRAME_SIZE];
  79.     int i_nb_samples;
  80.     audio_date_t pts;
  81.     /*
  82.      * libtoolame properties
  83.      */
  84.     toolame_options *p_toolame;
  85.     unsigned char p_out_buffer[MAX_CODED_FRAME_SIZE];
  86. };
  87. /*****************************************************************************
  88.  * OpenEncoder: probe the encoder and return score
  89.  *****************************************************************************/
  90. static int OpenEncoder( vlc_object_t *p_this )
  91. {
  92.     encoder_t *p_enc = (encoder_t *)p_this;
  93.     encoder_sys_t *p_sys;
  94.     vlc_value_t val;
  95.     if( p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','g','a') &&
  96.         p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','2','a') &&
  97.         p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','2',' ') &&
  98.         !p_enc->b_force )
  99.     {
  100.         return VLC_EGENERIC;
  101.     }
  102.     if( p_enc->fmt_in.audio.i_channels > 2 )
  103.     {
  104.         msg_Err( p_enc, "doesn't support > 2 channels" );
  105.         return VLC_EGENERIC;
  106.     }
  107.     /* Allocate the memory needed to store the decoder's structure */
  108.     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
  109.     {
  110.         msg_Err( p_enc, "out of memory" );
  111.         return VLC_EGENERIC;
  112.     }
  113.     p_enc->p_sys = p_sys;
  114.     p_enc->pf_encode_audio = Encode;
  115.     p_enc->fmt_in.i_codec = AOUT_FMT_S16_NE;
  116.     p_enc->fmt_out.i_codec = VLC_FOURCC('m','p','g','a');
  117.     sout_CfgParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
  118.     p_sys->p_toolame = toolame_init();
  119.     /* Set options */
  120.     toolame_setSampleFreq( p_sys->p_toolame, p_enc->fmt_out.audio.i_rate );
  121.     var_Get( p_enc, ENC_CFG_PREFIX "vbr", &val );
  122.     if ( val.b_bool )
  123.     {
  124.         FLOAT i_quality;
  125.         var_Get( p_enc, ENC_CFG_PREFIX "quality", &val );
  126.         i_quality = val.i_int;
  127.         if ( i_quality > 50.0 ) i_quality = 50.0;
  128.         if ( i_quality < 0.0 ) i_quality = 0.0;
  129.         toolame_setVBR( p_sys->p_toolame, 1 );
  130.         toolame_setVBRLevel( p_sys->p_toolame, i_quality );
  131.     }
  132.     else
  133.     {
  134.         toolame_setBitrate( p_sys->p_toolame, p_enc->fmt_out.i_bitrate / 1000 );
  135.     }
  136.     if ( p_enc->fmt_in.audio.i_channels == 1 )
  137.     {
  138.         toolame_setMode( p_sys->p_toolame, MPG_MD_MONO );
  139.     }
  140.     else
  141.     {
  142.         var_Get( p_enc, ENC_CFG_PREFIX "mode", &val );
  143.         switch ( val.i_int )
  144.         {
  145.         case 1:
  146.             toolame_setMode( p_sys->p_toolame, MPG_MD_DUAL_CHANNEL );
  147.             break;
  148.         case 2:
  149.             toolame_setMode( p_sys->p_toolame, MPG_MD_JOINT_STEREO );
  150.             break;
  151.         case 0:
  152.         default:
  153.             toolame_setMode( p_sys->p_toolame, MPG_MD_STEREO );
  154.             break;
  155.         }
  156.     }
  157.     if ( toolame_init_params( p_sys->p_toolame ) )
  158.     {
  159.         msg_Err( p_enc, "toolame initialization failed" );
  160.         return -VLC_EGENERIC;
  161.     }
  162.     p_sys->i_nb_samples = 0;
  163.     aout_DateInit( &p_sys->pts, p_enc->fmt_out.audio.i_rate );
  164.     return VLC_SUCCESS;
  165. }
  166. /****************************************************************************
  167.  * Encode: the whole thing
  168.  ****************************************************************************
  169.  * This function spits out MPEG packets.
  170.  ****************************************************************************/
  171. static void Uninterleave( encoder_t *p_enc, int16_t *p_in, int i_nb_samples )
  172. {
  173.     int16_t *p_left = p_enc->p_sys->p_left + p_enc->p_sys->i_nb_samples;
  174.     int16_t *p_right = p_enc->p_sys->p_right + p_enc->p_sys->i_nb_samples;
  175.     while ( i_nb_samples > 0 )
  176.     {
  177.         *p_left++ = *p_in++;
  178.         *p_right++ = *p_in++;
  179.         i_nb_samples--;
  180.     }
  181. }
  182. static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
  183. {
  184.     encoder_sys_t *p_sys = p_enc->p_sys;
  185.     int16_t *p_buffer = (int16_t *)p_aout_buf->p_buffer;
  186.     int i_nb_samples = p_aout_buf->i_nb_samples;
  187.     block_t *p_chain = NULL;
  188.     mtime_t i_computed_pts = p_aout_buf->start_date -
  189.                 (mtime_t)1000000 * (mtime_t)p_sys->i_nb_samples /
  190.                 (mtime_t)p_enc->fmt_in.audio.i_rate;
  191.     if ( aout_DateGet( &p_sys->pts ) - i_computed_pts > 10000 ||
  192.          aout_DateGet( &p_sys->pts ) - i_computed_pts < -10000 )
  193.     {
  194.         msg_Dbg( p_enc, "resetting audio date" );
  195.         aout_DateSet( &p_sys->pts, i_computed_pts );
  196.     }
  197.     while ( p_sys->i_nb_samples + i_nb_samples >= MPEG_FRAME_SIZE )
  198.     {
  199.         int i_used;
  200.         block_t *p_block;
  201.         Uninterleave( p_enc, p_buffer, MPEG_FRAME_SIZE - p_sys->i_nb_samples );
  202.         i_nb_samples -= MPEG_FRAME_SIZE - p_sys->i_nb_samples;
  203.         p_buffer += (MPEG_FRAME_SIZE - p_sys->i_nb_samples) * 2;
  204.         toolame_encode_buffer( p_sys->p_toolame, p_sys->p_left,
  205.                                p_sys->p_right, MPEG_FRAME_SIZE,
  206.                                p_sys->p_out_buffer, MAX_CODED_FRAME_SIZE,
  207.                                &i_used );
  208.         p_sys->i_nb_samples = 0;
  209.         p_block = block_New( p_enc, i_used );
  210.         p_enc->p_vlc->pf_memcpy( p_block->p_buffer, p_sys->p_out_buffer,
  211.                                  i_used );
  212.         p_block->i_length = (mtime_t)1000000 *
  213.                 (mtime_t)MPEG_FRAME_SIZE / (mtime_t)p_enc->fmt_in.audio.i_rate;
  214.         p_block->i_dts = p_block->i_pts = aout_DateGet( &p_sys->pts );
  215.         aout_DateIncrement( &p_sys->pts, MPEG_FRAME_SIZE );
  216.         block_ChainAppend( &p_chain, p_block );
  217.     }
  218.     if ( i_nb_samples )
  219.     {
  220.         Uninterleave( p_enc, p_buffer, i_nb_samples );
  221.         p_sys->i_nb_samples += i_nb_samples;
  222.     }
  223.     return p_chain;
  224. }
  225. /*****************************************************************************
  226.  * CloseEncoder: toolame encoder destruction
  227.  *****************************************************************************/
  228. static void CloseEncoder( vlc_object_t *p_this )
  229. {
  230.     encoder_t *p_enc = (encoder_t *)p_this;
  231.     encoder_sys_t *p_sys = p_enc->p_sys;
  232.     toolame_deinit( p_sys->p_toolame );
  233.     free( p_sys );
  234. }