FreeCalypso > hg > gsm-codec-lib
view libgsmefr/syn_filt.c @ 85:db8e0b69a6bb
libgsmefr: pred_lt6.c compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 26 Nov 2022 08:59:34 +0000 |
parents | 49dd1ac8e75b |
children | bb71c5414e71 |
line wrap: on
line source
/************************************************************************* * * FUNCTION: Syn_filt: * * PURPOSE: Perform synthesis filtering through 1/A(z). * *************************************************************************/ #include "typedef.h" #include "basic_op.h" #include "count.h" /* m = LPC order == 10 */ #define m 10 void Syn_filt ( Word16 a[], /* (i) : a[m+1] prediction coefficients (m=10) */ Word16 x[], /* (i) : input signal */ Word16 y[], /* (o) : output signal */ Word16 lg, /* (i) : size of filtering */ Word16 mem[], /* (i/o) : memory associated with this filtering. */ Word16 update /* (i) : 0=no update, 1=update of memory. */ ) { Word16 i, j; Word32 s; Word16 tmp[80]; /* This is usually done by memory allocation (lg+m) */ Word16 *yy; /* Copy mem[] to yy[] */ yy = tmp; move16 (); for (i = 0; i < m; i++) { *yy++ = mem[i]; move16 (); } /* Do the filtering. */ for (i = 0; i < lg; i++) { s = L_mult (x[i], a[0]); for (j = 1; j <= m; j++) { s = L_msu (s, a[j], yy[-j]); } s = L_shl (s, 3); *yy++ = round (s); move16 (); } for (i = 0; i < lg; i++) { y[i] = tmp[i + m]; move16 (); } /* Update of memory if update==1 */ test (); if (update != 0) { for (i = 0; i < m; i++) { mem[i] = y[lg - m + i]; move16 (); } } return; }