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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * shine_mod.c: MP3 encoder using Shine, a fixed point implementation
  3.  *****************************************************************************
  4.  * Copyright (C) 2008-2009 M2X
  5.  *
  6.  * Authors: Rafaël Carré <rcarre@m2x.nl>
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  21.  *****************************************************************************/
  22. /*****************************************************************************
  23.  * Preamble
  24.  *****************************************************************************/
  25. #ifdef HAVE_CONFIG_H
  26. # include "config.h"
  27. #endif
  28. #include <vlc_common.h>
  29. #include <vlc_plugin.h>
  30. #include <vlc_codec.h>
  31. #include <vlc_aout.h>
  32. #include <vlc_block.h>
  33. #include <vlc_block_helper.h>
  34. #include <vlc_bits.h>
  35. #include <assert.h>
  36. #include <inttypes.h>
  37. /* shine.c uses a lot of static variables, so we include the C file to keep
  38.  * the scope.
  39.  * Note that it makes this decoder non reentrant, this is why we set
  40.  * b_reentrant to VLC_FALSE in the module initialisation */
  41. #include "shine.c"
  42. struct encoder_sys_t
  43. {
  44.     block_fifo_t *p_fifo;
  45.     unsigned int i_buffer;
  46.     uint8_t *p_buffer;
  47. };
  48. /*****************************************************************************
  49.  * Local prototypes
  50.  *****************************************************************************/
  51. static int  OpenEncoder   ( vlc_object_t * );
  52. static void CloseEncoder  ( vlc_object_t * );
  53. static block_t *EncodeFrame  ( encoder_t *, aout_buffer_t * );
  54. vlc_module_begin();
  55.     set_category( CAT_INPUT );
  56.     set_subcategory( SUBCAT_INPUT_ACODEC );
  57.     set_description( _("MP3 fixed point audio encoder") );
  58.     set_capability( "encoder", 50 );
  59.     set_callbacks( OpenEncoder, CloseEncoder );
  60. vlc_module_end();
  61. static int OpenEncoder( vlc_object_t *p_this )
  62. {
  63.     encoder_t *p_enc = (encoder_t*)p_this;
  64.     encoder_sys_t *p_sys;
  65.     /* FIXME: what about layers 1 and 2 ? shine is an 'MP3' encoder */
  66.     if( p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','3',' ') ||
  67.         p_enc->fmt_out.audio.i_channels > 2 )
  68.         return VLC_EGENERIC;
  69.     /* Shine is strict on its input */
  70.     if( p_enc->fmt_in.audio.i_channels != 2 )
  71.     {
  72.         msg_Err( p_enc, "Only stereo input is accepted, rejecting %d channels",
  73.             p_enc->fmt_in.audio.i_channels );
  74.         return VLC_EGENERIC;
  75.     }
  76.     if( p_enc->fmt_out.i_bitrate <= 0 )
  77.     {
  78.         msg_Err( p_enc, "unknown bitrate" );
  79.         return VLC_EGENERIC;
  80.     }
  81.     msg_Dbg( p_enc, "bitrate %d, samplerate %d, channels %d",
  82.              p_enc->fmt_out.i_bitrate, p_enc->fmt_out.audio.i_rate,
  83.              p_enc->fmt_out.audio.i_channels );
  84.     p_enc->p_sys = p_sys = calloc( 1, sizeof( *p_sys ) );
  85.     if( !p_sys )
  86.         return VLC_ENOMEM;
  87.     if( !( p_sys->p_fifo = block_FifoNew() ) )
  88.     {
  89.         free( p_sys );
  90.         return VLC_ENOMEM;
  91.     }
  92.     init_mp3_encoder_engine( p_enc->fmt_out.audio.i_rate,
  93.         p_enc->fmt_out.audio.i_channels, p_enc->fmt_out.i_bitrate / 1000 );
  94.     p_enc->pf_encode_audio = EncodeFrame;
  95.     p_enc->fmt_out.i_cat = AUDIO_ES;
  96.     return VLC_SUCCESS;
  97. }
  98. /* We split/pack PCM blocks to a fixed size: pcm_chunk_size bytes */
  99. static block_t *GetPCM( encoder_t *p_enc, aout_buffer_t *p_block )
  100. {
  101.     encoder_sys_t *p_sys = p_enc->p_sys;
  102.     block_t *p_pcm_block;
  103.     if( !p_block ) goto buffered; /* just return a block if we can */
  104.     /* Put the PCM samples sent by VLC in the Fifo */
  105.     while( p_sys->i_buffer + p_block->i_nb_bytes >= pcm_chunk_size )
  106.     {
  107.         unsigned int i_buffer = 0;
  108.         p_pcm_block = block_New( p_enc, pcm_chunk_size );
  109.         if( !p_pcm_block )
  110.             break;
  111.         if( p_sys->i_buffer )
  112.         {
  113.             vlc_memcpy( p_pcm_block->p_buffer, p_sys->p_buffer, p_sys->i_buffer );
  114.             i_buffer = p_sys->i_buffer;
  115.             p_sys->i_buffer = 0;
  116.             free( p_sys->p_buffer );
  117.         }
  118.         vlc_memcpy( p_pcm_block->p_buffer + i_buffer,
  119.                     p_block->p_buffer, pcm_chunk_size - i_buffer );
  120.         p_block->p_buffer += pcm_chunk_size - i_buffer;
  121.         p_block->i_nb_bytes -= pcm_chunk_size - i_buffer;
  122.         block_FifoPut( p_sys->p_fifo, p_pcm_block );
  123.     }
  124.     /* We hadn't enough data to make a block, put it in standby */
  125.     if( p_block->i_nb_bytes )
  126.     {
  127.         uint8_t *p_tmp;
  128.         if( p_sys->i_buffer > 0 )
  129.             p_tmp = realloc( p_sys->p_buffer, p_block->i_nb_bytes + p_sys->i_buffer );
  130.         else
  131.             p_tmp = malloc( p_block->i_nb_bytes );
  132.         if( !p_tmp )
  133.         {
  134.             p_sys->i_buffer = 0;
  135.             free( p_sys->p_buffer );
  136.             p_sys->p_buffer = NULL;
  137.             return NULL;
  138.         }
  139.         p_sys->p_buffer = p_tmp;
  140.         vlc_memcpy( p_sys->p_buffer + p_sys->i_buffer,
  141.                     p_block->p_buffer, p_block->i_nb_bytes );
  142.         p_sys->i_buffer += p_block->i_nb_bytes;
  143.         p_block->i_nb_bytes = 0;
  144.     }
  145. buffered:
  146.     /* and finally get a block back */
  147.     return block_FifoCount( p_sys->p_fifo ) > 0 ? block_FifoGet( p_sys->p_fifo ) : NULL;
  148. }
  149. static block_t *EncodeFrame( encoder_t *p_enc, aout_buffer_t *p_block )
  150. {
  151.     encoder_sys_t *p_sys = (encoder_sys_t *)p_enc->p_sys;
  152.     block_t *p_pcm_block;
  153.     block_t *p_chain = NULL;
  154.     unsigned int i_samples = p_block->i_nb_bytes >> 2 /* s16l stereo */;
  155.     mtime_t start_date = p_block->start_date;
  156.     start_date -= (mtime_t)i_samples * (mtime_t)1000000 / (mtime_t)p_enc->fmt_out.audio.i_rate;
  157.     do {
  158.         p_pcm_block = GetPCM( p_enc, p_block );
  159.         if( !p_pcm_block )
  160.             break;
  161.         p_block = NULL; /* we don't need it anymore */
  162.         uint32_t enc_buffer[16384]; /* storage for 65536 Bytes XXX: too much */
  163.         struct enc_chunk_hdr *chunk = (void*) enc_buffer;
  164.         chunk->enc_data = ENC_CHUNK_SKIP_HDR(chunk->enc_data, chunk);
  165.         encode_frame( (char*)p_pcm_block->p_buffer, chunk );
  166.         block_Release( p_pcm_block );
  167.         block_t *p_mp3_block = block_New( p_enc, chunk->enc_size );
  168.         if( !p_mp3_block )
  169.             break;
  170.         vlc_memcpy( p_mp3_block->p_buffer, chunk->enc_data, chunk->enc_size );
  171.         /* date management */
  172.         p_mp3_block->i_length = SAMP_PER_FRAME1 * 1000000 /
  173.             p_enc->fmt_out.audio.i_rate;
  174.         start_date += p_mp3_block->i_length;
  175.         p_mp3_block->i_dts = p_mp3_block->i_pts = start_date;
  176.         p_mp3_block->i_samples = SAMP_PER_FRAME1;
  177.         block_ChainAppend( &p_chain, p_mp3_block );
  178.     } while( p_pcm_block );
  179.     return p_chain;
  180. }
  181. static void CloseEncoder( vlc_object_t *p_this )
  182. {
  183.     encoder_sys_t *p_sys = ((encoder_t*)p_this)->p_sys;
  184.     /* TODO: we should send the last PCM block padded with 0
  185.      * But we don't know if other blocks will come before it's too late */
  186.     if( p_sys->i_buffer )
  187.         free( p_sys->p_buffer );
  188.     block_FifoRelease( p_sys->p_fifo );
  189.     free( p_sys );
  190. }