Utilise new MergeSym feature to no longer overwrite the source .DEF file when buildin...
[openh323.git] / src / iLBC / doCPLC.h
blob04ac5a4c12b5cefd6f7624956800f04944c6e27e
2 /******************************************************************
4 iLBC Speech Coder ANSI-C Source Code
6 doCPLC.h
8 Copyright (c) 2001,
9 Global IP Sound AB.
10 All rights reserved.
12 ******************************************************************/
14 #ifndef __iLBC_DOLPC_H
15 #define __iLBC_DOLPC_H
20 void doThePLC(
21 float *PLCresidual, /* (o) concealed residual */
22 float *PLClpc, /* (o) concealed LP parameters */
23 int PLI, /* (i) packet loss indicator
24 0 - no PL, 1 = PL */
25 float *decresidual, /* (i) decoded residual */
26 float *lpc, /* (i) decoded LPC (only used for no PL) */
27 int inlag, /* (i) pitch lag */
28 iLBC_Dec_Inst_t *iLBCdec_inst
29 /* (i/o) decoder instance */
30 );
32 #endif