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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /************************* MPEG-4 AAC 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 AAC/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 AAC/MPEG-4 Audio tools as specified by the MPEG-2 AAC/MPEG-4
  8. Audio standard. ISO/IEC  gives users of the MPEG-2 AAC/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 AAC/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 AAC/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 AAC/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: pns.c,v 1.6 2002/01/09 22:25:41 wmay Exp $
  26.  */
  27. #include "all.h"
  28. #define MEAN_NRG 1.5625e+18      /* Theory: (2^31)^2 / 3 = 1.537228e+18 */
  29. static void random2(long *seed)
  30. {
  31.     *seed = (1664525L * *seed) + 1013904223L;  /* Numerical recipes */
  32. }
  33. static void gen_rand_vector(float *spec, int size, long *state)
  34. /* Noise generator, generating vector with unity energy */
  35. {
  36.     int i;
  37.     float s, norm, nrg= 0.0;
  38.     norm = 1.0f / (float)sqrt( size * MEAN_NRG );
  39.     for (i=0; i<size; i++)
  40.     {
  41.         random2(state);
  42.         spec[i] = (float)(*state * norm);
  43.         nrg += spec[i] * spec[i];
  44.     }
  45.     s = 1.0f / (float)sqrt( nrg );
  46.     for (i=0; i<size; i++)
  47.         spec[i] *= s;
  48. }
  49. /*
  50.  * if (noise correlated) {
  51.  *   restore saved left channel random generator state
  52.  *   generate random values
  53.  * } else {
  54.  *   save current random generator state
  55.  *   generate random values
  56.  * }
  57.  * scale according to scalefactor
  58.  *
  59.  * Important: needs to be called left channel, then right channel
  60.  *            for each channel pair
  61.  */
  62. void pns(faacDecHandle hDecoder, MC_Info *mip, Info *info, int widx, int ch,
  63.          byte *group, byte *cb_map, int *factors,
  64.          int *lpflag, Float *coef[Chans] )
  65. {
  66.     Ch_Info *cip = &mip->ch_info[ch];
  67.     Float   *spec, *fp, scale;
  68.     int     cb, corr_flag, sfb, n, nn, b, bb, nband;
  69.     int   *band;
  70.     long    *nsp;
  71.     /* store original predictor flags when left channel of a channel pair */
  72.     if ((cip->cpe  &&  cip->ch_is_left  &&  info->islong))
  73.         for (sfb=0; sfb<info->sfb_per_sbk[0]; sfb++)
  74.             hDecoder->lp_store[sfb+1] = lpflag[sfb+1];
  75.     /* restore original predictor flags when right channel of a channel pair */
  76.     if ((cip->cpe  &&  !cip->ch_is_left  &&  info->islong))
  77.         for (sfb=0; sfb<info->sfb_per_sbk[0]; sfb++)
  78.             lpflag[sfb+1] = hDecoder->lp_store[sfb+1];
  79.     spec = coef[ ch ];
  80.     nsp = hDecoder->noise_state_save;
  81.     /* PNS goes by group */
  82.     bb = 0;
  83.     for (b = 0; b < info->nsbk; ) {
  84.         nband = info->sfb_per_sbk[b];
  85.         band = info->sbk_sfb_top[b];
  86.         b = *group++;       /* b = index of last sbk in group */
  87.         for (; bb < b; bb++) {  /* bb = sbk index */
  88.             n = 0;
  89.             for (sfb = 0; sfb < nband; sfb++){
  90.                 nn = band[sfb]; /* band is offset table, nn is last coef in band */
  91.                 cb = cb_map[sfb];
  92.                 if (cb == NOISE_HCB  ||  cb == NOISE_HCB+100) {
  93.                     /* found noise  substitution code book */
  94.                     /* disable prediction (only important for long blocks) */
  95.                     if (info->islong)  lpflag[1+sfb] = 0;
  96.                     /* determine left/right correlation */
  97.                     corr_flag = (cb != NOISE_HCB);
  98.                     /* reconstruct noise substituted values */
  99.                     /* generate random noise */
  100.                     fp = spec + n;
  101.                     if (corr_flag)  {
  102.                         /* Start with stored state */
  103.                         gen_rand_vector( fp, nn-n, nsp+sfb );
  104.                     } else {
  105.                         /* Store current state and go */
  106.                         nsp[sfb] = hDecoder->cur_noise_state;
  107.                         gen_rand_vector( fp, nn-n, &hDecoder->cur_noise_state );
  108.                     }
  109.                     /* scale to target energy */
  110.                     scale = (float)pow( 2.0, 0.25*(factors[sfb]) );
  111.                     for (; n < nn; n++) {   /* n is coef index */
  112.                         *fp++ *= scale;
  113.                     }
  114.                 }
  115.                 n = nn;
  116.             }
  117.             spec += info->bins_per_sbk[bb];
  118.             factors += nband;
  119.         }
  120.         nsp += info->sfb_per_sbk[bb-1];
  121.         cb_map += info->sfb_per_sbk[bb-1];
  122.     }
  123. }
  124. /********************************************************************************
  125.  *** FUNCTION: predict_pns_reset()                                              *
  126.  ***                                        *
  127.  ***    carry out predictor reset for PNS scalefactor bands (long blocks)       *
  128.  ***                                        *
  129.  ********************************************************************************/
  130. void predict_pns_reset(Info* info, PRED_STATUS *psp, byte *cb_map)
  131. {
  132.     int    nband, sfb, i, top;
  133.     int    *band;
  134.     if (info->islong) {
  135.         nband = info->sfb_per_sbk[0];
  136.         band = info->sbk_sfb_top[0];
  137.         for (i=0,sfb=0; sfb<nband; sfb++)  {
  138.             top = band[sfb];
  139.             if (cb_map[sfb] == NOISE_HCB  ||  cb_map[sfb] == NOISE_HCB+100) {
  140.                 for (; i<top; i++)
  141.                     reset_pred_state(&psp[i]);
  142.             }
  143.             i = top;
  144.         }
  145.     } /* end islong */
  146. }