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

多媒体

开发平台:

MultiPlatform

  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 VideoLAN
  7.  * $Id: a52tofloat32.c 8863 2004-09-30 17:42:27Z gbazin $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  25.  *****************************************************************************/
  26. /*****************************************************************************
  27.  * Preamble
  28.  *****************************************************************************/
  29. #include <vlc/vlc.h>
  30. #include <stdlib.h>                                      /* malloc(), free() */
  31. #include <string.h>                                              /* strdup() */
  32. #ifdef HAVE_STDINT_H
  33. #   include <stdint.h>                                         /* int16_t .. */
  34. #elif HAVE_INTTYPES_H
  35. #   include <inttypes.h>                                       /* int16_t .. */
  36. #endif
  37. #ifdef HAVE_UNISTD_H
  38. #   include <unistd.h>
  39. #endif
  40. #ifdef USE_A52DEC_TREE                                 /* liba52 header file */
  41. #   include "include/a52.h"
  42. #else
  43. #   include "a52dec/a52.h"
  44. #endif
  45. #include <vlc/decoder.h>
  46. #include "aout_internal.h"
  47. #include "vlc_filter.h"
  48. /*****************************************************************************
  49.  * Local prototypes
  50.  *****************************************************************************/
  51. static int  Create    ( vlc_object_t * );
  52. static void Destroy   ( vlc_object_t * );
  53. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,  
  54.                         aout_buffer_t * );
  55. static int  Open      ( vlc_object_t *, filter_sys_t *,
  56.                         audio_format_t, audio_format_t );
  57. static int  OpenFilter ( vlc_object_t * );
  58. static void CloseFilter( vlc_object_t * );
  59. static block_t *Convert( filter_t *, block_t * );
  60. /* liba52 channel order */
  61. static const uint32_t pi_channels_in[] =
  62. { AOUT_CHAN_LFE, AOUT_CHAN_LEFT, AOUT_CHAN_CENTER, AOUT_CHAN_RIGHT,
  63.   AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, 0 };
  64. /* our internal channel order (WG-4 order) */
  65. static const uint32_t pi_channels_out[] =
  66. { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
  67.   AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0 };
  68. /*****************************************************************************
  69.  * Local structures
  70.  *****************************************************************************/
  71. struct filter_sys_t
  72. {
  73.     a52_state_t * p_liba52; /* liba52 internal structure */
  74.     vlc_bool_t b_dynrng; /* see below */
  75.     int i_flags; /* liba52 flags, see a52dec/doc/liba52.txt */
  76.     vlc_bool_t b_dontwarn;
  77.     int i_nb_channels; /* number of float32 per sample */
  78.     int pi_chan_table[AOUT_CHAN_MAX]; /* channel reordering */
  79. };
  80. /*****************************************************************************
  81.  * Module descriptor
  82.  *****************************************************************************/
  83. #define DYNRNG_TEXT N_("A/52 dynamic range compression")
  84. #define DYNRNG_LONGTEXT N_( 
  85.     "Dynamic range compression makes the loud sounds softer, and the soft " 
  86.     "sounds louder, so you can more easily listen to the stream in a noisy " 
  87.     "environment without disturbing anyone. If you disable the dynamic range "
  88.     "compression the playback will be more adapted to a movie theater or a " 
  89.     "listening room.")
  90. vlc_module_begin();
  91.     set_description( _("ATSC A/52 (AC-3) audio decoder") );
  92.     add_bool( "a52-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, VLC_FALSE );
  93.     set_capability( "audio filter", 100 );
  94.     set_callbacks( Create, Destroy );
  95.     add_submodule();
  96.     set_description( _("ATSC A/52 (AC-3) audio decoder") );
  97.     set_capability( "audio filter2", 100 );
  98.     set_callbacks( OpenFilter, CloseFilter );
  99. vlc_module_end();
  100. /*****************************************************************************
  101.  * Create: 
  102.  *****************************************************************************/
  103. static int Create( vlc_object_t *p_this )
  104. {
  105.     aout_filter_t *p_filter = (aout_filter_t *)p_this;
  106.     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
  107.     int i_ret;
  108.     if ( p_filter->input.i_format != VLC_FOURCC('a','5','2',' ')
  109.           || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
  110.     {
  111.         return -1;
  112.     }
  113.     if ( p_filter->input.i_rate != p_filter->output.i_rate )
  114.     {
  115.         return -1;
  116.     }
  117.     /* Allocate the memory needed to store the module's structure */
  118.     p_sys = malloc( sizeof(filter_sys_t) );
  119.     p_filter->p_sys = (struct aout_filter_sys_t *)p_sys;
  120.     if( p_sys == NULL )
  121.     {
  122.         msg_Err( p_filter, "out of memory" );
  123.         return -1;
  124.     }
  125.     i_ret = Open( VLC_OBJECT(p_filter), p_sys,
  126.                   p_filter->input, p_filter->output );
  127.     p_filter->pf_do_work = DoWork;
  128.     p_filter->b_in_place = 0;
  129.     return i_ret;
  130. }
  131. /*****************************************************************************
  132.  * Open: 
  133.  *****************************************************************************/
  134. static int Open( vlc_object_t *p_this, filter_sys_t *p_sys,
  135.                  audio_format_t input, audio_format_t output )
  136. {
  137.     p_sys->b_dynrng = config_GetInt( p_this, "a52-dynrng" );
  138.     p_sys->b_dontwarn = 0;
  139.     /* We'll do our own downmixing, thanks. */
  140.     p_sys->i_nb_channels = aout_FormatNbChannels( &output );
  141.     switch ( (output.i_physical_channels & AOUT_CHAN_PHYSMASK)
  142.               & ~AOUT_CHAN_LFE )
  143.     {
  144.     case AOUT_CHAN_CENTER:
  145.         if ( (output.i_original_channels & AOUT_CHAN_CENTER)
  146.               || (output.i_original_channels
  147.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  148.         {
  149.             p_sys->i_flags = A52_MONO;
  150.         }
  151.         else if ( output.i_original_channels & AOUT_CHAN_LEFT )
  152.         {
  153.             p_sys->i_flags = A52_CHANNEL1;
  154.         }
  155.         else
  156.         {
  157.             p_sys->i_flags = A52_CHANNEL2;
  158.         }
  159.         break;
  160.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT:
  161.         if ( output.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  162.         {
  163.             p_sys->i_flags = A52_DOLBY;
  164.         }
  165.         else if ( input.i_original_channels == AOUT_CHAN_CENTER )
  166.         {
  167.             p_sys->i_flags = A52_MONO;
  168.         }
  169.         else if ( input.i_original_channels & AOUT_CHAN_DUALMONO )
  170.         {
  171.             p_sys->i_flags = A52_CHANNEL;
  172.         }
  173.         else if ( !(output.i_original_channels & AOUT_CHAN_RIGHT) )
  174.         {
  175.             p_sys->i_flags = A52_CHANNEL1;
  176.         }
  177.         else if ( !(output.i_original_channels & AOUT_CHAN_LEFT) )
  178.         {
  179.             p_sys->i_flags = A52_CHANNEL2;
  180.         }
  181.         else
  182.         {
  183.             p_sys->i_flags = A52_STEREO;
  184.         }
  185.         break;
  186.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER:
  187.         p_sys->i_flags = A52_3F;
  188.         break;
  189.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER:
  190.         p_sys->i_flags = A52_2F1R;
  191.         break;
  192.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  193.           | AOUT_CHAN_REARCENTER:
  194.         p_sys->i_flags = A52_3F1R;
  195.         break;
  196.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  197.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  198.         p_sys->i_flags = A52_2F2R;
  199.         break;
  200.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  201.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  202.         p_sys->i_flags = A52_3F2R;
  203.         break;
  204.     default:
  205.         msg_Warn( p_this, "unknown sample format!" );
  206.         free( p_sys );
  207.         return VLC_EGENERIC;
  208.     }
  209.     if ( output.i_physical_channels & AOUT_CHAN_LFE )
  210.     {
  211.         p_sys->i_flags |= A52_LFE;
  212.     }
  213.     p_sys->i_flags |= A52_ADJUST_LEVEL;
  214.     /* Initialize liba52 */
  215.     p_sys->p_liba52 = a52_init( 0 );
  216.     if( p_sys->p_liba52 == NULL )
  217.     {
  218.         msg_Err( p_this, "unable to initialize liba52" );
  219.         free( p_sys );
  220.         return VLC_EGENERIC;
  221.     }
  222.     aout_CheckChannelReorder( pi_channels_in, pi_channels_out,
  223.                               output.i_physical_channels & AOUT_CHAN_PHYSMASK,
  224.                               p_sys->i_nb_channels,
  225.                               p_sys->pi_chan_table );
  226.     return VLC_SUCCESS;
  227. }
  228. /*****************************************************************************
  229.  * Interleave: helper function to interleave channels
  230.  *****************************************************************************/
  231. static void Interleave( float * p_out, const float * p_in, int i_nb_channels,
  232.                         int *pi_chan_table )
  233. {
  234.     /* We do not only have to interleave, but also reorder the channels */
  235.     int i, j;
  236.     for ( j = 0; j < i_nb_channels; j++ )
  237.     {
  238.         for ( i = 0; i < 256; i++ )
  239.         {
  240.             p_out[i * i_nb_channels + pi_chan_table[j]] = p_in[j * 256 + i];
  241.         }
  242.     }
  243. }
  244. /*****************************************************************************
  245.  * Duplicate: helper function to duplicate a unique channel
  246.  *****************************************************************************/
  247. static void Duplicate( float * p_out, const float * p_in )
  248. {
  249.     int i;
  250.     for ( i = 256; i--; )
  251.     {
  252.         *p_out++ = *p_in;
  253.         *p_out++ = *p_in;
  254.         p_in++;
  255.     }
  256. }
  257. /*****************************************************************************
  258.  * Exchange: helper function to exchange left & right channels
  259.  *****************************************************************************/
  260. static void Exchange( float * p_out, const float * p_in )
  261. {
  262.     int i;
  263.     const float * p_first = p_in + 256;
  264.     const float * p_second = p_in;
  265.     for ( i = 0; i < 256; i++ )
  266.     {
  267.         *p_out++ = *p_first++;
  268.         *p_out++ = *p_second++;
  269.     }
  270. }
  271. /*****************************************************************************
  272.  * DoWork: decode an ATSC A/52 frame.
  273.  *****************************************************************************/
  274. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  275.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  276. {
  277.     filter_sys_t    *p_sys = (filter_sys_t *)p_filter->p_sys;
  278.     sample_t        i_sample_level = 1;
  279.     int             i_flags = p_sys->i_flags;
  280.     int             i_bytes_per_block = 256 * p_sys->i_nb_channels
  281.                       * sizeof(float);
  282.     int             i;
  283.     /* Do the actual decoding now. */
  284.     a52_frame( p_sys->p_liba52, p_in_buf->p_buffer,
  285.                &i_flags, &i_sample_level, 0 );
  286.     if ( (i_flags & A52_CHANNEL_MASK) != (p_sys->i_flags & A52_CHANNEL_MASK)
  287.           && !p_sys->b_dontwarn )
  288.     {
  289.         msg_Warn( p_filter,
  290.                   "liba52 couldn't do the requested downmix 0x%x->0x%x",
  291.                   p_sys->i_flags  & A52_CHANNEL_MASK,
  292.                   i_flags & A52_CHANNEL_MASK );
  293.         p_sys->b_dontwarn = 1;
  294.     }
  295.     if( !p_sys->b_dynrng )
  296.     {
  297.         a52_dynrng( p_sys->p_liba52, NULL, NULL );
  298.     }
  299.     for ( i = 0; i < 6; i++ )
  300.     {
  301.         sample_t * p_samples;
  302.         if( a52_block( p_sys->p_liba52 ) )
  303.         {
  304.             msg_Warn( p_filter, "a52_block failed for block %d", i );
  305.         }
  306.         p_samples = a52_samples( p_sys->p_liba52 );
  307.         if ( ((p_sys->i_flags & A52_CHANNEL_MASK) == A52_CHANNEL1
  308.                || (p_sys->i_flags & A52_CHANNEL_MASK) == A52_CHANNEL2
  309.                || (p_sys->i_flags & A52_CHANNEL_MASK) == A52_MONO)
  310.               && (p_filter->output.i_physical_channels 
  311.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  312.         {
  313.             Duplicate( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  314.                        p_samples );
  315.         }
  316.         else if ( p_filter->output.i_original_channels
  317.                     & AOUT_CHAN_REVERSESTEREO )
  318.         {
  319.             Exchange( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  320.                       p_samples );
  321.         }
  322.         else
  323.         {
  324.             /* Interleave the *$