FreeCalypso > hg > gsm-codec-lib
view libgsmefr/syn_filt.c @ 585:3c6bf0d26ee7 default tip
TW-TS-005 reader: fix maximum line length bug
TW-TS-005 section 4.1 states:
The maximum allowed length of each line is 80 characters, not
including the OS-specific newline encoding.
The implementation of this line length limit in the TW-TS-005 hex file
reader function in the present suite was wrong, such that lines of
the full maximum length could not be read. Fix it.
Note that this bug affects comment lines too, not just actual RTP
payloads. Neither Annex A nor Annex B features an RTP payload format
that goes to the maximum of 40 bytes, but if a comment line goes to
the maximum allowed length of 80 characters not including the
terminating newline, the bug will be triggered, necessitating
the present fix.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 25 Feb 2025 07:49:28 +0000 |
parents | bb71c5414e71 |
children |
line wrap: on
line source
/************************************************************************* * * FUNCTION: Syn_filt: * * PURPOSE: Perform synthesis filtering through 1/A(z). * *************************************************************************/ #include "gsm_efr.h" #include "typedef.h" #include "namespace.h" #include "basic_op.h" #include "no_count.h" #include "sig_proc.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; }