doCPLC.h 864 B

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