drc.c
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:5k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2. ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
  3. ** Copyright (C) 2003-2005 M. Bakker, Ahead Software AG, http://www.nero.com
  4. **  
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU General Public License as published by
  7. ** the Free Software Foundation; either version 2 of the License, or
  8. ** (at your option) any later version.
  9. ** 
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ** GNU General Public License for more details.
  14. ** 
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program; if not, write to the Free Software 
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. **
  19. ** Any non-GPL usage of this software or parts of this software is strictly
  20. ** forbidden.
  21. **
  22. ** Software using this code must display the following message visibly in the
  23. ** software:
  24. ** "FAAD2 AAC/HE-AAC/HE-AACv2/DRM decoder (c) Ahead Software, www.nero.com"
  25. ** in, for example, the about-box or help/startup screen.
  26. **
  27. ** Commercial non-GPL licensing of this software is possible.
  28. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
  29. **
  30. ** $Id: drc.c,v 1.2 2005/11/01 21:41:43 gabest Exp $
  31. **/
  32. #include "common.h"
  33. #include "structs.h"
  34. #include <stdlib.h>
  35. #include <string.h>
  36. #include "syntax.h"
  37. #include "drc.h"
  38. drc_info *drc_init(real_t cut, real_t boost)
  39. {
  40.     drc_info *drc = (drc_info*)faad_malloc(sizeof(drc_info));
  41.     memset(drc, 0, sizeof(drc_info));
  42.     drc->ctrl1 = cut;
  43.     drc->ctrl2 = boost;
  44.     drc->num_bands = 1;
  45.     drc->band_top[0] = 1024/4 - 1;
  46.     drc->dyn_rng_sgn[0] = 1;
  47.     drc->dyn_rng_ctl[0] = 0;
  48.     return drc;
  49. }
  50. void drc_end(drc_info *drc)
  51. {
  52.     if (drc) faad_free(drc);
  53. }
  54. #ifdef FIXED_POINT
  55. static real_t drc_pow2_table[] =
  56. {
  57.     COEF_CONST(0.5146511183),
  58.     COEF_CONST(0.5297315472),
  59.     COEF_CONST(0.5452538663),
  60.     COEF_CONST(0.5612310242),
  61.     COEF_CONST(0.5776763484),
  62.     COEF_CONST(0.5946035575),
  63.     COEF_CONST(0.6120267717),
  64.     COEF_CONST(0.6299605249),
  65.     COEF_CONST(0.6484197773),
  66.     COEF_CONST(0.6674199271),
  67.     COEF_CONST(0.6869768237),
  68.     COEF_CONST(0.7071067812),
  69.     COEF_CONST(0.7278265914),
  70.     COEF_CONST(0.7491535384),
  71.     COEF_CONST(0.7711054127),
  72.     COEF_CONST(0.7937005260),
  73.     COEF_CONST(0.8169577266),
  74.     COEF_CONST(0.8408964153),
  75.     COEF_CONST(0.8655365610),
  76.     COEF_CONST(0.8908987181),
  77.     COEF_CONST(0.9170040432),
  78.     COEF_CONST(0.9438743127),
  79.     COEF_CONST(0.9715319412),
  80.     COEF_CONST(1.0000000000),
  81.     COEF_CONST(1.0293022366),
  82.     COEF_CONST(1.0594630944),
  83.     COEF_CONST(1.0905077327),
  84.     COEF_CONST(1.1224620483),
  85.     COEF_CONST(1.1553526969),
  86.     COEF_CONST(1.1892071150),
  87.     COEF_CONST(1.2240535433),
  88.     COEF_CONST(1.2599210499),
  89.     COEF_CONST(1.2968395547),
  90.     COEF_CONST(1.3348398542),
  91.     COEF_CONST(1.3739536475),
  92.     COEF_CONST(1.4142135624),
  93.     COEF_CONST(1.4556531828),
  94.     COEF_CONST(1.4983070769),
  95.     COEF_CONST(1.5422108254),
  96.     COEF_CONST(1.5874010520),
  97.     COEF_CONST(1.6339154532),
  98.     COEF_CONST(1.6817928305),
  99.     COEF_CONST(1.7310731220),
  100.     COEF_CONST(1.7817974363),
  101.     COEF_CONST(1.8340080864),
  102.     COEF_CONST(1.8877486254),
  103.     COEF_CONST(1.9430638823)
  104. };
  105. #endif
  106. void drc_decode(drc_info *drc, real_t *spec)
  107. {
  108.     uint16_t i, bd, top;
  109. #ifdef FIXED_POINT
  110.     int32_t exp, frac;
  111. #else
  112.     real_t factor, exp;
  113. #endif
  114.     uint16_t bottom = 0;
  115.     if (drc->num_bands == 1)
  116.         drc->band_top[0] = 1024/4 - 1;
  117.     for (bd = 0; bd < drc->num_bands; bd++)
  118.     {
  119.         top = 4 * (drc->band_top[bd] + 1);
  120. #ifndef FIXED_POINT
  121.         /* Decode DRC gain factor */
  122.         if (drc->dyn_rng_sgn[bd])  /* compress */
  123.             exp = -drc->ctrl1 * (drc->dyn_rng_ctl[bd] - (DRC_REF_LEVEL - drc->prog_ref_level))/REAL_CONST(24.0);
  124.         else /* boost */
  125.             exp = drc->ctrl2 * (drc->dyn_rng_ctl[bd] - (DRC_REF_LEVEL - drc->prog_ref_level))/REAL_CONST(24.0);
  126.         factor = (real_t)pow(2.0, exp);
  127.         /* Apply gain factor */
  128.         for (i = bottom; i < top; i++)
  129.             spec[i] *= factor;
  130. #else
  131.         /* Decode DRC gain factor */
  132.         if (drc->dyn_rng_sgn[bd])  /* compress */
  133.         {
  134.             exp = -1 * (drc->dyn_rng_ctl[bd] - (DRC_REF_LEVEL - drc->prog_ref_level))/ 24;
  135.             frac = -1 * (drc->dyn_rng_ctl[bd] - (DRC_REF_LEVEL - drc->prog_ref_level)) % 24;
  136.         } else { /* boost */
  137.             exp = (drc->dyn_rng_ctl[bd] - (DRC_REF_LEVEL - drc->prog_ref_level))/ 24;
  138.             frac = (drc->dyn_rng_ctl[bd] - (DRC_REF_LEVEL - drc->prog_ref_level)) % 24;
  139.         }
  140.         /* Apply gain factor */
  141.         if (exp < 0)
  142.         {
  143.             for (i = bottom; i < top; i++)
  144.             {
  145.                 spec[i] >>= -exp;
  146.                 if (frac)
  147.                     spec[i] = MUL_R(spec[i],drc_pow2_table[frac+23]);
  148.             }
  149.         } else {
  150.             for (i = bottom; i < top; i++)
  151.             {
  152.                 spec[i] <<= exp;
  153.                 if (frac)
  154.                     spec[i] = MUL_R(spec[i],drc_pow2_table[frac+23]);
  155.             }
  156.         }
  157. #endif
  158.         bottom = top;
  159.     }
  160. }