# HG changeset patch # User Mychaela Falconia # Date 1739416115 0 # Node ID 7756b23b78cddab05778bdacc006b95e859172ef # Parent d68b2c92464a4712880ee9c215f682b1a38de32a libgsmhr1 avgGsHistQntz: make the history table argument const diff -r d68b2c92464a -r 7756b23b78cd libgsmhr1/dtx_rxfe.c --- a/libgsmhr1/dtx_rxfe.c Thu Feb 13 03:06:11 2025 +0000 +++ b/libgsmhr1/dtx_rxfe.c Thu Feb 13 03:08:35 2025 +0000 @@ -95,7 +95,7 @@ * *************************************************************************/ -void avgGsHistQntz(Longword pL_GsHistory[], Longword *pL_GsAvgd) +void avgGsHistQntz(const Longword pL_GsHistory[], Longword *pL_GsAvgd) { /*_________________________________________________________________________ diff -r d68b2c92464a -r 7756b23b78cd libgsmhr1/dtx_rxfe.h --- a/libgsmhr1/dtx_rxfe.h Thu Feb 13 03:06:11 2025 +0000 +++ b/libgsmhr1/dtx_rxfe.h Thu Feb 13 03:08:35 2025 +0000 @@ -11,7 +11,7 @@ extern const LongwordRom ppLr_gsTable[4][32]; -void avgGsHistQntz(Longword pL_GsHistory[], Longword *pL_GsAvgd); +void avgGsHistQntz(const Longword pL_GsHistory[], Longword *pL_GsAvgd); Shortword gsQuant(Longword L_GsIn, Shortword swVoicingMode); Shortword getPnBits(int iBits, Longword *L_PnSeed);