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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * simple.c : simple channel mixer plug-in
  3.  *****************************************************************************
  4.  * Copyright (C) 2002, 2006 the VideoLAN team
  5.  * $Id: 7b3d44bea5d0632499c22ec41118716008a17525 $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@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.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_aout.h>
  32. #include <vlc_filter.h>
  33. #include <vlc_block.h>
  34. #include <assert.h>
  35. /*****************************************************************************
  36.  * Module descriptor
  37.  *****************************************************************************/
  38. static int  Create    ( vlc_object_t * );
  39. static int  OpenFilter( vlc_object_t * );
  40. vlc_module_begin ()
  41.     set_description( N_("Audio filter for simple channel mixing") )
  42.     set_capability( "audio filter", 10 )
  43.     set_category( CAT_AUDIO )
  44.     set_subcategory( SUBCAT_AUDIO_MISC )
  45.     set_callbacks( Create, NULL )
  46.     add_submodule ()
  47.     set_description( N_("audio filter for simple channel mixing") )
  48.     set_capability( "audio filter2", 10 )
  49.     set_callbacks( OpenFilter, NULL )
  50. vlc_module_end ()
  51. /*****************************************************************************
  52.  * Local prototypes
  53.  *****************************************************************************/
  54. #define AOUT_CHANS_STEREO_FRONT  ( AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT )
  55. #define AOUT_CHANS_STEREO_REAR   ( AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT )
  56. #define AOUT_CHANS_STEREO_MIDDLE (AOUT_CHAN_MIDDLELEFT | AOUT_CHAN_MIDDLERIGHT )
  57. #define AOUT_CHANS_2_0          AOUT_CHANS_STEREO_FRONT
  58. #define AOUT_CHANS_3_0          ( AOUT_CHANS_STEREO_FRONT | AOUT_CHAN_CENTER )
  59. #define AOUT_CHANS_4_0          ( AOUT_CHANS_STEREO_FRONT | AOUT_CHANS_STEREO_REAR )
  60. #define AOUT_CHANS_4_0_MIDDLE   ( AOUT_CHANS_STEREO_FRONT | AOUT_CHANS_STEREO_MIDDLE )
  61. #define AOUT_CHANS_4_CENTER_REAR (AOUT_CHANS_STEREO_FRONT | AOUT_CHAN_CENTER | AOUT_CHAN_REARCENTER)
  62. #define AOUT_CHANS_5_0          ( AOUT_CHANS_4_0 | AOUT_CHAN_CENTER )
  63. #define AOUT_CHANS_5_0_MIDDLE   ( AOUT_CHANS_4_0_MIDDLE | AOUT_CHAN_CENTER )
  64. #define AOUT_CHANS_6_0          ( AOUT_CHANS_STEREO_FRONT | AOUT_CHANS_STEREO_REAR | AOUT_CHANS_STEREO_MIDDLE )
  65. #define AOUT_CHANS_7_0          ( AOUT_CHANS_6_0 | AOUT_CHAN_CENTER )
  66. static bool IsSupported( const audio_format_t *p_input, const audio_format_t *p_output );
  67. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  68.                         aout_buffer_t * );
  69. static block_t *Filter( filter_t *, block_t * );
  70. /*****************************************************************************
  71.  * Create: allocate trivial channel mixer
  72.  *****************************************************************************/
  73. static int Create( vlc_object_t *p_this )
  74. {
  75.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  76.     if( !IsSupported( &p_filter->input, &p_filter->output ) )
  77.         return -1;
  78.     p_filter->pf_do_work = DoWork;
  79.     p_filter->b_in_place = 0;
  80.     return 0;
  81. }
  82. /*****************************************************************************
  83.  * DoWork: convert a buffer
  84.  *****************************************************************************/
  85. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  86.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  87. {
  88.     VLC_UNUSED(p_aout);
  89.     const unsigned i_input_physical = p_filter->input.i_physical_channels;
  90.     const bool b_input_7_0 = (i_input_physical & ~AOUT_CHAN_LFE) == AOUT_CHANS_7_0;
  91.     const bool b_input_5_0 = !b_input_7_0 &&
  92.                              ( (i_input_physical & AOUT_CHANS_5_0) == AOUT_CHANS_5_0 ||
  93.                                (i_input_physical & AOUT_CHANS_5_0_MIDDLE) == AOUT_CHANS_5_0_MIDDLE );
  94.     const bool b_input_4_center_rear =  !b_input_7_0 && !b_input_5_0 &&
  95.                              (i_input_physical & ~AOUT_CHAN_LFE) == AOUT_CHANS_4_CENTER_REAR;
  96.     const bool b_input_3_0 = !b_input_7_0 && !b_input_5_0 && !b_input_4_center_rear &&
  97.                              (i_input_physical & ~AOUT_CHAN_LFE) == AOUT_CHANS_3_0;
  98.     int i_input_nb = aout_FormatNbChannels( &p_filter->input );
  99.     int i_output_nb = aout_FormatNbChannels( &p_filter->output );
  100.     float *p_dest = (float *)p_out_buf->p_buffer;
  101.     const float *p_src = (const float *)p_in_buf->p_buffer;
  102.     int i;
  103.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  104.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes * i_output_nb / i_input_nb;
  105.     if( p_filter->output.i_physical_channels == AOUT_CHANS_2_0 )
  106.     {
  107.         if( b_input_7_0 )
  108.         for( i = p_in_buf->i_nb_samples; i--; )
  109.         {
  110.             *p_dest = p_src[6] + 0.5 * p_src[0] + p_src[2] / 4 + p_src[4] / 4;
  111.             p_dest++;
  112.             *p_dest = p_src[6] + 0.5 * p_src[1] + p_src[3] / 4 + p_src[5] / 4;
  113.             p_dest++;
  114.             p_src += 7;
  115.             if( p_filter->input.i_physical_channels & AOUT_CHAN_LFE ) p_src++;
  116.         }
  117.         else if( b_input_5_0 )
  118.         for( i = p_in_buf->i_nb_samples; i--; )
  119.         {
  120.             *p_dest = p_src[4] + 0.5 * p_src[0] + 0.33 * p_src[2];
  121.             p_dest++;
  122.             *p_dest = p_src[4] + 0.5 * p_src[1] + 0.33 * p_src[3];
  123.             p_dest++;
  124.             p_src += 5;
  125.             if( p_filter->input.i_physical_channels & AOUT_CHAN_LFE ) p_src++;
  126.         }
  127.         else if( b_input_3_0 )
  128.         for( i = p_in_buf->i_nb_samples; i--; )
  129.         {
  130.             *p_dest = p_src[2] + 0.5 * p_src[0];
  131.             p_dest++;
  132.             *p_dest = p_src[2] + 0.5 * p_src[1];
  133.             p_dest++;
  134.             p_src += 3;
  135.             if( p_filter->input.i_physical_channels & AOUT_CHAN_LFE ) p_src++;
  136.         }
  137.         else if (b_input_4_center_rear)
  138.         for( i = p_in_buf->i_nb_samples; i--; )
  139.         {
  140.           *p_dest = p_src[2] + p_src[3] + 0.5 * p_src[0];
  141.           p_dest++;
  142.           *p_dest = p_src[2] + p_src[3] + 0.5 * p_src[1];
  143.           p_dest++;
  144.           p_src += 4;
  145.         }
  146.     }
  147.     else if( p_filter->output.i_physical_channels == AOUT_CHAN_CENTER )
  148.     {
  149.         if( b_input_7_0 )
  150.         for( i = p_in_buf->i_nb_samples; i--; )
  151.         {
  152.             *p_dest = p_src[6] + p_src[0] / 4 + p_src[1] / 4 + p_src[2] / 8 + p_src[3] / 8 + p_src[4] / 8 + p_src[5] / 8;
  153.             p_dest++;
  154.             p_src += 7;
  155.             if( p_filter->input.i_physical_channels & AOUT_CHAN_LFE ) p_src++;
  156.         }
  157.         else if( b_input_5_0 )
  158.         for( i = p_in_buf->i_nb_samples; i--; )
  159.         {
  160.             *p_dest = p_src[4] + p_src[0] / 4 + p_src[1] / 4 + p_src[2] / 6 + p_src[3] / 6;
  161.             p_dest++;
  162.             p_src += 5;
  163.             if( p_filter->input.i_physical_channels & AOUT_CHAN_LFE ) p_src++;
  164.         }
  165.         else if( b_input_3_0 )
  166.         for( i = p_in_buf->i_nb_samples; i--; )
  167.         {
  168.             *p_dest = p_src[2] + p_src[0] / 4 + p_src[1] / 4;
  169.             p_dest++;
  170.             p_src += 3;
  171.             if( p_filter->input.i_physical_channels & AOUT_CHAN_LFE ) p_src++;
  172.         }
  173.         else
  174.         for( i = p_in_buf->i_nb_samples; i--; )
  175.         {
  176.             *p_dest = p_src[0] / 2 + p_src[1] / 2;
  177.             p_dest++;
  178.             p_src += 2;
  179.         }
  180.     }
  181.     else
  182.     {
  183.         assert( p_filter->output.i_physical_channels == AOUT_CHANS_4_0 );
  184.         assert( b_input_7_0 || b_input_5_0 );
  185.         if( b_input_7_0 )
  186.         for( i = p_in_buf->i_nb_samples; i--; )
  187.         {
  188.             *p_dest = p_src[6] + 0.5 * p_src[0] + p_src[2] / 6;
  189.             p_dest++;
  190.             *p_dest = p_src[6] + 0.5 * p_src[1] + p_src[3] / 6;
  191.             p_dest++;
  192.             *p_dest = p_src[2] / 6 +  p_src[4];
  193.             p_dest++;
  194.             *p_dest = p_src[3] / 6 +  p_src[5];
  195.             p_dest++;
  196.             p_src += 7;
  197.             if( p_filter->input.i_physical_channels & AOUT_CHAN_LFE ) p_src++;
  198.         }
  199.         else
  200.         for( i = p_in_buf->i_nb_samples; i--; )
  201.         {
  202.             *p_dest = p_src[4] + 0.5 * p_src[0];
  203.             p_dest++;
  204.             *p_dest = p_src[4] + 0.5 * p_src[1];
  205.             p_dest++;
  206.             *p_dest = p_src[2];
  207.             p_dest++;
  208.             *p_dest = p_src[3];
  209.             p_dest++;
  210.             p_src += 5;
  211.             if( p_filter->input.i_physical_channels & AOUT_CHAN_LFE ) p_src++;
  212.         }
  213.     }
  214. }
  215. /*****************************************************************************
  216.  * OpenFilter:
  217.  *****************************************************************************/
  218. static int OpenFilter( vlc_object_t *p_this )
  219. {
  220.     filter_t *p_filter = (filter_t *)p_this;
  221.     audio_format_t fmt_in  = p_filter->fmt_in.audio;
  222.     audio_format_t fmt_out = p_filter->fmt_out.audio;
  223.     fmt_in.i_format = p_filter->fmt_in.i_codec;
  224.     fmt_out.i_format = p_filter->fmt_out.i_codec;
  225.     if( !IsSupported( &fmt_in, &fmt_out ) )
  226.         return -1;
  227.     p_filter->pf_audio_filter = Filter;
  228.     return 0;
  229. }
  230. /*****************************************************************************
  231.  * Filter:
  232.  *****************************************************************************/
  233. static block_t *Filter( filter_t *p_filter, block_t *p_block )
  234. {
  235.     aout_filter_t aout_filter;
  236.     aout_buffer_t in_buf, out_buf;
  237.     block_t *p_out;
  238.     int i_out_size;
  239.     if( !p_block || !p_block->i_samples )
  240.     {
  241.         if( p_block )
  242.             block_Release( p_block );
  243.         return NULL;
  244.     }
  245.     i_out_size = p_block->i_samples *
  246.       p_filter->fmt_out.audio.i_bitspersample *
  247.         p_filter->fmt_out.audio.i_channels / 8;
  248.     p_out = p_filter->pf_audio_buffer_new( p_filter, i_out_size );
  249.     if( !p_out )
  250.     {
  251.         msg_Warn( p_filter, "can't get output buffer" );
  252.         block_Release( p_block );
  253.         return NULL;
  254.     }
  255.     p_out->i_samples = p_block->i_samples;
  256.     p_out->i_dts = p_block->i_dts;
  257.     p_out->i_pts = p_block->i_pts;
  258.     p_out->i_length = p_block->i_length;
  259.     aout_filter.p_sys = (struct aout_filter_sys_t *)p_filter->p_sys;
  260.     aout_filter.input = p_filter->fmt_in.audio;
  261.     aout_filter.input.i_format = p_filter->fmt_in.i_codec;
  262.     aout_filter.output = p_filter->fmt_out.audio;
  263.     aout_filter.output.i_format = p_filter->fmt_out.i_codec;
  264.     in_buf.p_buffer = p_block->p_buffer;
  265.     in_buf.i_nb_bytes = p_block->i_buffer;
  266.     in_buf.i_nb_samples = p_block->i_samples;
  267.     out_buf.p_buffer = p_out->p_buffer;
  268.     out_buf.i_nb_bytes = p_out->i_buffer;
  269.     out_buf.i_nb_samples = p_out->i_samples;
  270.     DoWork( (aout_instance_t *)p_filter, &aout_filter, &in_buf, &out_buf );
  271.     block_Release( p_block );
  272.     p_out->i_buffer = out_buf.i_nb_bytes;
  273.     p_out->i_samples = out_buf.i_nb_samples;
  274.     return p_out;
  275. }
  276. /*****************************************************************************
  277.  * Helpers:
  278.  *****************************************************************************/
  279. static bool IsSupported( const audio_format_t *p_input, const audio_format_t *p_output )
  280. {
  281.     if( p_input->i_format != VLC_FOURCC('f','l','3','2') ||
  282.           p_input->i_format != p_output->i_format ||
  283.           p_input->i_rate != p_output->i_rate )
  284.         return false;
  285.     if( p_input->i_physical_channels == p_output->i_physical_channels &&
  286.         p_input->i_original_channels == p_output->i_original_channels )
  287.     {
  288.         return false;
  289.     }
  290.     /* Only conversion to Mono, Stereo and 4.0 right now */
  291.     if( p_output->i_physical_channels != AOUT_CHAN_CENTER &&
  292.         p_output->i_physical_channels != AOUT_CHANS_2_0 &&
  293.         p_output->i_physical_channels != AOUT_CHANS_4_0 )
  294.     {
  295.         return false;
  296.     }
  297.     /* Only from 7/7.1/5/5.1/3/3.1/2.0
  298.      * XXX 5.X rear and middle are handled the same way */
  299.     if( (p_input->i_physical_channels & ~AOUT_CHAN_LFE) != AOUT_CHANS_7_0 &&
  300.         (p_input->i_physical_channels & ~AOUT_CHAN_LFE) != AOUT_CHANS_5_0 &&
  301.         (p_input->i_physical_channels & ~AOUT_CHAN_LFE) != AOUT_CHANS_5_0_MIDDLE &&
  302.         (p_input->i_physical_channels & ~AOUT_CHAN_LFE) != AOUT_CHANS_3_0 &&
  303.         (p_input->i_physical_channels & ~AOUT_CHAN_LFE) != AOUT_CHANS_4_CENTER_REAR &&
  304.          p_input->i_physical_channels != AOUT_CHANS_2_0 )
  305.     {
  306.         return false;
  307.     }
  308.     /* Only if we downmix */
  309.     if( aout_FormatNbChannels( p_input ) <= aout_FormatNbChannels( p_output ) )
  310.         return false;
  311.     return true;
  312. }