FreeCalypso > hg > gsm-codec-lib
view libgsmefr/d1035pf.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 | 6ad363f7ea30 |
children |
line wrap: on
line source
/************************************************************************* * * FUNCTION: dec_10i40_35bits() * * PURPOSE: Builds the innovative codevector from the received * index of algebraic codebook. * * See c1035pf.c for more details about the algebraic codebook structure. * *************************************************************************/ #include "gsm_efr.h" #include "typedef.h" #include "namespace.h" #include "basic_op.h" #include "memops.h" #include "no_count.h" #include "codec.h" #define L_CODE 40 /* codevector length */ #define NB_PULSE 10 /* number of pulses */ #define NB_TRACK 5 /* number of track */ void dec_10i40_35bits ( const Word16 index[], /* (i) : index of 10 pulses (sign+position) */ Word16 cod[] /* (o) : algebraic (fixed) codebook excitation */ ) { static const Word16 dgray[8] = {0, 1, 3, 2, 5, 6, 4, 7}; Word16 i, j, pos1, pos2, sign, tmp; Set_zero (cod, L_CODE); /* decode the positions and signs of pulses and build the codeword */ for (j = 0; j < NB_TRACK; j++) { /* compute index i */ tmp = index[j]; move16 (); i = tmp & 7; logic16 (); i = dgray[i]; move16 (); i *= 5; pos1 = i + j; /* position of pulse "j" */ i = shr (tmp, 3) & 1; logic16 (); if (i == 0) { sign = 4096; move16 (); /* +1.0 */ } else { sign = -4096; move16 (); /* -1.0 */ } cod[pos1] = sign; move16 (); /* compute index i */ i = index[add (j, 5)] & 7; logic16 (); i = dgray[i]; move16 (); i *= 5; pos2 = i + j; /* position of pulse "j+5" */ if (pos2 < pos1) { sign = negate (sign); } cod[pos2] = add (cod[pos2], sign); move16 (); } return; }