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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * twolame.c: libtwolame encoder (MPEG-1/2 layer II) module
  3.  *            (using libtwolame from http://users.tpg.com.au/adslblvi/)
  4.  *****************************************************************************
  5.  * Copyright (C) 2004-2005 the VideoLAN team
  6.  * $Id: 787cbf87fe94864872c735e70b1ab3b89d027876 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_codec.h>
  33. #include <vlc_sout.h>
  34. #include <vlc_aout.h>
  35. #include <twolame.h>
  36. #define MPEG_FRAME_SIZE 1152
  37. #define MAX_CODED_FRAME_SIZE 1792
  38. /****************************************************************************
  39.  * Local prototypes
  40.  ****************************************************************************/
  41. static int OpenEncoder   ( vlc_object_t * );
  42. static void CloseEncoder ( vlc_object_t * );
  43. static block_t *Encode   ( encoder_t *, aout_buffer_t * );
  44. /*****************************************************************************
  45.  * Module descriptor
  46.  *****************************************************************************/
  47. #define ENC_CFG_PREFIX "sout-twolame-"
  48. #define ENC_QUALITY_TEXT N_("Encoding quality")
  49. #define ENC_QUALITY_LONGTEXT N_( 
  50.   "Force a specific encoding quality between 0.0 (high) and 50.0 (low), " 
  51.   "instead of specifying a particular bitrate. " 
  52.   "This will produce a VBR stream." )
  53. #define ENC_MODE_TEXT N_("Stereo mode")
  54. #define ENC_MODE_LONGTEXT N_( "Handling mode for stereo streams" )
  55. #define ENC_VBR_TEXT N_("VBR mode")
  56. #define ENC_VBR_LONGTEXT N_( 
  57.   "Use Variable BitRate. Default is to use Constant BitRate (CBR)." )
  58. #define ENC_PSY_TEXT N_("Psycho-acoustic model")
  59. #define ENC_PSY_LONGTEXT N_( 
  60.   "Integer from -1 (no model) to 4." )
  61. static const int pi_stereo_values[] = { 0, 1, 2 };
  62. static const char *const ppsz_stereo_descriptions[] =
  63. { N_("Stereo"), N_("Dual mono"), N_("Joint stereo") };
  64. vlc_module_begin ()
  65.     set_shortname( "Twolame")
  66.     set_description( N_("Libtwolame audio encoder") )
  67.     set_capability( "encoder", 50 )
  68.     set_callbacks( OpenEncoder, CloseEncoder )
  69.     set_category( CAT_INPUT )
  70.     set_subcategory( SUBCAT_INPUT_ACODEC )
  71.     add_float( ENC_CFG_PREFIX "quality", 0.0, NULL, ENC_QUALITY_TEXT,
  72.                ENC_QUALITY_LONGTEXT, false )
  73.     add_integer( ENC_CFG_PREFIX "mode", 0, NULL, ENC_MODE_TEXT,
  74.                  ENC_MODE_LONGTEXT, false )
  75.         change_integer_list( pi_stereo_values, ppsz_stereo_descriptions, NULL );
  76.     add_bool( ENC_CFG_PREFIX "vbr", 0, NULL, ENC_VBR_TEXT,
  77.               ENC_VBR_LONGTEXT, false )
  78.     add_integer( ENC_CFG_PREFIX "psy", 3, NULL, ENC_PSY_TEXT,
  79.                  ENC_PSY_LONGTEXT, false )
  80. vlc_module_end ()
  81. static const char *const ppsz_enc_options[] = {
  82.     "quality", "mode", "vbr", "psy", NULL
  83. };
  84. /*****************************************************************************
  85.  * encoder_sys_t : twolame encoder descriptor
  86.  *****************************************************************************/
  87. struct encoder_sys_t
  88. {
  89.     /*
  90.      * Input properties
  91.      */
  92.     int16_t p_buffer[MPEG_FRAME_SIZE * 2];
  93.     int i_nb_samples;
  94.     mtime_t i_pts;
  95.     /*
  96.      * libtwolame properties
  97.      */
  98.     twolame_options *p_twolame;
  99.     unsigned char p_out_buffer[MAX_CODED_FRAME_SIZE];
  100. };
  101. /*****************************************************************************
  102.  * OpenEncoder: probe the encoder and return score
  103.  *****************************************************************************/
  104. static const uint16_t mpa_bitrate_tab[2][15] =
  105. {
  106.     {0, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384},
  107.     {0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160}
  108. };
  109. static const uint16_t mpa_freq_tab[6] =
  110. { 44100, 48000, 32000, 22050, 24000, 16000 };
  111. static int OpenEncoder( vlc_object_t *p_this )
  112. {
  113.     encoder_t *p_enc = (encoder_t *)p_this;
  114.     encoder_sys_t *p_sys;
  115.     vlc_value_t val;
  116.     int i_frequency;
  117.     if( p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','g','a') &&
  118.         p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','2','a') &&
  119.         p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','2',' ') &&
  120.         !p_enc->b_force )
  121.     {
  122.         return VLC_EGENERIC;
  123.     }
  124.     if( p_enc->fmt_in.audio.i_channels > 2 )
  125.     {
  126.         msg_Err( p_enc, "doesn't support > 2 channels" );
  127.         return VLC_EGENERIC;
  128.     }
  129.     for ( i_frequency = 0; i_frequency < 6; i_frequency++ )
  130.     {
  131.         if ( p_enc->fmt_out.audio.i_rate == mpa_freq_tab[i_frequency] )
  132.             break;
  133.     }
  134.     if ( i_frequency == 6 )
  135.     {
  136.         msg_Err( p_enc, "MPEG audio doesn't support frequency=%d",
  137.                  p_enc->fmt_out.audio.i_rate );
  138.         return VLC_EGENERIC;
  139.     }
  140.     /* Allocate the memory needed to store the decoder's structure */
  141.     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
  142.         return VLC_ENOMEM;
  143.     p_enc->p_sys = p_sys;
  144.     p_enc->pf_encode_audio = Encode;
  145.     p_enc->fmt_in.i_codec = AOUT_FMT_S16_NE;
  146.     p_enc->fmt_out.i_cat = AUDIO_ES;
  147.     p_enc->fmt_out.i_codec = VLC_FOURCC('m','p','g','a');
  148.     config_ChainParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
  149.     p_sys->p_twolame = twolame_init();
  150.     /* Set options */
  151.     twolame_set_in_samplerate( p_sys->p_twolame, p_enc->fmt_out.audio.i_rate );
  152.     twolame_set_out_samplerate( p_sys->p_twolame, p_enc->fmt_out.audio.i_rate );
  153.     var_Get( p_enc, ENC_CFG_PREFIX "vbr", &val );
  154.     if ( val.b_bool )
  155.     {
  156.         float i_quality;
  157.         var_Get( p_enc, ENC_CFG_PREFIX "quality", &val );
  158.         i_quality = val.i_int;
  159.         if ( i_quality > 50.0 ) i_quality = 50.0;
  160.         if ( i_quality < 0.0 ) i_quality = 0.0;
  161.         twolame_set_VBR( p_sys->p_twolame, 1 );
  162.         twolame_set_VBR_q( p_sys->p_twolame, i_quality );
  163.     }
  164.     else
  165.     {
  166.         int i;
  167.         for ( i = 1; i < 14; i++ )
  168.         {
  169.             if ( p_enc->fmt_out.i_bitrate / 1000
  170.                   <= mpa_bitrate_tab[i_frequency / 3][i] )
  171.                 break;
  172.         }
  173.         if ( p_enc->fmt_out.i_bitrate / 1000
  174.               != mpa_bitrate_tab[i_frequency / 3][i] )
  175.         {
  176.             msg_Warn( p_enc, "MPEG audio doesn't support bitrate=%d, using %d",
  177.                       p_enc->fmt_out.i_bitrate,
  178.                       mpa_bitrate_tab[i_frequency / 3][i] * 1000 );
  179.             p_enc->fmt_out.i_bitrate = mpa_bitrate_tab[i_frequency / 3][i]
  180.                                         * 1000;
  181.         }
  182.         twolame_set_bitrate( p_sys->p_twolame,
  183.                              p_enc->fmt_out.i_bitrate / 1000 );
  184.     }
  185.     if ( p_enc->fmt_in.audio.i_channels == 1 )
  186.     {
  187.         twolame_set_num_channels( p_sys->p_twolame, 1 );
  188.         twolame_set_mode( p_sys->p_twolame, TWOLAME_MONO );
  189.     }
  190.     else
  191.     {
  192.         twolame_set_num_channels( p_sys->p_twolame, 2 );
  193.         var_Get( p_enc, ENC_CFG_PREFIX "mode", &val );
  194.         switch ( val.i_int )
  195.         {
  196.         case 1:
  197.             twolame_set_mode( p_sys->p_twolame, TWOLAME_DUAL_CHANNEL );
  198.             break;
  199.         case 2:
  200.             twolame_set_mode( p_sys->p_twolame, TWOLAME_JOINT_STEREO );
  201.             break;
  202.         case 0:
  203.         default:
  204.             twolame_set_mode( p_sys->p_twolame, TWOLAME_STEREO );
  205.             break;
  206.         }
  207.     }
  208.     var_Get( p_enc, ENC_CFG_PREFIX "psy", &val );
  209.     twolame_set_psymodel( p_sys->p_twolame, val.i_int );
  210.     if ( twolame_init_params( p_sys->p_twolame ) )
  211.     {
  212.         msg_Err( p_enc, "twolame initialization failed" );
  213.         return -VLC_EGENERIC;
  214.     }
  215.     p_sys->i_nb_samples = 0;
  216.     return VLC_SUCCESS;
  217. }
  218. /****************************************************************************
  219.  * Encode: the whole thing
  220.  ****************************************************************************
  221.  * This function spits out MPEG packets.
  222.  ****************************************************************************/
  223. static void Bufferize( encoder_t *p_enc, int16_t *p_in, int i_nb_samples )
  224. {
  225.     int16_t *p_buffer = p_enc->p_sys->p_buffer
  226.                          + (p_enc->p_sys->i_nb_samples
  227.                              * p_enc->fmt_in.audio.i_channels);
  228.     memcpy( p_buffer, p_in, i_nb_samples * p_enc->fmt_in.audio.i_channels
  229.                              * sizeof(int16_t) );
  230. }
  231. static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
  232. {
  233.     encoder_sys_t *p_sys = p_enc->p_sys;
  234.     int16_t *p_buffer = (int16_t *)p_aout_buf->p_buffer;
  235.     int i_nb_samples = p_aout_buf->i_nb_samples;
  236.     block_t *p_chain = NULL;
  237.     p_sys->i_pts = p_aout_buf->start_date -
  238.                 (mtime_t)1000000 * (mtime_t)p_sys->i_nb_samples /
  239.                 (mtime_t)p_enc->fmt_out.audio.i_rate;
  240.     while ( p_sys->i_nb_samples + i_nb_samples >= MPEG_FRAME_SIZE )
  241.     {
  242.         int i_used;
  243.         block_t *p_block;
  244.         Bufferize( p_enc, p_buffer, MPEG_FRAME_SIZE - p_sys->i_nb_samples );
  245.         i_nb_samples -= MPEG_FRAME_SIZE - p_sys->i_nb_samples;
  246.         p_buffer += (MPEG_FRAME_SIZE - p_sys->i_nb_samples) * 2;
  247.         i_used = twolame_encode_buffer_interleaved( p_sys->p_twolame,
  248.                                p_sys->p_buffer, MPEG_FRAME_SIZE,
  249.                                p_sys->p_out_buffer, MAX_CODED_FRAME_SIZE );
  250.         p_sys->i_nb_samples = 0;
  251.         p_block = block_New( p_enc, i_used );
  252.         vlc_memcpy( p_block->p_buffer, p_sys->p_out_buffer, i_used );
  253.         p_block->i_length = (mtime_t)1000000 *
  254.                 (mtime_t)MPEG_FRAME_SIZE / (mtime_t)p_enc->fmt_out.audio.i_rate;
  255.         p_block->i_dts = p_block->i_pts = p_sys->i_pts;
  256.         p_sys->i_pts += p_block->i_length;
  257.         block_ChainAppend( &p_chain, p_block );
  258.     }
  259.     if ( i_nb_samples )
  260.     {
  261.         Bufferize( p_enc, p_buffer, i_nb_samples );
  262.         p_sys->i_nb_samples += i_nb_samples;
  263.     }
  264.     return p_chain;
  265. }
  266. /*****************************************************************************
  267.  * CloseEncoder: twolame encoder destruction
  268.  *****************************************************************************/
  269. static void CloseEncoder( vlc_object_t *p_this )
  270. {
  271.     encoder_t *p_enc = (encoder_t *)p_this;
  272.     encoder_sys_t *p_sys = p_enc->p_sys;
  273.     twolame_close( &p_sys->p_twolame );
  274.     free( p_sys );
  275. }