mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 00:00:09 +00:00
Fix some symbol and Makefile issues
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@886 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -41,13 +41,13 @@ void SimpleAnalysis(
|
||||
is = LPC_LOOKBACK;
|
||||
|
||||
if (k < (LPC_N - 1)) {
|
||||
window(temp, lpc_winTbl, lpc_buffer, BLOCKL);
|
||||
lbc_window(temp, lpc_winTbl, lpc_buffer, BLOCKL);
|
||||
} else {
|
||||
window(temp, lpc_asymwinTbl, lpc_buffer + is, BLOCKL);
|
||||
lbc_window(temp, lpc_asymwinTbl, lpc_buffer + is, BLOCKL);
|
||||
}
|
||||
|
||||
autocorr(r, temp, BLOCKL, LPC_FILTERORDER);
|
||||
window(r, r, lpc_lagwinTbl, LPC_FILTERORDER + 1);
|
||||
lbc_window(r, r, lpc_lagwinTbl, LPC_FILTERORDER + 1);
|
||||
|
||||
levdurb(lp, temp, r, LPC_FILTERORDER);
|
||||
bwexpand(lp2, lp, LPC_CHIRP_SYNTDENUM, LPC_FILTERORDER+1);
|
||||
|
||||
@@ -42,7 +42,7 @@ void autocorr(
|
||||
* window multiplication
|
||||
*---------------------------------------------------------------*/
|
||||
|
||||
void window(
|
||||
void lbc_window(
|
||||
float *z, /* (o) the windowed data */
|
||||
const float *x, /* (i) the original data vector */
|
||||
const float *y, /* (i) the window */
|
||||
|
||||
@@ -21,7 +21,7 @@ void autocorr(
|
||||
int order /* largest lag for calculated autocorrelations */
|
||||
);
|
||||
|
||||
void window(
|
||||
void lbc_window(
|
||||
float *z, /* (o) the windowed data */
|
||||
const float *x, /* (i) the original data vector */
|
||||
const float *y, /* (i) the window */
|
||||
|
||||
Reference in New Issue
Block a user