?? confg_ad.c
字號(hào):
/**************************************************************************
*
* ROUTINE
* confg_ad
*
* FUNCTION
* computes initial states (direct form filters)
* for stochastic codebook search
*
**************************************************************************/
#include "ccsub.h"
extern int idb, no;
extern float bb[MAXNP+1], e0[MAXLP], fc[MAXNO+1], gamma2;
extern float fc_3[MAXNO+1];
confg_ad(s,l,d1,d2,d3,d4)
int l;
float s[], d1[], d2[],d3[],d4[];
{
float fctemp[MAXNO+1];
int i;
setr(MAXNO+1, 0.0, fctemp);
pitchvq_ad(e0, l, d1, idb, bb);
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_3, fctemp, no);
polefilt_3rd(fctemp, 3, d4, e0, l);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -