FreeCalypso > hg > gsm-codec-lib
view libgsmhr1/sp_rom.h @ 581:e2d5cad04cbf
libgsmhr1 RxFE: store CN R0+LPC separately from speech
In the original GSM 06.06 code the ECU for speech mode is entirely
separate from the CN generator, maintaining separate state. (The
main intertie between them is the speech vs CN state variable,
distinguishing between speech and CN BFIs, in addition to the
CN-specific function of distinguishing between initial and update
SIDs.)
In the present RxFE implementation I initially thought that we could
use the same saved_frame buffer for both ECU and CN, overwriting
just the first 4 params (R0 and LPC) when a valid SID comes in.
However, I now realize it was a bad idea: the original code has a
corner case (long sequence of speech-mode BFIs to put the ECU in
state 6, then SID and CN-mode BFIs, then a good speech frame) that
would be broken by that buffer reuse approach. We could eliminate
this corner case by resetting the ECU state when passing through
a CN insertion period, but doing so would needlessly increase
the behavioral diffs between GSM 06.06 and our version.
Solution: use a separate CN-specific buffer for CN R0+LPC parameters,
and match the behavior of GSM 06.06 code in this regard.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 13 Feb 2025 10:02:45 +0000 |
parents | 06578223a752 |
children |
line wrap: on
line source
/*************************************************************************** * * Purpose: Define the structure of the Global Constants * **************************************************************************/ #ifndef ___ROM #define ___ROM #include "typedefs.h" /*_________________________________________________________________________ | | | Data Types | |_________________________________________________________________________| */ /* gsp0 vector quantizer */ /*-----------------------*/ #define GSP0_NUM_OF_TABLES 4 #define GSP0_NUM 32 #define GSP0_VECTOR_SIZE 5 extern const ShortwordRom pppsrGsp0 [GSP0_NUM_OF_TABLES][GSP0_NUM][GSP0_VECTOR_SIZE]; /* unvoiced code vectors */ /*-----------------------*/ #define UVCODEVEC_NUM_OF_CODE_BOOKS 2 #define UVCODEVEC_NUM_OF_CODE_BITS 7 extern const ShortwordRom pppsrUvCodeVec [UVCODEVEC_NUM_OF_CODE_BOOKS][UVCODEVEC_NUM_OF_CODE_BITS][S_LEN]; /* voiced code vectors */ /*---------------------*/ #define VCDCODEVEC_NUM_OF_CODE_BOOKS 1 #define VCDCODEVEC_NUM_OF_CODE_BITS 9 extern const ShortwordRom pppsrVcdCodeVec [VCDCODEVEC_NUM_OF_CODE_BOOKS][VCDCODEVEC_NUM_OF_CODE_BITS][S_LEN]; /* vector quantizer tables */ /*-------------------------*/ #define QUANT_NUM_OF_TABLES 3 #define QUANT1_NUM_OF_BITS 11 #define QUANT1_NUM_OF_ROWS (1 << QUANT1_NUM_OF_BITS) #define QUANT1_NUM_OF_STAGES 3 #define QUANT1_NUM_OF_WORDS (QUANT1_NUM_OF_ROWS*QUANT1_NUM_OF_STAGES/2) #define QUANT2_NUM_OF_BITS 9 #define QUANT2_NUM_OF_ROWS (1 << QUANT2_NUM_OF_BITS) #define QUANT2_NUM_OF_STAGES 3 #define QUANT2_NUM_OF_WORDS (QUANT2_NUM_OF_ROWS*QUANT2_NUM_OF_STAGES/2) #define QUANT3_NUM_OF_BITS 8 #define QUANT3_NUM_OF_ROWS (1 << QUANT3_NUM_OF_BITS) #define QUANT3_NUM_OF_STAGES 4 #define QUANT3_NUM_OF_WORDS (QUANT3_NUM_OF_ROWS*QUANT3_NUM_OF_STAGES/2) extern const ShortwordRom psrQuant1[QUANT1_NUM_OF_WORDS]; extern const ShortwordRom psrQuant2[QUANT2_NUM_OF_WORDS]; extern const ShortwordRom psrQuant3[QUANT3_NUM_OF_WORDS]; /* lpc pre-quantizer */ /*-------------------*/ #define PREQ1_NUM_OF_BITS 6 #define PREQ1_NUM_OF_ROWS (1 << PREQ1_NUM_OF_BITS) #define PREQ1_NUM_OF_STAGES 3 #define PREQ1_NUM_OF_WORDS (PREQ1_NUM_OF_ROWS*PREQ1_NUM_OF_STAGES/2) #define PREQ2_NUM_OF_BITS 5 #define PREQ2_NUM_OF_ROWS (1 << PREQ2_NUM_OF_BITS) #define PREQ2_NUM_OF_STAGES 3 #define PREQ2_NUM_OF_WORDS (PREQ2_NUM_OF_ROWS*PREQ2_NUM_OF_STAGES/2) #define PREQ3_NUM_OF_BITS 4 #define PREQ3_NUM_OF_ROWS (1 << PREQ3_NUM_OF_BITS) #define PREQ3_NUM_OF_STAGES 4 #define PREQ3_NUM_OF_WORDS (PREQ3_NUM_OF_ROWS*PREQ3_NUM_OF_STAGES/2) extern const ShortwordRom psrPreQ1[PREQ1_NUM_OF_WORDS]; extern const ShortwordRom psrPreQ2[PREQ2_NUM_OF_WORDS]; extern const ShortwordRom psrPreQ3[PREQ3_NUM_OF_WORDS]; /* size of the vq subset in the kth segment */ /*------------------------------------------*/ extern const ShortwordRom psrQuantSz[QUANT_NUM_OF_TABLES]; /* pre-quantizer size */ /*--------------------*/ extern const ShortwordRom psrPreQSz[QUANT_NUM_OF_TABLES]; /* reflection coeff scalar quantizer */ /*-----------------------------------*/ #define SQUANT_NUM_OF_BITS 8 #define SQUANT_NUM_OF_ROWS (1 << SQUANT_NUM_OF_BITS) extern const ShortwordRom psrSQuant[SQUANT_NUM_OF_ROWS]; /* index structure for LPC Vector Quantizer */ /*------------------------------------------*/ struct IsubLHn { /* index structure for LPC Vector * Quantizer */ ShortwordRom l; /* lowest index index range * from 1..NP */ ShortwordRom h; /* highest index */ ShortwordRom len; /* h-l+1 */ }; extern const struct IsubLHn psvqIndex[QUANT_NUM_OF_TABLES]; /* square root of p0 table */ /*-------------------------*/ #define SQRTP0_NUM_OF_BITS 5 #define SQRTP0_NUM_OF_ROWS (1 << SQRTP0_NUM_OF_BITS) #define SQRTP0_NUM_OF_MODES 3 extern const ShortwordRom ppsrSqrtP0[SQRTP0_NUM_OF_MODES][SQRTP0_NUM_OF_ROWS]; /* interpolation filter used for C and G */ /*---------------------------------------*/ #define CGINTFILT_MACS 6 extern const ShortwordRom ppsrCGIntFilt[CGINTFILT_MACS][OS_FCTR]; /* interpolation filter used pitch */ /*---------------------------------*/ #define PVECINTFILT_MACS 10 extern const ShortwordRom ppsrPVecIntFilt[PVECINTFILT_MACS][OS_FCTR]; /* fractional pitch lag table lag*OS_FCTR */ /*----------------------------------------*/ #define LAGTBL_NUM_OF_ROWS 256 extern const ShortwordRom psrLagTbl[LAGTBL_NUM_OF_ROWS]; /* R0 decision value table defines range (not the levels themselves */ /*------------------------------------------------------------------*/ #define R0DECTBL_NUM_OF_R0BITS 5 #define R0DECTBL_NUM_OF_ROWS ((1 << R0DECTBL_NUM_OF_R0BITS)*2 - 1) extern const ShortwordRom psrR0DecTbl[R0DECTBL_NUM_OF_ROWS]; /* high pass filter coefficients */ /*-------------------------------*/ #define HPFCOEFS_NUM_OF_CODES 10 extern const ShortwordRom psrHPFCoefs[HPFCOEFS_NUM_OF_CODES]; /* spectral smoothing coefficients */ /*---------------------------------*/ #define NWCOEFS_NUM_OF_CODES 20 extern const ShortwordRom psrNWCoefs[NWCOEFS_NUM_OF_CODES]; /* spectral smoothing coefficients for FLAT */ /*------------------------------------------*/ #define FLATSSTCOEFS_NUM_OF_CODES 10 extern const LongwordRom pL_rFlatSstCoefs[FLATSSTCOEFS_NUM_OF_CODES]; extern const ShortwordRom psrOldCont[4]; extern const ShortwordRom psrNewCont[4]; #endif