?? confg.c
字號:
/**************************************************************************
*
* ROUTINE
* confg
*
* FUNCTION
* computes initial states (direct form filters)
* for adaptive codebook search
*
**************************************************************************/
#include "ccsub.h"
extern int no;
extern float e0[MAXLP], fc[MAXNO+1], gamma2;
extern float fc_3[MAXNO+1];
confg(s,l,d2,d3,d4)
int l;
float s[], d2[],d3[],d4[];
{
float fctemp[MAXNO+1];
int i;
setr(MAXNO+1, 0.0, fctemp);
polefilt(fc, no, d2, e0, l);
for (i = 0; i < l; i++)
e0[i] = s[i] - e0[i];
zerofilt(fc,no,d3,e0,l);
bwexp(gamma2, fc, fctemp, no);
polefilt(fctemp, no, d4, e0, l);
/* bwexp(gamma2, fc_3, fctemp, no);
polefilt_3rd(fctemp, 3, d4, e0, l);
*/
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -