dec_gain.c
上传用户:zhouyunkk
上传日期:2013-01-10
资源大小:59k
文件大小:3k
源码类别:

语音压缩

开发平台:

C/C++

  1. /*
  2.    ITU-T G.729 Annex C - Reference C code for floating point
  3.                          implementation of G.729
  4.                          Version 1.01 of 15.September.98
  5. */
  6. /*
  7. ----------------------------------------------------------------------
  8.                     COPYRIGHT NOTICE
  9. ----------------------------------------------------------------------
  10.    ITU-T G.729 Annex C ANSI C source code
  11.    Copyright (C) 1998, AT&T, France Telecom, NTT, University of
  12.    Sherbrooke.  All rights reserved.
  13. ----------------------------------------------------------------------
  14. */
  15. /*
  16.  File : DEC_GAIN.C
  17.  Used for the floating point version of both
  18.  G.729 main body and G.729A
  19. */
  20. #include "typedef.h"
  21. #include "version.h"
  22. #ifdef VER_G729A
  23.  #include "ld8a.h"
  24.  #include "tab_ld8a.h"
  25. #else
  26.  #include "ld8k.h"
  27.  #include "tab_ld8k.h"
  28. #endif
  29. /*----------------------------------------------------------------------------
  30.  * dec_gain - decode the adaptive and fixed codebook gains
  31.  *----------------------------------------------------------------------------
  32.  */
  33. void dec_gain(
  34.  int index,             /* input : quantizer index              */
  35.  FLOAT code[],          /* input : fixed code book vector       */
  36.  int l_subfr,           /* input : subframe size                */
  37.  int bfi,               /* input : bad frame indicator good = 0 */
  38.  FLOAT *gain_pit,       /* output: quantized acb gain           */
  39.  FLOAT *gain_code       /* output: quantized fcb gain           */
  40. )
  41. {
  42.    static FLOAT past_qua_en[4]={(F)-14.0,(F)-14.0,(F)-14.0,(F)-14.0};
  43.    int    index1,index2;
  44.    FLOAT  gcode0, g_code;
  45.    /*----------------- Test erasure ---------------*/
  46.    if (bfi != 0)
  47.      {
  48.         *gain_pit *= (F)0.9;
  49.         if(*gain_pit > (F)0.9) *gain_pit=(F)0.9;
  50.         *gain_code *= (F)0.98;
  51.      /*----------------------------------------------*
  52.       * update table of past quantized energies      *
  53.       *                              (frame erasure) *
  54.       *----------------------------------------------*/
  55.       gain_update_erasure(past_qua_en);
  56.         return;
  57.      }
  58.    /*-------------- Decode pitch gain ---------------*/
  59.    index1 = imap1[index/NCODE2] ;
  60.    index2 = imap2[index%NCODE2] ;
  61.    *gain_pit = gbk1[index1][0]+gbk2[index2][0] ;
  62.    /*-------------- Decode codebook gain ---------------*/
  63.   /*---------------------------------------------------*
  64.    *-  energy due to innovation                       -*
  65.    *-  predicted energy                               -*
  66.    *-  predicted codebook gain => gcode0[exp_gcode0]  -*
  67.    *---------------------------------------------------*/
  68.    gain_predict( past_qua_en, code, l_subfr, &gcode0);
  69.   /*-----------------------------------------------------------------*
  70.    * *gain_code = (gbk1[indice1][1]+gbk2[indice2][1]) * gcode0;      *
  71.    *-----------------------------------------------------------------*/
  72.    g_code = gbk1[index1][1]+gbk2[index2][1];
  73.    *gain_code =  g_code * gcode0;
  74.   /*----------------------------------------------*
  75.    * update table of past quantized energies      *
  76.    *----------------------------------------------*/
  77.    gain_update( past_qua_en, g_code);
  78.    return;
  79. }