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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * a52tofloat32.c: ATSC A/52 aka AC-3 decoder plugin for VLC.
  3.  *   This plugin makes use of liba52 to decode A/52 audio
  4.  *   (http://liba52.sf.net/).
  5.  *****************************************************************************
  6.  * Copyright (C) 2001, 2002 the VideoLAN team
  7.  * $Id: ad18a0ed907b34a1460a1d52faa5783f7f407930 $
  8.  *
  9.  * Authors: Gildas Bazin <gbazin@videolan.org>
  10.  *          Christophe Massiot <massiot@via.ecp.fr>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. /*****************************************************************************
  27.  * Preamble
  28.  *****************************************************************************/
  29. #ifdef HAVE_CONFIG_H
  30. # include "config.h"
  31. #endif
  32. #include <vlc_common.h>
  33. #include <vlc_plugin.h>
  34. #include <stdint.h>                                         /* int16_t .. */
  35. #ifdef HAVE_UNISTD_H
  36. #   include <unistd.h>
  37. #endif
  38. #ifdef USE_A52DEC_TREE                                 /* liba52 header file */
  39. #   include "include/a52.h"
  40. #else
  41. #   include "a52dec/a52.h"
  42. #endif
  43. #include <vlc_aout.h>
  44. #include <vlc_block.h>
  45. #include <vlc_filter.h>
  46. /*****************************************************************************
  47.  * Local prototypes
  48.  *****************************************************************************/
  49. static int  Create    ( vlc_object_t * );
  50. static void Destroy   ( vlc_object_t * );
  51. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  52.                         aout_buffer_t * );
  53. static int  Open      ( vlc_object_t *, filter_sys_t *,
  54.                         audio_format_t, audio_format_t );
  55. static int  OpenFilter ( vlc_object_t * );
  56. static void CloseFilter( vlc_object_t * );
  57. static block_t *Convert( filter_t *, block_t * );
  58. /* liba52 channel order */
  59. static const uint32_t pi_channels_in[] =
  60. { AOUT_CHAN_LFE, AOUT_CHAN_LEFT, AOUT_CHAN_CENTER, AOUT_CHAN_RIGHT,
  61.   AOUT_CHAN_REARLEFT, AOUT_CHAN_REARCENTER, AOUT_CHAN_REARRIGHT, 0 };
  62. /*****************************************************************************
  63.  * Local structures
  64.  *****************************************************************************/
  65. struct filter_sys_t
  66. {
  67.     a52_state_t * p_liba52; /* liba52 internal structure */
  68.     bool b_dynrng; /* see below */
  69.     int i_flags; /* liba52 flags, see a52dec/doc/liba52.txt */
  70.     bool b_dontwarn;
  71.     int i_nb_channels; /* number of float32 per sample */
  72.     int pi_chan_table[AOUT_CHAN_MAX]; /* channel reordering */
  73. };
  74. /*****************************************************************************
  75.  * Module descriptor
  76.  *****************************************************************************/
  77. #define DYNRNG_TEXT N_("A/52 dynamic range compression")
  78. #define DYNRNG_LONGTEXT N_( 
  79.     "Dynamic range compression makes the loud sounds softer, and the soft " 
  80.     "sounds louder, so you can more easily listen to the stream in a noisy " 
  81.     "environment without disturbing anyone. If you disable the dynamic range "
  82.     "compression the playback will be more adapted to a movie theater or a " 
  83.     "listening room.")
  84. #define UPMIX_TEXT N_("Enable internal upmixing")
  85. #define UPMIX_LONGTEXT N_( 
  86.     "Enable the internal upmixing algorithm (not recommended).")
  87. vlc_module_begin ()
  88.     set_shortname( "A/52" )
  89.     set_description( N_("ATSC A/52 (AC-3) audio decoder") )
  90.     set_category( CAT_INPUT )
  91.     set_subcategory( SUBCAT_INPUT_ACODEC )
  92.     add_bool( "a52-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, false )
  93.     add_bool( "a52-upmix", 0, NULL, UPMIX_TEXT, UPMIX_LONGTEXT, true )
  94.     set_capability( "audio filter", 100 )
  95.     set_callbacks( Create, Destroy )
  96.     add_submodule ()
  97.     set_description( N_("ATSC A/52 (AC-3) audio decoder") )
  98.     set_capability( "audio filter2", 100 )
  99.     set_callbacks( OpenFilter, CloseFilter )
  100. vlc_module_end ()
  101. /*****************************************************************************
  102.  * Create:
  103.  *****************************************************************************/
  104. static int Create( vlc_object_t *p_this )
  105. {
  106.     aout_filter_t *p_filter = (aout_filter_t *)p_this;
  107.     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
  108.     int i_ret;
  109.     if ( p_filter->input.i_format != VLC_FOURCC('a','5','2',' ')
  110. #ifdef LIBA52_FIXED
  111.           || p_filter->output.i_format != VLC_FOURCC('f','i','3','2') )
  112. #else
  113.           || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
  114. #endif
  115.     {
  116.         return -1;
  117.     }
  118.     if ( p_filter->input.i_rate != p_filter->output.i_rate )
  119.     {
  120.         return -1;
  121.     }
  122.     /* Allocate the memory needed to store the module's structure */
  123.     p_sys = malloc( sizeof(filter_sys_t) );
  124.     p_filter->p_sys = (struct aout_filter_sys_t *)p_sys;
  125.     if( p_sys == NULL )
  126.         return -1;
  127.     i_ret = Open( VLC_OBJECT(p_filter), p_sys,
  128.                   p_filter->input, p_filter->output );
  129.     p_filter->pf_do_work = DoWork;
  130.     p_filter->b_in_place = 0;
  131.     return i_ret;
  132. }
  133. /*****************************************************************************
  134.  * Open:
  135.  *****************************************************************************/
  136. static int Open( vlc_object_t *p_this, filter_sys_t *p_sys,
  137.                  audio_format_t input, audio_format_t output )
  138. {
  139.     p_sys->b_dynrng = config_GetInt( p_this, "a52-dynrng" );
  140.     p_sys->b_dontwarn = 0;
  141.     /* No upmixing: it's not necessary and some other filters may want to do
  142.      * it themselves. */
  143.     if ( aout_FormatNbChannels( &output ) > aout_FormatNbChannels( &input ) )
  144.     {
  145.         if ( ! config_GetInt( p_this, "a52-upmix" ) )
  146.         {
  147.             return VLC_EGENERIC;
  148.         }
  149.     }
  150.     /* We'll do our own downmixing, thanks. */
  151.     p_sys->i_nb_channels = aout_FormatNbChannels( &output );
  152.     switch ( (output.i_physical_channels & AOUT_CHAN_PHYSMASK)
  153.               & ~AOUT_CHAN_LFE )
  154.     {
  155.     case AOUT_CHAN_CENTER:
  156.         if ( (output.i_original_channels & AOUT_CHAN_CENTER)
  157.               || (output.i_original_channels
  158.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  159.         {
  160.             p_sys->i_flags = A52_MONO;
  161.         }
  162.         else if ( output.i_original_channels & AOUT_CHAN_LEFT )
  163.         {
  164.             p_sys->i_flags = A52_CHANNEL1;
  165.         }
  166.         else
  167.         {
  168.             p_sys->i_flags = A52_CHANNEL2;
  169.         }
  170.         break;
  171.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT:
  172.         if ( output.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  173.         {
  174.             p_sys->i_flags = A52_DOLBY;
  175.         }
  176.         else if ( input.i_original_channels == AOUT_CHAN_CENTER )
  177.         {
  178.             p_sys->i_flags = A52_MONO;
  179.         }
  180.         else if ( input.i_original_channels & AOUT_CHAN_DUALMONO )
  181.         {
  182.             p_sys->i_flags = A52_CHANNEL;
  183.         }
  184.         else if ( !(output.i_original_channels & AOUT_CHAN_RIGHT) )
  185.         {
  186.             p_sys->i_flags = A52_CHANNEL1;
  187.         }
  188.         else if ( !(output.i_original_channels & AOUT_CHAN_LEFT) )
  189.         {
  190.             p_sys->i_flags = A52_CHANNEL2;
  191.         }
  192.         else
  193.         {
  194.             p_sys->i_flags = A52_STEREO;
  195.         }
  196.         break;
  197.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER:
  198.         p_sys->i_flags = A52_3F;
  199.         break;
  200.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER:
  201.         p_sys->i_flags = A52_2F1R;
  202.         break;
  203.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  204.           | AOUT_CHAN_REARCENTER:
  205.         p_sys->i_flags = A52_3F1R;
  206.         break;
  207.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  208.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  209.         p_sys->i_flags = A52_2F2R;
  210.         break;
  211.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  212.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  213.         p_sys->i_flags = A52_3F2R;
  214.         break;
  215.     default:
  216.         msg_Warn( p_this, "unknown sample format!" );
  217.         free( p_sys );
  218.         return VLC_EGENERIC;
  219.     }
  220.     if ( output.i_physical_channels & AOUT_CHAN_LFE )
  221.     {
  222.         p_sys->i_flags |= A52_LFE;
  223.     }
  224.     p_sys->i_flags |= A52_ADJUST_LEVEL;
  225.     /* Initialize liba52 */
  226.     p_sys->p_liba52 = a52_init( 0 );
  227.     if( p_sys->p_liba52 == NULL )
  228.     {
  229.         msg_Err( p_this, "unable to initialize liba52" );
  230.         free( p_sys );
  231.         return VLC_EGENERIC;
  232.     }
  233.     aout_CheckChannelReorder( pi_channels_in, NULL,
  234.                               output.i_physical_channels & AOUT_CHAN_PHYSMASK,
  235.                               p_sys->i_nb_channels,
  236.                               p_sys->pi_chan_table );
  237.     return VLC_SUCCESS;
  238. }
  239. /*****************************************************************************
  240.  * Interleave: helper function to interleave channels
  241.  *****************************************************************************/
  242. static void Interleave( float * p_out, const float * p_in, int i_nb_channels,
  243.                         int *pi_chan_table )
  244. {
  245.     /* We do not only have to interleave, but also reorder the channels */
  246.     int i, j;
  247.     for ( j = 0; j < i_nb_channels; j++ )
  248.     {
  249.         for ( i = 0; i < 256; i++ )
  250.         {
  251.             p_out[i * i_nb_channels + pi_chan_table[j]] = p_in[j * 256 + i];
  252.         }
  253.     }
  254. }
  255. /*****************************************************************************
  256.  * Duplicate: helper function to duplicate a unique channel
  257.  *****************************************************************************/
  258. static void Duplicate( float * p_out, const float * p_in )
  259. {
  260.     int i;
  261.     for ( i = 256; i--; )
  262.     {
  263.         *p_out++ = *p_in;
  264.         *p_out++ = *p_in;
  265.         p_in++;
  266.     }
  267. }
  268. /*****************************************************************************
  269.  * Exchange: helper function to exchange left & right channels
  270.  *****************************************************************************/
  271. static void Exchange( float * p_out, const float * p_in )
  272. {
  273.     int i;
  274.     const float * p_first = p_in + 256;
  275.     const float * p_second = p_in;
  276.     for ( i = 0; i < 256; i++ )
  277.     {
  278.         *p_out++ = *p_first++;
  279.         *p_out++ = *p_second++;
  280.     }
  281. }
  282. /*****************************************************************************
  283.  * DoWork: decode an ATSC A/52 frame.
  284.  *****************************************************************************/
  285. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  286.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  287. {
  288.     filter_sys_t    *p_sys = (filter_sys_t *)p_filter->p_sys;
  289. #ifdef LIBA52_FIXED
  290.     sample_t        i_sample_level = (1 << 24);
  291. #else
  292.     sample_t        i_sample_level = 1;
  293. #endif
  294.     int             i_flags = p_sys->i_flags;
  295.     int             i_bytes_per_block = 256 * p_sys->i_nb_channels
  296.                       * sizeof(float);
  297.     int             i;
  298.     /* Do the actual decoding now. */
  299.     a52_frame( p_sys->p_liba52, p_in_buf->p_buffer,
  300.                &i_flags, &i_sample_level, 0 );
  301.     if ( (i_flags & A52_CHANNEL_MASK) != (p_sys->i_flags & A52_CHANNEL_MASK)
  302.           && !p_sys->b_dontwarn )
  303.     {
  304.         msg_Warn( p_aout,
  305.                   "liba52 couldn't do the requested downmix 0x%x->0x%x",
  306.                   p_sys->i_flags  & A52_CHANNEL_MASK,
  307.                   i_flags & A52_CHANNEL_MASK );
  308.         p_sys->b_dontwarn = 1;
  309.     }
  310.     if( !p_sys->b_dynrng )
  311.     {
  312.         a52_dynrng( p_sys->p_liba52, NULL, NULL );
  313.     }
  314.     for ( i = 0; i < 6; i++ )
  315.     {
  316.         sample_t * p_samples;
  317.         if( a52_block( p_sys->p_liba52 ) )
  318.         {
  319.             msg_Warn( p_aout, "a52_block failed for block %d", i );
  320.         }
  321.         p_samples = a52_samples( p_sys->p_liba52 );
  322.         if ( ((p_sys->i_flags & A52_CHANNEL_MASK) == A52_CHANNEL1
  323.                || (p_sys->i_flags & A52_CHANNEL_MASK) == A52_CHANNEL2
  324.                || (p_sys->i_flags & A52_CHANNEL_MASK) == A52_MONO)
  325.               && (p_filter->output.i_physical_channels
  326.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  327.         {
  328.             Duplicate( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  329.                        p_samples );
  330.         }
  331.         else if ( p_filter->output.i_original_channels
  332.                     & AOUT_CHAN_REVERSESTEREO )
  333.         {
  334.             Exchange( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  335.                       p_samples );
  336.         }
  337.         else
  338.         {
  339.             /* Interleave the *$£%ù samples. */
  340.             Interleave( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  341.                         p_samples, p_sys->i_nb_channels, p_sys->pi_chan_table);
  342.         }
  343.     }
  344.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  345.     p_out_buf->i_nb_bytes = i_bytes_per_block * 6;
  346. }
  347. /*****************************************************************************
  348.  * Destroy : deallocate data structures
  349.  *****************************************************************************/
  350. static void Destroy( vlc_object_t *p_this )
  351. {
  352.     aout_filter_t *p_filter = (aout_filter_t *)p_this;
  353.     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
  354.     a52_free( p_sys->p_liba52 );
  355.     free( p_sys );
  356. }
  357. /*****************************************************************************
  358.  * OpenFilter:
  359.  *****************************************************************************/
  360. static int OpenFilter( vlc_object_t *p_this )
  361. {
  362.     filter_t *p_filter = (filter_t *)p_this;
  363.     filter_sys_t *p_sys;
  364.     int i_ret;
  365.     if( p_filter->fmt_in.i_codec != VLC_FOURCC('a','5','2',' ')  )
  366.     {
  367.         return VLC_EGENERIC;
  368.     }
  369.     p_filter->fmt_out.audio.i_format =
  370. #ifdef LIBA52_FIXED
  371.         p_filter->fmt_out.i_codec = VLC_FOURCC('f','i','3','2');
  372. #else
  373.         p_filter->fmt_out.i_codec = VLC_FOURCC('f','l','3','2');
  374. #endif
  375.     p_filter->fmt_out.audio.i_bitspersample =
  376.         aout_BitsPerSample( p_filter->fmt_out.i_codec );
  377.     /* Allocate the memory needed to store the module's structure */
  378.     p_filter->p_sys = p_sys = malloc( sizeof(filter_sys_t) );
  379.     if( p_sys == NULL )
  380.         return VLC_ENOMEM;
  381.     i_ret = Open( VLC_OBJECT(p_filter), p_sys,
  382.                   p_filter->fmt_in.audio, p_filter->fmt_out.audio );
  383.     p_filter->pf_audio_filter = Convert;
  384.     p_filter->fmt_out.audio.i_rate = p_filter->fmt_in.audio.i_rate;
  385.     return i_ret;
  386. }
  387. /*****************************************************************************
  388.  * CloseFilter : deallocate data structures
  389.  *****************************************************************************/
  390. static void CloseFilter( vlc_object_t *p_this )
  391. {
  392.     filter_t *p_filter = (filter_t *)p_this;
  393.     filter_sys_t *p_sys = p_filter->p_sys;
  394.     a52_free( p_sys->p_liba52 );
  395.     free( p_sys );
  396. }
  397. static block_t *Convert( filter_t *p_filter, block_t *p_block )
  398. {
  399.     aout_filter_t aout_filter;
  400.     aout_buffer_t in_buf, out_buf;
  401.     block_t *p_out;
  402.     int i_out_size;
  403.     if( !p_block || !p_block->i_samples )
  404.     {
  405.         if( p_block )
  406.             block_Release( p_block );
  407.         return NULL;
  408.     }
  409.     i_out_size = p_block->i_samples *
  410.       p_filter->fmt_out.audio.i_bitspersample *
  411.         p_filter->fmt_out.audio.i_channels / 8;
  412.     p_out = p_filter->pf_audio_buffer_new( p_filter, i_out_size );
  413.     if( !p_out )
  414.     {
  415.         msg_Warn( p_filter, "can't get output buffer" );
  416.         block_Release( p_block );
  417.         return NULL;
  418.     }
  419.     p_out->i_samples = p_block->i_samples;
  420.     p_out->i_dts = p_block->i_dts;
  421.     p_out->i_pts = p_block->i_pts;
  422.     p_out->i_length = p_block->i_length;
  423.     aout_filter.p_sys = (struct aout_filter_sys_t *)p_filter->p_sys;
  424.     aout_filter.input = p_filter->fmt_in.audio;
  425.     aout_filter.input.i_format = p_filter->fmt_in.i_codec;
  426.     aout_filter.output = p_filter->fmt_out.audio;
  427.     aout_filter.output.i_format = p_filter->fmt_out.i_codec;
  428.     in_buf.p_buffer = p_block->p_buffer;
  429.     in_buf.i_nb_bytes = p_block->i_buffer;
  430.     in_buf.i_nb_samples = p_block->i_samples;
  431.     out_buf.p_buffer = p_out->p_buffer;
  432.     out_buf.i_nb_bytes = p_out->i_buffer;
  433.     out_buf.i_nb_samples = p_out->i_samples;
  434.     DoWork( (aout_instance_t *)p_filter, &aout_filter, &in_buf, &out_buf );
  435.     p_out->i_buffer = out_buf.i_nb_bytes;
  436.     p_out->i_samples = out_buf.i_nb_samples;
  437.     block_Release( p_block );
  438.     return p_out;
  439. }