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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * normvol.c: volume normalizer
  3.  *****************************************************************************
  4.  * Copyright (C) 2001, 2006 the VideoLAN team
  5.  * $Id: 2257b078fba3af03b0c6ae58dc9fbd62642123c7 $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*
  24.  * TODO:
  25.  *
  26.  * We should detect fast power increases and react faster to these
  27.  * This way, we can increase the buffer size to get a more stable filter */
  28. /*****************************************************************************
  29.  * Preamble
  30.  *****************************************************************************/
  31. #ifdef HAVE_CONFIG_H
  32. # include "config.h"
  33. #endif
  34. #include <errno.h>                                                 /* ENOMEM */
  35. #include <ctype.h>
  36. #include <math.h>
  37. #include <vlc_common.h>
  38. #include <vlc_plugin.h>
  39. #include <vlc_aout.h>
  40. /*****************************************************************************
  41.  * Local prototypes
  42.  *****************************************************************************/
  43. static int  Open     ( vlc_object_t * );
  44. static void Close    ( vlc_object_t * );
  45. static void DoWork   ( aout_instance_t * , aout_filter_t *,
  46.                 aout_buffer_t * , aout_buffer_t *);
  47. struct aout_filter_sys_t
  48. {
  49.     int i_nb;
  50.     float *p_last;
  51.     float f_max;
  52. };
  53. /*****************************************************************************
  54.  * Module descriptor
  55.  *****************************************************************************/
  56. #define BUFF_TEXT N_("Number of audio buffers" )
  57. #define BUFF_LONGTEXT N_("This is the number of audio buffers on which the " 
  58.                 "power measurement is made. A higher number of buffers will " 
  59.                 "increase the response time of the filter to a spike " 
  60.                 "but will make it less sensitive to short variations." )
  61. #define LEVEL_TEXT N_("Max level" )
  62. #define LEVEL_LONGTEXT N_("If the average power over the last N buffers " 
  63.                "is higher than this value, the volume will be normalized. " 
  64.                "This value is a positive floating point number. A value " 
  65.                "between 0.5 and 10 seems sensible." )
  66. vlc_module_begin ()
  67.     set_description( N_("Volume normalizer") )
  68.     set_shortname( N_("Volume normalizer") )
  69.     set_category( CAT_AUDIO )
  70.     set_subcategory( SUBCAT_AUDIO_AFILTER )
  71.     add_shortcut( "volnorm" )
  72.     add_integer( "norm-buff-size", 20 ,NULL ,BUFF_TEXT, BUFF_LONGTEXT,
  73.                  true )
  74.     add_float( "norm-max-level", 2.0, NULL, LEVEL_TEXT,
  75.                LEVEL_LONGTEXT, true )
  76.     set_capability( "audio filter", 0 )
  77.     set_callbacks( Open, Close )
  78. vlc_module_end ()
  79. /*****************************************************************************
  80.  * Open: initialize and create stuff
  81.  *****************************************************************************/
  82. static int Open( vlc_object_t *p_this )
  83. {
  84.     aout_filter_t *p_filter = (aout_filter_t*)p_this;
  85.     bool b_fit = true;
  86.     int i_channels;
  87.     aout_filter_sys_t *p_sys;
  88.     if( p_filter->input.i_format != VLC_FOURCC('f','l','3','2' ) ||
  89.         p_filter->output.i_format != VLC_FOURCC('f','l','3','2') )
  90.     {
  91.         b_fit = false;
  92.         p_filter->input.i_format = VLC_FOURCC('f','l','3','2');
  93.         p_filter->output.i_format = VLC_FOURCC('f','l','3','2');
  94.         msg_Warn( p_filter, "bad input or output format" );
  95.     }
  96.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  97.     {
  98.         b_fit = false;
  99.         memcpy( &p_filter->output, &p_filter->input,
  100.                 sizeof(audio_sample_format_t) );
  101.         msg_Warn( p_filter, "input and output formats are not similar" );
  102.     }
  103.     if ( ! b_fit )
  104.     {
  105.         return VLC_EGENERIC;
  106.     }
  107.     p_filter->pf_do_work = DoWork;
  108.     p_filter->b_in_place = true;
  109.     i_channels = aout_FormatNbChannels( &p_filter->input );
  110.     p_sys = p_filter->p_sys = malloc( sizeof( aout_filter_sys_t ) );
  111.     if( !p_sys )
  112.         return VLC_ENOMEM;
  113.     p_sys->i_nb = var_CreateGetInteger( p_filter->p_parent, "norm-buff-size" );
  114.     p_sys->f_max = var_CreateGetFloat( p_filter->p_parent, "norm-max-level" );
  115.     if( p_sys->f_max <= 0 ) p_sys->f_max = 0.01;
  116.     /* We need to store (nb_buffers+1)*nb_channels floats */
  117.     p_sys->p_last = calloc( i_channels * (p_filter->p_sys->i_nb + 2), sizeof(float) );
  118.     if( !p_sys->p_last )
  119.     {
  120.         free( p_sys );
  121.         return VLC_ENOMEM;
  122.     }
  123.     return VLC_SUCCESS;
  124. }
  125. /*****************************************************************************
  126.  * DoWork : normalizes and sends a buffer
  127.  *****************************************************************************/
  128.  static void DoWork( aout_instance_t *p_aout, aout_filter_t *p_filter,
  129.                      aout_buffer_t *p_in_buf, aout_buffer_t *p_out_buf )
  130. {
  131.     float *pf_sum;
  132.     float *pf_gain;
  133.     float f_average = 0;
  134.     int i, i_chan;
  135.     int i_samples = p_in_buf->i_nb_samples;
  136.     int i_channels = aout_FormatNbChannels( &p_filter->input );
  137.     float *p_out = (float*)p_out_buf->p_buffer;
  138.     float *p_in =  (float*)p_in_buf->p_buffer;
  139.     struct aout_filter_sys_t *p_sys = p_filter->p_sys;
  140.     pf_sum = calloc( i_channels, sizeof(float) );
  141.     if( !pf_sum )
  142.         return;
  143.     pf_gain = malloc( sizeof(float) * i_channels );
  144.     if( !pf_gain )
  145.     {
  146.         free( pf_sum );
  147.         return;
  148.     }
  149.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  150.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes;
  151.     /* Calculate the average power level on this buffer */
  152.     for( i = 0 ; i < i_samples; i++ )
  153.     {
  154.         for( i_chan = 0; i_chan < i_channels; i_chan++ )
  155.         {
  156.             float f_sample = p_in[i_chan];
  157.             float f_square = pow( f_sample, 2 );
  158.             pf_sum[i_chan] += f_square;
  159.         }
  160.         p_in += i_channels;
  161.     }
  162.     /* sum now contains for each channel the sigma(value²) */
  163.     for( i_chan = 0; i_chan < i_channels; i_chan++ )
  164.     {
  165.         /* Shift our lastbuff */
  166.         memmove( &p_sys->p_last[ i_chan * p_sys->i_nb],
  167.                         &p_sys->p_last[i_chan * p_sys->i_nb + 1],
  168.                  (p_sys->i_nb-1) * sizeof( float ) );
  169.         /* Insert the new average : sqrt(sigma(value²)) */
  170.         p_sys->p_last[ i_chan * p_sys->i_nb + p_sys->i_nb - 1] =
  171.                 sqrt( pf_sum[i_chan] );
  172.         pf_sum[i_chan] = 0;
  173.         /* Get the average power on the lastbuff */
  174.         f_average = 0;
  175.         for( i = 0; i < p_sys->i_nb ; i++)
  176.         {
  177.             f_average += p_sys->p_last[ i_chan * p_sys->i_nb + i ];
  178.         }
  179.         f_average = f_average / p_sys->i_nb;
  180.         /* Seuil arbitraire */
  181.         p_sys->f_max = var_GetFloat( p_aout, "norm-max-level" );
  182.         //fprintf(stderr,"Average %f, max %fn", f_average, p_sys->f_max );
  183.         if( f_average > p_sys->f_max )
  184.         {
  185.              pf_gain[i_chan] = f_average / p_sys->f_max;
  186.         }
  187.         else
  188.         {
  189.            pf_gain[i_chan] = 1;
  190.         }
  191.     }
  192.     /* Apply gain */
  193.     for( i = 0; i < i_samples; i++)
  194.     {
  195.         for( i_chan = 0; i_chan < i_channels; i_chan++ )
  196.         {
  197.             p_out[i_chan] /= pf_gain[i_chan];
  198.         }
  199.         p_out += i_channels;
  200.     }
  201.     free( pf_sum );
  202.     free( pf_gain );
  203.     return;
  204. }
  205. /**********************************************************************
  206.  * Close
  207.  **********************************************************************/
  208. static void Close( vlc_object_t *p_this )
  209. {
  210.     aout_filter_t *p_filter = (aout_filter_t*)p_this;
  211.     aout_filter_sys_t *p_sys = p_filter->p_sys;
  212.     if( p_sys )
  213.     {
  214.         free( p_sys->p_last );
  215.         free( p_sys );
  216.     }
  217. }