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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * fixed.c: Fixed-point audio format conversions
  3.  *****************************************************************************
  4.  * Copyright (C) 2002, 2006 the VideoLAN team
  5.  * $Id: 1282838feffc00011b3ddca11ad2830324e07929 $
  6.  *
  7.  * Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
  8.  *          Marc Ariberti <marcari@videolan.org>
  9.  *          Samuel Hocevar <sam@zoy.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 <vlc_aout.h>
  34. /*****************************************************************************
  35.  * Local prototypes
  36.  *****************************************************************************/
  37. static int  Create_F32ToS16    ( vlc_object_t * );
  38. static void Do_F32ToS16( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  39.                          aout_buffer_t * );
  40. static int  Create_S16ToF32    ( vlc_object_t * );
  41. static void Do_S16ToF32( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  42.                          aout_buffer_t * );
  43. static int  Create_U8ToF32    ( vlc_object_t * );
  44. static void Do_U8ToF32( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  45.                          aout_buffer_t * );
  46. /*****************************************************************************
  47.  * Module descriptor
  48.  *****************************************************************************/
  49. vlc_module_begin ()
  50.     set_description( N_("Fixed point audio format conversions") )
  51.     add_submodule ()
  52.         set_callbacks( Create_F32ToS16, NULL )
  53.         set_capability( "audio filter", 10 )
  54.     add_submodule ()
  55.         set_callbacks( Create_S16ToF32, NULL )
  56.         set_capability( "audio filter", 15 )
  57.     add_submodule ()
  58.         set_callbacks( Create_U8ToF32, NULL )
  59.         set_capability( "audio filter", 1 )
  60. vlc_module_end ()
  61. /*****************************************************************************
  62.  * F32 to S16
  63.  *****************************************************************************/
  64. static int Create_F32ToS16( vlc_object_t *p_this )
  65. {
  66.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  67.     if ( p_filter->input.i_format != VLC_FOURCC('f','i','3','2')
  68.           || p_filter->output.i_format != AOUT_FMT_S16_NE )
  69.     {
  70.         return -1;
  71.     }
  72.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  73.     {
  74.         return -1;
  75.     }
  76.     p_filter->pf_do_work = Do_F32ToS16;
  77.     p_filter->b_in_place = 1;
  78.     return VLC_SUCCESS;;
  79. }
  80. /*****************************************************************************
  81.  * support routines borrowed from mpg321 (file: mad.c), which is distributed
  82.  * under GPL license
  83.  *
  84.  * mpg321 was written by Joe Drew <drew@debian.org>, and based upon 'plaympeg'
  85.  * from the smpeg sources, which was written by various people from Loki Software
  86.  * (http://www.lokigames.com).
  87.  *
  88.  * It also incorporates some source from mad, written by Robert Leslie
  89.  *****************************************************************************/
  90. /* The following two routines and data structure are from the ever-brilliant
  91.      Rob Leslie.
  92. */
  93. #define VLC_F_FRACBITS  28
  94. # if VLC_F_FRACBITS == 28
  95. #  define VLC_F(x) ((vlc_fixed_t) (x##L))
  96. # endif
  97. # define VLC_F_ONE VLC_F(0x10000000)
  98. /*****************************************************************************
  99.  * s24_to_s16_pcm: Scale a 24 bit pcm sample to a 16 bit pcm sample.
  100.  *****************************************************************************/
  101. static inline int16_t s24_to_s16_pcm(vlc_fixed_t sample)
  102. {
  103.   /* round */
  104.   sample += (1L << (VLC_F_FRACBITS - 16));
  105.   /* clip */
  106.   if (sample >= VLC_F_ONE)
  107.     sample = VLC_F_ONE - 1;
  108.   else if (sample < -VLC_F_ONE)
  109.     sample = -VLC_F_ONE;
  110.   /* quantize */
  111.   return (sample >> (VLC_F_FRACBITS + 1 - 16));
  112. }
  113. static void Do_F32ToS16( aout_instance_t * p_aout, aout_filter_t * p_filter,
  114.                          aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  115. {
  116.     VLC_UNUSED(p_aout);
  117.     int i;
  118.     vlc_fixed_t * p_in = (vlc_fixed_t *)p_in_buf->p_buffer;
  119.     int16_t * p_out = (int16_t *)p_out_buf->p_buffer;
  120.     for ( i = p_in_buf->i_nb_samples
  121.                * aout_FormatNbChannels( &p_filter->input ) ; i-- ; )
  122.     {
  123.         /* Fast Scaling */
  124.         *p_out++ = s24_to_s16_pcm(*p_in++);
  125.     }
  126.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  127.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes / 2;
  128. }
  129. /*****************************************************************************
  130.  * S16 to F32
  131.  *****************************************************************************/
  132. static int Create_S16ToF32( vlc_object_t *p_this )
  133. {
  134.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  135.     if ( p_filter->output.i_format != VLC_FOURCC('f','i','3','2')
  136.           || p_filter->input.i_format != AOUT_FMT_S16_NE )
  137.     {
  138.         return -1;
  139.     }
  140.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  141.     {
  142.         return -1;
  143.     }
  144.     p_filter->pf_do_work = Do_S16ToF32;
  145.     p_filter->b_in_place = 1;
  146.     return 0;
  147. }
  148. static void Do_S16ToF32( aout_instance_t * p_aout, aout_filter_t * p_filter,
  149.                          aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  150. {
  151.     VLC_UNUSED(p_aout);
  152.     int i = p_in_buf->i_nb_samples * aout_FormatNbChannels( &p_filter->input );
  153.     /* We start from the end because b_in_place is true */
  154.     int16_t * p_in = (int16_t *)p_in_buf->p_buffer + i - 1;
  155.     vlc_fixed_t * p_out = (vlc_fixed_t *)p_out_buf->p_buffer + i - 1;
  156.     while( i-- )
  157.     {
  158.         *p_out = (vlc_fixed_t)( (int32_t)(*p_in) * (FIXED32_ONE >> 16) );
  159.         p_in--; p_out--;
  160.     }
  161.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  162.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes
  163.             * sizeof(vlc_fixed_t) / sizeof(int16_t);
  164. }
  165. /*****************************************************************************
  166.  * U8 to F32
  167.  *****************************************************************************/
  168. static int Create_U8ToF32( vlc_object_t *p_this )
  169. {
  170.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  171.     if ( p_filter->input.i_format != VLC_FOURCC('u','8',' ',' ')
  172.           || p_filter->output.i_format != VLC_FOURCC('f','i','3','2') )
  173.     {
  174.         return -1;
  175.     }
  176.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  177.     {
  178.         return -1;
  179.     }
  180.     p_filter->pf_do_work = Do_U8ToF32;
  181.     p_filter->b_in_place = true;
  182.     return 0;
  183. }
  184. static void Do_U8ToF32( aout_instance_t * p_aout, aout_filter_t * p_filter,
  185.                         aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  186. {
  187.     VLC_UNUSED(p_aout);
  188.     int i = p_in_buf->i_nb_samples * aout_FormatNbChannels( &p_filter->input );
  189.     /* We start from the end because b_in_place is true */
  190.     uint8_t * p_in = (uint8_t *)p_in_buf->p_buffer + i - 1;
  191.     vlc_fixed_t * p_out = (vlc_fixed_t *)p_out_buf->p_buffer + i - 1;
  192.     while( i-- )
  193.     {
  194.         *p_out = (vlc_fixed_t)( (int32_t)(*p_in - 128) * (FIXED32_ONE / 128) );
  195.         p_in--; p_out--;
  196.     }
  197.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  198.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes * sizeof(vlc_fixed_t);
  199. }