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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * fixed32tos16.c : converter from fixed32 to signed 16 bits integer
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: fixed32tos16.c 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                                      /* malloc(), free() */
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #include "audio_output.h"
  30. #include "aout_internal.h"
  31. /*****************************************************************************
  32.  * Local prototypes
  33.  *****************************************************************************/
  34. static int  Create    ( vlc_object_t * );
  35. static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,
  36.                         aout_buffer_t * );
  37. /*****************************************************************************
  38.  * Module descriptor
  39.  *****************************************************************************/
  40. vlc_module_begin();
  41.     set_description( _("audio filter for fixed32->s16 conversion") );
  42.     set_capability( "audio filter", 10 );
  43.     set_callbacks( Create, NULL );
  44. vlc_module_end();
  45. /*****************************************************************************
  46.  * Create: allocate trivial mixer
  47.  *****************************************************************************
  48.  * This function allocates and initializes a Crop vout method.
  49.  *****************************************************************************/
  50. static int Create( vlc_object_t *p_this )
  51. {
  52.     aout_filter_t * p_filter = (aout_filter_t *)p_this;
  53.     if ( p_filter->input.i_format != VLC_FOURCC('f','i','3','2')
  54.           || p_filter->output.i_format != AOUT_FMT_S16_NE )
  55.     {
  56.         return -1;
  57.     }
  58.     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
  59.     {
  60.         return -1;
  61.     }
  62.     p_filter->pf_do_work = DoWork;
  63.     p_filter->b_in_place = 1;
  64.     return 0;
  65. }
  66. /*****************************************************************************
  67.  * support routines borrowed from mpg321 (file: mad.c), which is distributed
  68.  * under GPL license
  69.  *
  70.  * mpg321 was written by Joe Drew <drew@debian.org>, and based upon 'plaympeg'
  71.  * from the smpeg sources, which was written by various people from Loki Software
  72.  * (http://www.lokigames.com).
  73.  *
  74.  * It also incorporates some source from mad, written by Robert Leslie
  75.  *****************************************************************************/
  76. /* The following two routines and data structure are from the ever-brilliant
  77.      Rob Leslie.
  78. */
  79. #define VLC_F_FRACBITS  28
  80. # if VLC_F_FRACBITS == 28
  81. #  define VLC_F(x) ((vlc_fixed_t) (x##L))
  82. # endif
  83. # define VLC_F_ONE VLC_F(0x10000000)
  84. struct audio_dither {
  85.     vlc_fixed_t error[3];
  86.     vlc_fixed_t random;
  87. };
  88. /********************************************************************
  89.  * NAME:                prng()
  90.  * DESCRIPTION: 32-bit pseudo-random number generator
  91.  ********************************************************************/
  92. static inline unsigned long prng(unsigned long state)
  93. {
  94.     return (state * 0x0019660dL + 0x3c6ef35fL) & 0xffffffffL;
  95. }
  96. /********************************************************************
  97.  * NAME:        mpg321_s24_to_s16_pcm()
  98.  * DESCRIPTION: generic linear sample quantize and dither routine
  99.  ********************************************************************/
  100. static inline int16_t mpg321_s24_to_s16_pcm(unsigned int bits, vlc_fixed_t sample,
  101.                                             struct audio_dither *dither)
  102. {
  103.     unsigned int scalebits;
  104.     vlc_fixed_t output, mask, random;
  105.     enum {
  106.         MIN = -VLC_F_ONE,
  107.         MAX = VLC_F_ONE - 1
  108.     };
  109.     /* noise shape */
  110.     sample += dither->error[0] - dither->error[1] + dither->error[2];
  111.     dither->error[2] = dither->error[1];
  112.     dither->error[1] = dither->error[0] / 2;
  113.     /* bias */
  114.     output = sample + (1L << (VLC_F_FRACBITS + 1 - bits - 1));
  115.     scalebits = VLC_F_FRACBITS + 1 - bits;
  116.     mask = (1L << scalebits) - 1;
  117.     /* dither */
  118.     random    = prng(dither->random);
  119.     output += (random & mask) - (dither->random & mask);
  120.     dither->random = random;
  121.     /* clip */
  122.     if (output > MAX) {
  123.         output = MAX;
  124.         if (sample > MAX)
  125.             sample = MAX;
  126.     }
  127.     else if (output < MIN) {
  128.         output = MIN;
  129.         if (sample < MIN)
  130.             sample = MIN;
  131.     }
  132.     /* quantize */
  133.     output &= ~mask;
  134.     /* error feedback */
  135.     dither->error[0] = sample - output;
  136.     /* scale */
  137.     return output >> scalebits;
  138. }
  139. /*****************************************************************************
  140.  * s24_to_s16_pcm: Scale a 24 bit pcm sample to a 16 bit pcm sample.
  141.  *****************************************************************************/
  142. static inline int16_t s24_to_s16_pcm(vlc_fixed_t sample)
  143. {
  144.   /* round */
  145.   sample += (1L << (VLC_F_FRACBITS - 16));
  146.   /* clip */
  147.   if (sample >= VLC_F_ONE)
  148.     sample = VLC_F_ONE - 1;
  149.   else if (sample < -VLC_F_ONE)
  150.     sample = -VLC_F_ONE;
  151.   /* quantize */
  152.   return (sample >> (VLC_F_FRACBITS + 1 - 16));
  153. }
  154. /*****************************************************************************
  155.  * DoWork: convert a buffer
  156.  *****************************************************************************/
  157. static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
  158.                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
  159. {
  160.     int i;
  161.     vlc_fixed_t * p_in = (vlc_fixed_t *)p_in_buf->p_buffer;
  162.     int16_t * p_out = (int16_t *)p_out_buf->p_buffer;
  163. #if 0
  164.     static struct audio_dither dither;
  165. #endif
  166.     for ( i = p_in_buf->i_nb_samples
  167.                * aout_FormatNbChannels( &p_filter->input ) ; i-- ; )
  168.     {
  169. #if 0
  170.         /* Accurate scaling */
  171.         *p_out++ = mpg321_s24_to_s16_pcm(16, *p_in++, &dither);
  172. #endif
  173.         /* Fast Scaling */
  174.         *p_out++ = s24_to_s16_pcm(*p_in++);
  175.     }
  176.     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
  177.     p_out_buf->i_nb_bytes = p_in_buf->i_nb_bytes / 2;
  178. }