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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * dtstofloat32.c: DTS Coherent Acoustics decoder plugin for VLC.
  3.  *   This plugin makes use of libdts to do the actual decoding
  4.  *   (http://www.videolan.org/dtsdec/).
  5.  *****************************************************************************
  6.  * Copyright (C) 2001, 2002 VideoLAN
  7.  * $Id: dtstofloat32.c 8863 2004-09-30 17:42:27Z gbazin $
  8.  *
  9.  * Author: Gildas Bazin <gbazin@videolan.org>
  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 <vlc/vlc.h>
  29. #include <stdlib.h>                                      /* malloc(), free() */
  30. #include <string.h>                                              /* strdup() */
  31. #include <dts.h>                                       /* libdts header file */
  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  Open      ( vlc_object_t *, filter_sys_t *,
  43.                         audio_format_t, audio_format_t );
  44. static int  OpenFilter ( vlc_object_t * );
  45. static void CloseFilter( vlc_object_t * );
  46. static block_t *Convert( filter_t *, block_t * );
  47. /* libdts channel order */
  48. static const uint32_t pi_channels_in[] =
  49. { AOUT_CHAN_CENTER, AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
  50.   AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, AOUT_CHAN_LFE, 0 };
  51. /* our internal channel order (WG-4 order) */
  52. static const uint32_t pi_channels_out[] =
  53. { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
  54.   AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0 };
  55. /*****************************************************************************
  56.  * Local structures
  57.  *****************************************************************************/
  58. struct filter_sys_t
  59. {
  60.     dts_state_t * p_libdts; /* libdts internal structure */
  61.     vlc_bool_t b_dynrng; /* see below */
  62.     int i_flags; /* libdts flags, see dtsdec/doc/libdts.txt */
  63.     vlc_bool_t b_dontwarn;
  64.     int i_nb_channels; /* number of float32 per sample */
  65.     int pi_chan_table[AOUT_CHAN_MAX]; /* channel reordering */
  66. };
  67. /*****************************************************************************
  68.  * Module descriptor
  69.  *****************************************************************************/
  70. #define DYNRNG_TEXT N_("DTS dynamic range compression")
  71. #define DYNRNG_LONGTEXT N_( 
  72.     "Dynamic range compression makes the loud sounds softer, and the soft " 
  73.     "sounds louder, so you can more easily listen to the stream in a noisy " 
  74.     "environment without disturbing anyone. If you disable the dynamic range "
  75.     "compression the playback will be more adapted to a movie theater or a " 
  76.     "listening room.")
  77. vlc_module_begin();
  78.     set_description( _("DTS Coherent Acoustics audio decoder") );
  79.     add_bool( "dts-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, VLC_FALSE );
  80.     set_capability( "audio filter", 100 );
  81.     set_callbacks( Create, Destroy );
  82.     add_submodule();
  83.     set_description( _("DTS Coherent Acoustics audio decoder") );
  84.     set_capability( "audio filter2", 100 );
  85.     set_callbacks( OpenFilter, CloseFilter );
  86. vlc_module_end();
  87. /*****************************************************************************
  88.  * Create: 
  89.  *****************************************************************************/
  90. static int Create( vlc_object_t *p_this )
  91. {
  92.     aout_filter_t *p_filter = (aout_filter_t *)p_this;
  93.     filter_sys_t *p_sys;
  94.     int i_ret;
  95.     if ( p_filter->input.i_format != VLC_FOURCC('d','t','s',' ')
  96.           || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
  97.     {
  98.         return -1;
  99.     }
  100.     if ( p_filter->input.i_rate != p_filter->output.i_rate )
  101.     {
  102.         return -1;
  103.     }
  104.     /* Allocate the memory needed to store the module's structure */
  105.     p_sys = malloc( sizeof(filter_sys_t) );
  106.     p_filter->p_sys = (struct aout_filter_sys_t *)p_sys;
  107.     if( p_sys == NULL )
  108.     {
  109.         msg_Err( p_filter, "out of memory" );
  110.         return -1;
  111.     }
  112.     i_ret = Open( VLC_OBJECT(p_filter), p_sys,
  113.                   p_filter->input, p_filter->output );
  114.     p_filter->pf_do_work = DoWork;
  115.     p_filter->b_in_place = 0;
  116.     return i_ret;
  117. }
  118. /*****************************************************************************
  119.  * Open: 
  120.  *****************************************************************************/
  121. static int Open( vlc_object_t *p_this, filter_sys_t *p_sys,
  122.                  audio_format_t input, audio_format_t output )
  123. {
  124.     p_sys->b_dynrng = config_GetInt( p_this, "dts-dynrng" );
  125.     p_sys->b_dontwarn = 0;
  126.     /* We'll do our own downmixing, thanks. */
  127.     p_sys->i_nb_channels = aout_FormatNbChannels( &output );
  128.     switch ( (output.i_physical_channels & AOUT_CHAN_PHYSMASK)
  129.               & ~AOUT_CHAN_LFE )
  130.     {
  131.     case AOUT_CHAN_CENTER:
  132.         if ( (output.i_original_channels & AOUT_CHAN_CENTER)
  133.               || (output.i_original_channels
  134.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  135.         {
  136.             p_sys->i_flags = DTS_MONO;
  137.         }
  138.         break;
  139.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT:
  140.         if ( output.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  141.         {
  142.             p_sys->i_flags = DTS_DOLBY;
  143.         }
  144.         else if ( input.i_original_channels == AOUT_CHAN_CENTER )
  145.         {
  146.             p_sys->i_flags = DTS_MONO;
  147.         }
  148.         else if ( input.i_original_channels & AOUT_CHAN_DUALMONO )
  149.         {
  150.             p_sys->i_flags = DTS_CHANNEL;
  151.         }
  152.         else
  153.         {
  154.             p_sys->i_flags = DTS_STEREO;
  155.         }
  156.         break;
  157.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER:
  158.         p_sys->i_flags = DTS_3F;
  159.         break;
  160.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER:
  161.         p_sys->i_flags = DTS_2F1R;
  162.         break;
  163.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  164.           | AOUT_CHAN_REARCENTER:
  165.         p_sys->i_flags = DTS_3F1R;
  166.         break;
  167.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  168.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  169.         p_sys->i_flags = DTS_2F2R;
  170.         break;
  171.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  172.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  173.         p_sys->i_flags = DTS_3F2R;
  174.         break;
  175.     default:
  176.         msg_Warn( p_this, "unknown sample format!" );
  177.         free( p_sys );
  178.         return -1;
  179.     }
  180.     if ( output.i_physical_channels & AOUT_CHAN_LFE )
  181.     {
  182.         p_sys->i_flags |= DTS_LFE;
  183.     }
  184.     //p_sys->i_flags |= DTS_ADJUST_LEVEL;
  185.     /* Initialize libdts */
  186.     p_sys->p_libdts = dts_init( 0 );
  187.     if( p_sys->p_libdts == NULL )
  188.     {
  189.         msg_Err( p_this, "unable to initialize libdts" );
  190.         return VLC_EGENERIC;
  191.     }
  192.     aout_CheckChannelReorder( pi_channels_in, pi_channels_out,
  193.                               output.i_physical_channels & AOUT_CHAN_PHYSMASK,
  194.                               p_sys->i_nb_channels,
  195.                               p_sys->pi_chan_table );
  196.     return VLC_SUCCESS;
  197. }
  198. /*****************************************************************************
  199.  * Interleave: helper function to interleave channels
  200.  *****************************************************************************/
  201. static void Interleave( float * p_out, const float * p_in, int i_nb_channels,
  202.                         int *pi_chan_table )
  203. {
  204.     /* We do not only have to interleave, but also reorder the channels. */
  205.     int i, j;
  206.     for ( j = 0; j < i_nb_channels; j++ )
  207.     {
  208.         for ( i = 0; i < 256; i++ )
  209.         {
  210.             p_out[i * i_nb_channels + pi_chan_table[j]] = p_in[j * 256 + i];
  211.         }
  212.     }
  213. }
  214. /*****************************************************************************
  215.  * Duplicate: helper function to duplicate a unique channel
  216.  *****************************************************************************/
  217. static void Duplicate( float * p_out, const float * p_in )
  218. {
  219.     int i;
  220.     for ( i = 256; i--; )
  221.     {
  222.         *p_out++ = *p_in;
  223.         *p_out++ = *p_in;
  224.         p_in++;
  225.     }
  226. }
  227. /*****************************************************************************
  228.  * Exchange: helper function to exchange left & right channels
  229.  *****************************************************************************/
  230. static void Exchange( float * p_out, const float * p_in )
  231. {
  232.     int i;
  233.     const float * p_first = p_in + 256;
  234.     const float * p_second = p_in;
  235.     for ( i = 0; i < 256; i++ )
  236.     {
  237.         *p_out++ = *p_first++;
  238.         *p_out++ = *p_second++;
  239.     }
  240. }
  241. /*****************************************************************************
  242.  * DoWork: decode a DTS frame.
  243.  *****************************************************************************/
  244. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  245.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  246. {
  247.     filter_sys_t    *p_sys = (filter_sys_t *)p_filter->p_sys;
  248.     sample_t        i_sample_level = 1;
  249.     int             i_flags = p_sys->i_flags;
  250.     int             i_bytes_per_block = 256 * p_sys->i_nb_channels
  251.                       * sizeof(float);
  252.     int             i;
  253.     /*
  254.      * Do the actual decoding now.
  255.      */
  256.     /* Needs to be called so the decoder knows which type of bitstream it is
  257.      * dealing with. */
  258.     int i_sample_rate, i_bit_rate, i_frame_length;
  259.     if( !dts_syncinfo( p_sys->p_libdts, p_in_buf->p_buffer, &i_flags,
  260.                        &i_sample_rate, &i_bit_rate, &i_frame_length ) )
  261.     {
  262.         msg_Warn( p_filter, "libdts couldn't sync on frame" );
  263.         p_out_buf->i_nb_samples = p_out_buf->i_nb_bytes = 0;
  264.         return;
  265.     }
  266.     i_flags = p_sys->i_flags;
  267.     dts_frame( p_sys->p_libdts, p_in_buf->p_buffer,
  268.                &i_flags, &i_sample_level, 0 );
  269.     if ( (i_flags & DTS_CHANNEL_MASK) != (p_sys->i_flags & DTS_CHANNEL_MASK)
  270.           && !p_sys->b_dontwarn )
  271.     {
  272.         msg_Warn( p_filter,
  273.                   "libdts couldn't do the requested downmix 0x%x->0x%x",
  274.                   p_sys->i_flags  & DTS_CHANNEL_MASK,
  275.                   i_flags & DTS_CHANNEL_MASK );
  276.         p_sys->b_dontwarn = 1;
  277.     }
  278.     if( 0)//!p_sys->b_dynrng )
  279.     {
  280.         dts_dynrng( p_sys->p_libdts, NULL, NULL );
  281.     }
  282.     for ( i = 0; i < dts_blocks_num(p_sys->p_libdts); i++ )
  283.     {
  284.         sample_t * p_samples;
  285.         if( dts_block( p_sys->p_libdts ) )
  286.         {
  287.             msg_Warn( p_filter, "dts_block failed for block %d", i );
  288.             break;
  289.         }
  290.         p_samples = dts_samples( p_sys->p_libdts );
  291.         if ( (p_sys->i_flags & DTS_CHANNEL_MASK) == DTS_MONO
  292.               && (p_filter->output.i_physical_channels 
  293.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  294.         {
  295.             Duplicate( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  296.                        p_samples );
  297.         }
  298.         else if ( p_filter->output.i_original_channels
  299.                     & AOUT_CHAN_REVERSESTEREO )
  300.         {
  301.             Exchange( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  302.                       p_samples );
  303.         }
  304.         else
  305.         {
  306.             /* Interleave the *$