doCPLC.h 843 B

1234567891011121314151617181920212223242526272829303132
  1. /******************************************************************
  2. iLBC Speech Coder ANSI-C Source Code
  3. doCPLC.h
  4. Copyright (c) 2001,
  5. Global IP Sound AB.
  6. All rights reserved.
  7. ******************************************************************/
  8. #ifndef __iLBC_DOLPC_H
  9. #define __iLBC_DOLPC_H
  10. void doThePLC(
  11. float *PLCresidual, /* (o) concealed residual */
  12. float *PLClpc, /* (o) concealed LP parameters */
  13. int PLI, /* (i) packet loss indicator
  14. 0 - no PL, 1 = PL */
  15. float *decresidual, /* (i) decoded residual */
  16. float *lpc, /* (i) decoded LPC (only used for no PL) */
  17. int inlag, /* (i) pitch lag */
  18. iLBC_Dec_Inst_t *iLBCdec_inst
  19. /* (i/o) decoder instance */
  20. );
  21. #endif