StateConstructW.h 790 B

123456789101112131415161718192021222324252627282930
  1. /******************************************************************
  2. iLBC Speech Coder ANSI-C Source Code
  3. StateConstructW.h
  4. Copyright (C) The Internet Society (2004).
  5. All Rights Reserved.
  6. ******************************************************************/
  7. #ifndef __iLBC_STATECONSTRUCTW_H
  8. #define __iLBC_STATECONSTRUCTW_H
  9. void StateConstructW(
  10. int idxForMax, /* (i) 6-bit index for the quantization of
  11. max amplitude */
  12. int *idxVec, /* (i) vector of quantization indexes */
  13. float *syntDenum, /* (i) synthesis filter denumerator */
  14. float *out, /* (o) the decoded state vector */
  15. int len /* (i) length of a state vector */
  16. );
  17. #endif