getCBvec.h 650 B

12345678910111213141516171819202122232425262728
  1. /******************************************************************
  2. iLBC Speech Coder ANSI-C Source Code
  3. getCBvec.h
  4. Copyright (c) 2001,
  5. Global IP Sound AB.
  6. All rights reserved.
  7. ******************************************************************/
  8. #ifndef __iLBC_GETCBVEC_H
  9. #define __iLBC_GETCBVEC_H
  10. void getCBvec(
  11. float *cbvec, /* (o) Constructed codebook vector */
  12. float *mem, /* (i) Codebook buffer */
  13. int index, /* (i) Codebook index */
  14. int lMem, /* (i) Length of codebook buffer */
  15. int cbveclen/* (i) Codebook vector length */
  16. );
  17. #endif