DE_ACELP.C
上传用户:meifeng08
上传日期:2013-06-18
资源大小:5304k
文件大小:2k
源码类别:

语音压缩

开发平台:

C/C++

  1. /* Version 3.3    Last modified: December 26, 1995 */
  2. /*-----------------------------------------------------------*
  3.  *  Function  Decod_ACELP()                                  *
  4.  *  ~~~~~~~~~~~~~~~~~~~~~~~                                  *
  5.  *   Algebraic codebook decoder.                             *
  6.  *----------------------------------------------------------*/
  7. #include "typedef.h"
  8. #include "basic_op.h"
  9. #include "ld8k.h"
  10. void Decod_ACELP(
  11.   Word16 sign,      /* (i)     : signs of 4 pulses.                       */
  12.   Word16 index,     /* (i)     : Positions of the 4 pulses.               */
  13.   Word16 cod[]      /* (o) Q13 : algebraic (fixed) codebook excitation    */
  14. )
  15. {
  16.   Word16 i, j;
  17.   Word16 pos[4];
  18.   /* Decode the positions */
  19.   i      = index & (Word16)7;
  20.   pos[0] = add(i, shl(i, 2));           /* pos0 =i*5 */
  21.   index  = shr(index, 3);
  22.   i      = index & (Word16)7;
  23.   i      = add(i, shl(i, 2));           /* pos1 =i*5+1 */
  24.   pos[1] = add(i, 1);
  25.   index  = shr(index, 3);
  26.   i      = index & (Word16)7;
  27.   i      = add(i, shl(i, 2));           /* pos2 =i*5+1 */
  28.   pos[2] = add(i, 2);
  29.   index  = shr(index, 3);
  30.   j      = index & (Word16)1;
  31.   index  = shr(index, 1);
  32.   i      = index & (Word16)7;
  33.   i      = add(i, shl(i, 2));           /* pos3 =i*5+3+j */
  34.   i      = add(i, 3);
  35.   pos[3] = add(i, j);
  36.   /* decode the signs  and build the codeword */
  37.   for (i=0; i<L_SUBFR; i++) {
  38.     cod[i] = 0;
  39.   }
  40.   for (j=0; j<4; j++)
  41.   {
  42.     i = sign & (Word16)1;
  43.     sign = shr(sign, 1);
  44.     if (i != 0) {
  45.       cod[pos[j]] = 8191;      /* Q13 +1.0 */
  46.     }
  47.     else {
  48.       cod[pos[j]] = -8192;     /* Q13 -1.0 */
  49.     }
  50.   }
  51.   return;
  52. }