Make file access in cdr_custom similar to cdr_csv.
[asterisk-bristuff.git] / codecs / ilbc / doCPLC.h
bloba619f0def48ea1589ebded27f2572fd201e1ff1b
2 /******************************************************************
4 iLBC Speech Coder ANSI-C Source Code
6 doCPLC.h
8 Copyright (C) The Internet Society (2004).
9 All Rights Reserved.
13 ******************************************************************/
15 #ifndef __iLBC_DOLPC_H
16 #define __iLBC_DOLPC_H
18 void doThePLC(
19 float *PLCresidual, /* (o) concealed residual */
20 float *PLClpc, /* (o) concealed LP parameters */
21 int PLI, /* (i) packet loss indicator
22 0 - no PL, 1 = PL */
23 float *decresidual, /* (i) decoded residual */
24 float *lpc, /* (i) decoded LPC (only used for no PL) */
25 int inlag, /* (i) pitch lag */
26 iLBC_Dec_Inst_t *iLBCdec_inst
27 /* (i/o) decoder instance */
30 #endif