intensity.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /************************* MPEG-2 NBC Audio Decoder **************************
  2.  *                                                                           *
  3. "This software module was originally developed by
  4. AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS in the course of
  5. development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7,
  6. 14496-1,2 and 3. This software module is an implementation of a part of one or more
  7. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4
  8. Audio standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio
  9. standards free license to this software module or modifications thereof for use in
  10. hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4
  11. Audio  standards. Those intending to use this software module in hardware or
  12. software products are advised that this use may infringe existing patents.
  13. The original developer of this software module and his/her company, the subsequent
  14. editors and their companies, and ISO/IEC have no liability for use of this software
  15. module or modifications thereof in an implementation. Copyright is not released for
  16. non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer
  17. retains full right to use the code for his/her  own purpose, assign or donate the
  18. code to a third party and to inhibit third party from using the code for non
  19. MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must
  20. be included in all copies or derivative works."
  21. Copyright(c)1996.
  22.  *                                                                           *
  23.  ****************************************************************************/
  24. /*
  25.  * $Id: intensity.c,v 1.6 2002/01/09 22:25:41 wmay Exp $
  26.  */
  27. #include <math.h>
  28. #include "all.h"
  29. /*
  30.  * if (chan==RIGHT) {
  31.  *  do IS decoding for this channel (scale left ch. values with
  32.  *  factor(SFr-SFl) )
  33.  *  reset all lpflags for which IS is on
  34.  *  pass decoded IS values to predict
  35.  * }
  36.  */
  37. void intensity( MC_Info *mip, Info *info, int widx, int ch,
  38.                byte *group, byte *cb_map, int *factors,
  39.                int *lpflag, Float *coef[Chans] )
  40. {
  41.     Ch_Info *cip = &mip->ch_info[ch];
  42.     Float   *left, *right, *r, *l, scale;
  43.     int     cb, sign_sfb, sfb, n, nn, b, bb, nband;
  44.     int   *band;
  45.     if (!(cip->cpe && !cip->ch_is_left))
  46.         return;
  47.     right = coef[ ch ];
  48.     left  = coef[ cip->paired_ch ];
  49.     /* Intensity goes by group */
  50.     bb = 0;
  51.     for (b = 0; b < info->nsbk; ) {
  52.     nband = info->sfb_per_sbk[b];
  53.     band = info->sbk_sfb_top[b];
  54.     b = *group++;       /* b = index of last sbk in group */
  55.     for (; bb < b; bb++) {  /* bb = sbk index */
  56.         n = 0;
  57.         for (sfb = 0; sfb < nband; sfb++){
  58.         nn = band[sfb]; /* band is offset table, nn is last coef in band */
  59.         cb = cb_map[sfb];
  60.         if (cb == INTENSITY_HCB  ||  cb == INTENSITY_HCB2) {
  61.             /* found intensity code book */
  62.             /* disable prediction (only important for long blocks) */
  63.             lpflag[1+sfb] = 0;
  64.                 sign_sfb = (cb == INTENSITY_HCB) ? 1 : -1;
  65.                 scale = sign_sfb * (float)pow( 0.5, 0.25*(factors[sfb]) );
  66.             /* reconstruct right intensity values */
  67.             r = right + n;
  68.             l = left + n;
  69.             for (; n < nn; n++) {   /* n is coef index */
  70.             *r++ = *l++ * scale;
  71.             }
  72.         }
  73.         n = nn;
  74.         }
  75.         right += info->bins_per_sbk[bb];
  76.         left += info->bins_per_sbk[bb];
  77.         factors += nband;
  78.     }
  79.     cb_map += info->sfb_per_sbk[bb-1];
  80.     }
  81. }