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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * mpgatofixed32.c: MPEG-1 & 2 audio layer I, II, III + MPEG 2.5 decoder,
  3.  * using MAD (MPEG Audio Decoder)
  4.  *****************************************************************************
  5.  * Copyright (C) 2001 by Jean-Paul Saman
  6.  * $Id: mpgatofixed32.c 8666 2004-09-08 14:10:20Z gbazin $
  7.  *
  8.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  9.  *          Jean-Paul Saman <jpsaman@wxs.nl>
  10.  *      
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  * 
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #include <stdlib.h>                                      /* malloc(), free() */
  29. #include <string.h>                                              /* strdup() */
  30. #include <mad.h>
  31. #include <vlc/vlc.h>
  32. #include <vlc/decoder.h>
  33. #include "aout_internal.h"
  34. #include "vlc_filter.h"
  35. /*****************************************************************************
  36.  * Local prototypes
  37.  *****************************************************************************/
  38. static int  Create    ( vlc_object_t * );
  39. static void Destroy   ( vlc_object_t * );
  40. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,  
  41.                         aout_buffer_t * );
  42. static int  OpenFilter ( vlc_object_t * );
  43. static void CloseFilter( vlc_object_t * );
  44. static block_t *Convert( filter_t *, block_t * );
  45. /*****************************************************************************
  46.  * Local structures
  47.  *****************************************************************************/
  48. struct filter_sys_t
  49. {
  50.     struct mad_stream mad_stream;
  51.     struct mad_frame mad_frame;
  52.     struct mad_synth mad_synth;
  53. };
  54. /*****************************************************************************
  55.  * Module descriptor
  56.  *****************************************************************************/
  57. vlc_module_begin();
  58.     set_description( _("MPEG audio decoder") );
  59.     set_capability( "audio filter", 100 );
  60.     set_callbacks( Create, Destroy );
  61.     add_submodule();
  62.     set_description( _("MPEG audio decoder") );
  63.     set_capability( "audio filter2", 100 );
  64.     set_callbacks( OpenFilter, CloseFilter );
  65. vlc_module_end();
  66. /*****************************************************************************
  67.  * Create: 
  68.  *****************************************************************************/
  69. static int Create( vlc_object_t *p_this )
  70. {
  71.     aout_filter_t *p_filter = (aout_filter_t *)p_this;
  72.     struct filter_sys_t *p_sys;
  73.     if ( (p_filter->input.i_format != VLC_FOURCC('m','p','g','a')
  74.            && p_filter->input.i_format != VLC_FOURCC('m','p','g','3'))
  75.             || (p_filter->output.i_format != VLC_FOURCC('f','l','3','2')
  76.                  && p_filter->output.i_format != VLC_FOURCC('f','i','3','2')) )
  77.     {
  78.         return -1;
  79.     }
  80.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  81.     {
  82.         return -1;
  83.     }
  84.     /* Allocate the memory needed to store the module's structure */
  85.     p_sys = malloc( sizeof(filter_sys_t) );
  86.     p_filter->p_sys = (struct aout_filter_sys_t *)p_sys;
  87.     if( p_sys == NULL )
  88.     {
  89.         msg_Err( p_filter, "out of memory" );
  90.         return -1;
  91.     }
  92.     /* Initialize libmad */
  93.     mad_stream_init( &p_sys->mad_stream );
  94.     mad_frame_init( &p_sys->mad_frame );
  95.     mad_synth_init( &p_sys->mad_synth );
  96.     mad_stream_options( &p_sys->mad_stream, MAD_OPTION_IGNORECRC );
  97.     p_filter->pf_do_work = DoWork;
  98.     p_filter->b_in_place = 0;
  99.     return 0;
  100. }
  101. /*****************************************************************************
  102.  * DoWork: decode an MPEG audio frame.
  103.  *****************************************************************************/
  104. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  105.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  106. {
  107.     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
  108.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  109.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_samples * sizeof(vlc_fixed_t) * 
  110.                                aout_FormatNbChannels( &p_filter->input );
  111.     /* Do the actual decoding now. */
  112.     mad_stream_buffer( &p_sys->mad_stream, p_in_buf->p_buffer,
  113.                        p_in_buf->i_nb_bytes );
  114.     if ( mad_frame_decode( &p_sys->mad_frame, &p_sys->mad_stream ) == -1 )
  115.     {
  116.         msg_Dbg( p_aout, "libmad error: %s",
  117.                   mad_stream_errorstr( &p_sys->mad_stream ) );
  118.         if( p_filter->output.i_format == VLC_FOURCC('f','l','3','2') )
  119.         {
  120.             int i;
  121.             int i_size = p_out_buf->i_nb_bytes / sizeof(float);
  122.             
  123.             float * a = (float *)p_out_buf->p_buffer;
  124.             for ( i = 0 ; i < i_size ; i++ )
  125.                 *a++ = 0.0;
  126.         }
  127.         else
  128.         {
  129.             memset( p_out_buf->p_buffer, 0, p_out_buf->i_nb_bytes );
  130.         }
  131.         return;
  132.     }
  133.     mad_synth_frame( &p_sys->mad_synth, &p_sys->mad_frame );
  134.     if ( p_filter->output.i_format == VLC_FOURCC('f','i','3','2') )
  135.     {
  136.         /* Interleave and keep buffers in mad_fixed_t format */
  137.         mad_fixed_t * p_samples = (mad_fixed_t *)p_out_buf->p_buffer;
  138.         struct mad_pcm * p_pcm = &p_sys->mad_synth.pcm;
  139.         unsigned int i_samples = p_pcm->length;
  140.         mad_fixed_t const * p_left = p_pcm->samples[0];
  141.         mad_fixed_t const * p_right = p_pcm->samples[1];
  142.         switch ( p_pcm->channels )
  143.         {
  144.         case 2:
  145.             while ( i_samples-- )
  146.             {
  147.                 *p_samples++ = *p_left++;
  148.                 *p_samples++ = *p_right++;
  149.             }
  150.             break;
  151.         case 1:
  152.             p_filter->p_vlc->pf_memcpy( p_samples, p_left,
  153.                                         i_samples * sizeof(mad_fixed_t) );
  154.             break;
  155.         default:
  156.             msg_Err( p_filter, "cannot interleave %i channels",
  157.                      p_pcm->channels );
  158.         }
  159.     }
  160.     else
  161.     {
  162.         /* float32 */
  163.         float * p_samples = (float *)p_out_buf->p_buffer;
  164.         struct mad_pcm * p_pcm = &p_sys->mad_synth.pcm;
  165.         unsigned int i_samples = p_pcm->length;
  166.         mad_fixed_t const * p_left = p_pcm->samples[0];
  167.         mad_fixed_t const * p_right = p_pcm->samples[1];
  168.         float f_temp = (float)FIXED32_ONE;
  169.         
  170.         switch ( p_pcm->channels )
  171.         {
  172.         case 2:
  173.             while ( i_samples-- )
  174.             {
  175.                 *p_samples++ = (float)*p_left++ / f_temp;
  176.                 *p_samples++ = (float)*p_right++ / f_temp;
  177.             }
  178.             break;
  179.         case 1:
  180.             while ( i_samples-- )
  181.             {
  182.                 *p_samples++ = (float)*p_left++ / f_temp;
  183.             }
  184.             break;
  185.         default:
  186.             msg_Err( p_filter, "cannot interleave %i channels",
  187.                      p_pcm->channels );
  188.         }
  189.     }
  190. }
  191. /*****************************************************************************
  192.  * Destroy : deallocate data structures
  193.  *****************************************************************************/
  194. static void Destroy( vlc_object_t *p_this )
  195. {
  196.     aout_filter_t *p_filter = (aout_filter_t *)p_this;
  197.     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
  198.     mad_synth_finish( &p_sys->mad_synth );
  199.     mad_frame_finish( &p_sys->mad_frame );
  200.     mad_stream_finish( &p_sys->mad_stream );
  201.     free( p_sys );
  202. }
  203. /*****************************************************************************
  204.  * OpenFilter: 
  205.  *****************************************************************************/
  206. static int OpenFilter( vlc_object_t *p_this )
  207. {
  208.     filter_t *p_filter = (filter_t *)p_this;
  209.     filter_sys_t *p_sys;
  210.     if( p_filter->fmt_in.i_codec != VLC_FOURCC('m','p','g','a') &&
  211.         p_filter->fmt_in.i_codec != VLC_FOURCC('m','p','g','3') )
  212.     {
  213.         return VLC_EGENERIC;
  214.     }
  215.     /* Allocate the memory needed to store the module's structure */
  216.     p_sys = p_filter->p_sys = malloc( sizeof(filter_sys_t) );
  217.     if( p_sys == NULL )
  218.     {
  219.         msg_Err( p_filter, "out of memory" );
  220.         return -1;
  221.     }
  222.     p_filter->pf_audio_filter = Convert;
  223.     /* Initialize libmad */
  224.     mad_stream_init( &p_sys->mad_stream );
  225.     mad_frame_init( &p_sys->mad_frame );
  226.     mad_synth_init( &p_sys->mad_synth );
  227.     mad_stream_options( &p_sys->mad_stream, MAD_OPTION_IGNORECRC );
  228.     msg_Dbg( p_this, "%4.4s->%4.4s, bits per sample: %i",
  229.              (char *)&p_filter->fmt_in.i_codec,
  230.              (char *)&p_filter->fmt_out.i_codec,
  231.              p_filter->fmt_out.audio.i_bitspersample );
  232.     p_filter->fmt_out.i_codec =
  233.         p_filter->fmt_out.audio.i_format = VLC_FOURCC('f','l','3','2');
  234.     p_filter->fmt_out.audio.i_bitspersample = sizeof(float);
  235.     return 0;
  236. }
  237. /*****************************************************************************
  238.  * CloseFilter : deallocate data structures
  239.  *****************************************************************************/
  240. static void CloseFilter( vlc_object_t *p_this )
  241. {
  242.     filter_t *p_filter = (filter_t *)p_this;
  243.     filter_sys_t *p_sys = p_filter->p_sys;
  244.     mad_synth_finish( &p_sys->mad_synth );
  245.     mad_frame_finish( &p_sys->mad_frame );
  246.     mad_stream_finish( &p_sys->mad_stream );
  247.     free( p_sys );
  248. }
  249. static block_t *Convert( filter_t *p_filter, block_t *p_block )
  250. {
  251.     aout_filter_t aout_filter;
  252.     aout_buffer_t in_buf, out_buf;
  253.     block_t *p_out;
  254.     int i_out_size;
  255.     if( !p_block || !p_block->i_samples )
  256.     {
  257.         if( p_block ) p_block->pf_release( p_block );
  258.         return NULL;
  259.     }
  260.     i_out_size = p_block->i_samples *
  261.       p_filter->fmt_out.audio.i_bitspersample *
  262.         p_filter->fmt_out.audio.i_channels / 8;
  263.     p_out = p_filter->pf_audio_buffer_new( p_filter, i_out_size );
  264.     if( !p_out )
  265.     {
  266.         msg_Warn( p_filter, "can't get output buffer" );
  267.         p_block->pf_release( p_block );
  268.         return NULL;
  269.     }
  270.     p_out->i_samples = p_block->i_samples;
  271.     p_out->i_dts = p_block->i_dts;
  272.     p_out->i_pts = p_block->i_pts;
  273.     p_out->i_length = p_block->i_length;
  274.     aout_filter.p_sys = (struct aout_filter_sys_t *)p_filter->p_sys;
  275.     aout_filter.input = p_filter->fmt_in.audio;
  276.     aout_filter.input.i_format = p_filter->fmt_in.i_codec;
  277.     aout_filter.output = p_filter->fmt_out.audio;
  278.     aout_filter.output.i_format = p_filter->fmt_out.i_codec;
  279.     in_buf.p_buffer = p_block->p_buffer;
  280.     in_buf.i_nb_bytes = p_block->i_buffer;
  281.     in_buf.i_nb_samples = p_block->i_samples;
  282.     out_buf.p_buffer = p_out->p_buffer;
  283.     out_buf.i_nb_bytes = p_out->i_buffer;
  284.     out_buf.i_nb_samples = p_out->i_samples;
  285.     DoWork( (aout_instance_t *)p_filter, &aout_filter, &in_buf, &out_buf );
  286.     p_block->pf_release( p_block );
  287.     p_out->i_buffer = out_buf.i_nb_bytes;
  288.     p_out->i_samples = out_buf.i_nb_samples;
  289.     return p_out;
  290. }