Utilise new MergeSym feature to no longer overwrite the source .DEF file when buildin...
[openh323.git] / src / iLBC / enhancer.h
blob91cb7998d1cee4744e0d25c3383461ce9bff15f0
2 /******************************************************************
4 iLBC Speech Coder ANSI-C Source Code
6 enhancer.h
8 \f
11 Copyright (c) 2001,
12 Global IP Sound AB.
13 All rights reserved.
15 ******************************************************************/
17 #ifndef __ENHANCER_H
18 #define __ENHANCER_H
20 #include "iLBC_define.h"
22 float xCorrCoef(
23 float *target, /* (i) first array */
24 float *regressor, /* (i) second array */
25 int subl /* (i) dimension arrays */
26 );
28 int enhancerInterface(
29 float *out, /* (o) the enhanced recidual signal */
30 float *in, /* (i) the recidual signal to enhance */
31 iLBC_Dec_Inst_t *iLBCdec_inst
32 /* (i/o) the decoder state structure */
33 );
35 #endif