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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * dtstofloat32.c: DTS Coherent Acoustics decoder plugin for VLC.
  3.  *   This plugin makes use of libdca to do the actual decoding
  4.  *   (http://developers.videolan.org/libdca.html).
  5.  *****************************************************************************
  6.  * Copyright (C) 2001, 2002libdca the VideoLAN team
  7.  * $Id: 0028e13cab822bc9e08b9e3b02e32afc7864c596 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #ifdef HAVE_CONFIG_H
  29. # include "config.h"
  30. #endif
  31. #include <vlc_common.h>
  32. #include <vlc_plugin.h>
  33. #include <dca.h>                                       /* libdca header file */
  34. #include <vlc_aout.h>
  35. #include <vlc_block.h>
  36. #include "vlc_filter.h"
  37. /*****************************************************************************
  38.  * Local prototypes
  39.  *****************************************************************************/
  40. static int  Create    ( vlc_object_t * );
  41. static void Destroy   ( vlc_object_t * );
  42. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  43.                         aout_buffer_t * );
  44. static int  Open      ( vlc_object_t *, filter_sys_t *,
  45.                         audio_format_t, audio_format_t );
  46. static int  OpenFilter ( vlc_object_t * );
  47. static void CloseFilter( vlc_object_t * );
  48. static block_t *Convert( filter_t *, block_t * );
  49. /* libdca channel order
  50.  * libdca currently only decodes 5.1, even if you have a DTS-ES source. */
  51. static const uint32_t pi_channels_in[] =
  52. { AOUT_CHAN_CENTER, AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
  53.   AOUT_CHAN_REARCENTER, AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT,
  54.   AOUT_CHAN_LFE,
  55.   0 };
  56. /*****************************************************************************
  57.  * Local structures
  58.  *****************************************************************************/
  59. struct filter_sys_t
  60. {
  61.     dca_state_t * p_libdca; /* libdca internal structure */
  62.     bool b_dynrng; /* see below */
  63.     int i_flags; /* libdca flags, see dtsdec/doc/libdts.txt */
  64.     bool b_dontwarn;
  65.     int i_nb_channels; /* number of float32 per sample */
  66.     int pi_chan_table[AOUT_CHAN_MAX]; /* channel reordering */
  67. };
  68. /*****************************************************************************
  69.  * Module descriptor
  70.  *****************************************************************************/
  71. #define DYNRNG_TEXT N_("DTS dynamic range compression")
  72. #define DYNRNG_LONGTEXT N_( 
  73.     "Dynamic range compression makes the loud sounds softer, and the soft " 
  74.     "sounds louder, so you can more easily listen to the stream in a noisy " 
  75.     "environment without disturbing anyone. If you disable the dynamic range "
  76.     "compression the playback will be more adapted to a movie theater or a " 
  77.     "listening room.")
  78. vlc_module_begin ()
  79.     set_category( CAT_INPUT )
  80.     set_subcategory( SUBCAT_INPUT_ACODEC )
  81.     set_shortname( "DCA" )
  82.     set_description( N_("DTS Coherent Acoustics audio decoder") )
  83.     add_bool( "dts-dynrng", 1, NULL, DYNRNG_TEXT, DYNRNG_LONGTEXT, false )
  84.     set_capability( "audio filter", 100 )
  85.     set_callbacks( Create, Destroy )
  86.     add_submodule ()
  87.     set_description( N_("DTS Coherent Acoustics audio decoder") )
  88.     set_capability( "audio filter2", 100 )
  89.     set_callbacks( OpenFilter, CloseFilter )
  90. vlc_module_end ()
  91. /*****************************************************************************
  92.  * Create:
  93.  *****************************************************************************/
  94. static int Create( vlc_object_t *p_this )
  95. {
  96.     aout_filter_t *p_filter = (aout_filter_t *)p_this;
  97.     filter_sys_t *p_sys;
  98.     int i_ret;
  99.     if ( p_filter->input.i_format != VLC_FOURCC('d','t','s',' ')
  100.           || p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
  101.     {
  102.         return -1;
  103.     }
  104.     if ( p_filter->input.i_rate != p_filter->output.i_rate )
  105.     {
  106.         return -1;
  107.     }
  108.     /* Allocate the memory needed to store the module's structure */
  109.     p_sys = malloc( sizeof(filter_sys_t) );
  110.     p_filter->p_sys = (struct aout_filter_sys_t *)p_sys;
  111.     if( p_sys == NULL )
  112.         return -1;
  113.     i_ret = Open( VLC_OBJECT(p_filter), p_sys,
  114.                   p_filter->input, p_filter->output );
  115.     p_filter->pf_do_work = DoWork;
  116.     p_filter->b_in_place = 0;
  117.     return i_ret;
  118. }
  119. /*****************************************************************************
  120.  * Open:
  121.  *****************************************************************************/
  122. static int Open( vlc_object_t *p_this, filter_sys_t *p_sys,
  123.                  audio_format_t input, audio_format_t output )
  124. {
  125.     p_sys->b_dynrng = config_GetInt( p_this, "dts-dynrng" );
  126.     p_sys->b_dontwarn = 0;
  127.     /* We'll do our own downmixing, thanks. */
  128.     p_sys->i_nb_channels = aout_FormatNbChannels( &output );
  129.     switch ( (output.i_physical_channels & AOUT_CHAN_PHYSMASK)
  130.               & ~AOUT_CHAN_LFE )
  131.     {
  132.     case AOUT_CHAN_CENTER:
  133.         if ( (output.i_original_channels & AOUT_CHAN_CENTER)
  134.               || (output.i_original_channels
  135.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  136.         {
  137.             p_sys->i_flags = DCA_MONO;
  138.         }
  139.         break;
  140.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT:
  141.         if ( output.i_original_channels & AOUT_CHAN_DOLBYSTEREO )
  142.         {
  143.             p_sys->i_flags = DCA_DOLBY;
  144.         }
  145.         else if ( input.i_original_channels == AOUT_CHAN_CENTER )
  146.         {
  147.             p_sys->i_flags = DCA_MONO;
  148.         }
  149.         else if ( input.i_original_channels & AOUT_CHAN_DUALMONO )
  150.         {
  151.             p_sys->i_flags = DCA_CHANNEL;
  152.         }
  153.         else
  154.         {
  155.             p_sys->i_flags = DCA_STEREO;
  156.         }
  157.         break;
  158.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER:
  159.         p_sys->i_flags = DCA_3F;
  160.         break;
  161.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER:
  162.         p_sys->i_flags = DCA_2F1R;
  163.         break;
  164.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  165.           | AOUT_CHAN_REARCENTER:
  166.         p_sys->i_flags = DCA_3F1R;
  167.         break;
  168.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
  169.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  170.         p_sys->i_flags = DCA_2F2R;
  171.         break;
  172.     case AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
  173.           | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT:
  174.         p_sys->i_flags = DCA_3F2R;
  175.         break;
  176.     default:
  177.         msg_Warn( p_this, "unknown sample format!" );
  178.         free( p_sys );
  179.         return -1;
  180.     }
  181.     if ( output.i_physical_channels & AOUT_CHAN_LFE )
  182.     {
  183.         p_sys->i_flags |= DCA_LFE;
  184.     }
  185.     //p_sys->i_flags |= DCA_ADJUST_LEVEL;
  186.     /* Initialize libdca */
  187.     p_sys->p_libdca = dca_init( 0 );
  188.     if( p_sys->p_libdca == NULL )
  189.     {
  190.         msg_Err( p_this, "unable to initialize libdca" );
  191.         return VLC_EGENERIC;
  192.     }
  193.     aout_CheckChannelReorder( pi_channels_in, NULL,
  194.                               output.i_physical_channels & AOUT_CHAN_PHYSMASK,
  195.                               p_sys->i_nb_channels,
  196.                               p_sys->pi_chan_table );
  197.     return VLC_SUCCESS;
  198. }
  199. /*****************************************************************************
  200.  * Interleave: helper function to interleave channels
  201.  *****************************************************************************/
  202. static void Interleave( float * p_out, const float * p_in, int i_nb_channels,
  203.                         int *pi_chan_table )
  204. {
  205.     /* We do not only have to interleave, but also reorder the channels. */
  206.     int i, j;
  207.     for ( j = 0; j < i_nb_channels; j++ )
  208.     {
  209.         for ( i = 0; i < 256; i++ )
  210.         {
  211.             p_out[i * i_nb_channels + pi_chan_table[j]] = p_in[j * 256 + i];
  212.         }
  213.     }
  214. }
  215. /*****************************************************************************
  216.  * Duplicate: helper function to duplicate a unique channel
  217.  *****************************************************************************/
  218. static void Duplicate( float * p_out, const float * p_in )
  219. {
  220.     int i;
  221.     for ( i = 256; i--; )
  222.     {
  223.         *p_out++ = *p_in;
  224.         *p_out++ = *p_in;
  225.         p_in++;
  226.     }
  227. }
  228. /*****************************************************************************
  229.  * Exchange: helper function to exchange left & right channels
  230.  *****************************************************************************/
  231. static void Exchange( float * p_out, const float * p_in )
  232. {
  233.     int i;
  234.     const float * p_first = p_in + 256;
  235.     const float * p_second = p_in;
  236.     for ( i = 0; i < 256; i++ )
  237.     {
  238.         *p_out++ = *p_first++;
  239.         *p_out++ = *p_second++;
  240.     }
  241. }
  242. /*****************************************************************************
  243.  * DoWork: decode a DTS frame.
  244.  *****************************************************************************/
  245. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  246.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  247. {
  248.     filter_sys_t    *p_sys = (filter_sys_t *)p_filter->p_sys;
  249.     sample_t        i_sample_level = 1;
  250.     int             i_flags = p_sys->i_flags;
  251.     int             i_bytes_per_block = 256 * p_sys->i_nb_channels
  252.                       * sizeof(float);
  253.     int             i;
  254.     /*
  255.      * Do the actual decoding now.
  256.      */
  257.     /* Needs to be called so the decoder knows which type of bitstream it is
  258.      * dealing with. */
  259.     int i_sample_rate, i_bit_rate, i_frame_length;
  260.     if( !dca_syncinfo( p_sys->p_libdca, p_in_buf->p_buffer, &i_flags,
  261.                        &i_sample_rate, &i_bit_rate, &i_frame_length ) )
  262.     {
  263.         msg_Warn( p_aout, "libdca couldn't sync on frame" );
  264.         p_out_buf->i_nb_samples = p_out_buf->i_nb_bytes = 0;
  265.         return;
  266.     }
  267.     i_flags = p_sys->i_flags;
  268.     dca_frame( p_sys->p_libdca, p_in_buf->p_buffer,
  269.                &i_flags, &i_sample_level, 0 );
  270.     if ( (i_flags & DCA_CHANNEL_MASK) != (p_sys->i_flags & DCA_CHANNEL_MASK)
  271.           && !p_sys->b_dontwarn )
  272.     {
  273.         msg_Warn( p_aout,
  274.                   "libdca couldn't do the requested downmix 0x%x->0x%x",
  275.                   p_sys->i_flags  & DCA_CHANNEL_MASK,
  276.                   i_flags & DCA_CHANNEL_MASK );
  277.         p_sys->b_dontwarn = 1;
  278.     }
  279.     if( 0)//!p_sys->b_dynrng )
  280.     {
  281.         dca_dynrng( p_sys->p_libdca, NULL, NULL );
  282.     }
  283.     for ( i = 0; i < dca_blocks_num(p_sys->p_libdca); i++ )
  284.     {
  285.         sample_t * p_samples;
  286.         if( dca_block( p_sys->p_libdca ) )
  287.         {
  288.             msg_Warn( p_aout, "dca_block failed for block %d", i );
  289.             break;
  290.         }
  291.         p_samples = dca_samples( p_sys->p_libdca );
  292.         if ( (p_sys->i_flags & DCA_CHANNEL_MASK) == DCA_MONO
  293.               && (p_filter->output.i_physical_channels
  294.                    & (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT)) )
  295.         {
  296.             Duplicate( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  297.                        p_samples );
  298.         }
  299.         else if ( p_filter->output.i_original_channels
  300.                     & AOUT_CHAN_REVERSESTEREO )
  301.         {
  302.             Exchange( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  303.                       p_samples );
  304.         }
  305.         else
  306.         {
  307.             /* Interleave the *$£%ù samples. */
  308.             Interleave( (float *)(p_out_buf->p_buffer + i * i_bytes_per_block),
  309.                         p_samples, p_sys->i_nb_channels, p_sys->pi_chan_table);
  310.         }
  311.     }
  312.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  313.     p_out_buf->i_nb_bytes = i_bytes_per_block * i;
  314. }
  315. /*****************************************************************************
  316.  * Destroy : deallocate data structures
  317.  *****************************************************************************/
  318. static void Destroy( vlc_object_t *p_this )
  319. {
  320.     aout_filter_t *p_filter = (aout_filter_t *)p_this;
  321.     filter_sys_t *p_sys = (filter_sys_t *)p_filter->p_sys;
  322.     dca_free( p_sys->p_libdca );
  323.     free( p_sys );
  324. }
  325. /*****************************************************************************
  326.  * OpenFilter:
  327.  *****************************************************************************/
  328. static int OpenFilter( vlc_object_t *p_this )
  329. {
  330.     filter_t *p_filter = (filter_t *)p_this;
  331.     filter_sys_t *p_sys;
  332.     int i_ret;
  333.     if( p_filter->fmt_in.i_codec != VLC_FOURCC('d','t','s',' ')  )
  334.     {
  335.         return VLC_EGENERIC;
  336.     }
  337.     p_filter->fmt_out.audio.i_format =
  338.         p_filter->fmt_out.i_codec = VLC_FOURCC('f','l','3','2');
  339.     p_filter->fmt_out.audio.i_bitspersample =
  340.         aout_BitsPerSample( p_filter->fmt_out.i_codec );
  341.     /* Allocate the memory needed to store the module's structure */
  342.     p_sys = p_filter->p_sys = malloc( sizeof(filter_sys_t) );
  343.     if( p_sys == NULL )
  344.         return VLC_ENOMEM;
  345.     i_ret = Open( VLC_OBJECT(p_filter), p_sys,
  346.                   p_filter->fmt_in.audio, p_filter->fmt_out.audio );
  347.     p_filter->pf_audio_filter = Convert;
  348.     p_filter->fmt_out.audio.i_rate = p_filter->fmt_in.audio.i_rate;
  349.     return i_ret;
  350. }
  351. /*****************************************************************************
  352.  * CloseFilter : deallocate data structures
  353.  *****************************************************************************/
  354. static void CloseFilter( vlc_object_t *p_this )
  355. {
  356.     filter_t *p_filter = (filter_t *)p_this;
  357.     filter_sys_t *p_sys = p_filter->p_sys;
  358.     dca_free( p_sys->p_libdca );
  359.     free( p_sys );
  360. }
  361. static block_t *Convert( filter_t *p_filter, block_t *p_block )
  362. {
  363.     aout_filter_t aout_filter;
  364.     aout_buffer_t in_buf, out_buf;
  365.     block_t *p_out;
  366.     int i_out_size;
  367.     if( !p_block || !p_block->i_samples )
  368.     {
  369.         if( p_block )
  370.             block_Release( p_block );
  371.         return NULL;
  372.     }
  373.     i_out_size = p_block->i_samples *
  374.       p_filter->fmt_out.audio.i_bitspersample *
  375.         p_filter->fmt_out.audio.i_channels / 8;
  376.     p_out = p_filter->pf_audio_buffer_new( p_filter, i_out_size );
  377.     if( !p_out )
  378.     {
  379.         msg_Warn( p_filter, "can't get output buffer" );
  380.         block_Release( p_block );
  381.         return NULL;
  382.     }
  383.     p_out->i_samples = p_block->i_samples;
  384.     p_out->i_dts = p_block->i_dts;
  385.     p_out->i_pts = p_block->i_pts;
  386.     p_out->i_length = p_block->i_length;
  387.     aout_filter.p_sys = (struct aout_filter_sys_t *)p_filter->p_sys;
  388.     aout_filter.input = p_filter->fmt_in.audio;
  389.     aout_filter.input.i_format = p_filter->fmt_in.i_codec;
  390.     aout_filter.output = p_filter->fmt_out.audio;
  391.     aout_filter.output.i_format = p_filter->fmt_out.i_codec;
  392.     in_buf.p_buffer = p_block->p_buffer;
  393.     in_buf.i_nb_bytes = p_block->i_buffer;
  394.     in_buf.i_nb_samples = p_block->i_samples;
  395.     out_buf.p_buffer = p_out->p_buffer;
  396.     out_buf.i_nb_bytes = p_out->i_buffer;
  397.     out_buf.i_nb_samples = p_out->i_samples;
  398.     DoWork( (aout_instance_t *)p_filter, &aout_filter, &in_buf, &out_buf );
  399.     p_out->i_buffer = out_buf.i_nb_bytes;
  400.     p_out->i_samples = out_buf.i_nb_samples;
  401.     block_Release( p_block );
  402.     return p_out;
  403. }