getCBvec.h 603 B

123456789101112131415161718192021222324
  1. /******************************************************************
  2. iLBC Speech Coder ANSI-C Source Code
  3. getCBvec.h
  4. Copyright (C) The Internet Society (2004).
  5. All Rights Reserved.
  6. ******************************************************************/
  7. #ifndef __iLBC_GETCBVEC_H
  8. #define __iLBC_GETCBVEC_H
  9. void getCBvec(
  10. float *cbvec, /* (o) Constructed codebook vector */
  11. float *mem, /* (i) Codebook buffer */
  12. int index, /* (i) Codebook index */
  13. int lMem, /* (i) Length of codebook buffer */
  14. int cbveclen/* (i) Codebook vector length */
  15. );
  16. #endif