| Index: silk/float/wrappers_FLP.c
 | 
| diff --git a/silk/float/wrappers_FLP.c b/silk/float/wrappers_FLP.c
 | 
| index 0d33d9e5e272e8cc8e5786e9e3261630eef6e45f..350599b20c53239cc45a3d788766a73d94c161f5 100644
 | 
| --- a/silk/float/wrappers_FLP.c
 | 
| +++ b/silk/float/wrappers_FLP.c
 | 
| @@ -175,6 +175,7 @@ void silk_quant_LTP_gains_FLP(
 | 
|      silk_float                      B[ MAX_NB_SUBFR * LTP_ORDER ],      /* I/O  (Un-)quantized LTP gains                    */
 | 
|      opus_int8                       cbk_index[ MAX_NB_SUBFR ],          /* O    Codebook index                              */
 | 
|      opus_int8                       *periodicity_index,                 /* O    Periodicity index                           */
 | 
| +    opus_int32                      *sum_log_gain_Q7,                   /* I/O  Cumulative max prediction gain  */
 | 
|      const silk_float                W[ MAX_NB_SUBFR * LTP_ORDER * LTP_ORDER ], /* I    Error weights                        */
 | 
|      const opus_int                  mu_Q10,                             /* I    Mu value (R/D tradeoff)                     */
 | 
|      const opus_int                  lowComplexity,                      /* I    Flag for low complexity                     */
 | 
| @@ -192,7 +193,7 @@ void silk_quant_LTP_gains_FLP(
 | 
|          W_Q18[ i ] = (opus_int32)silk_float2int( W[ i ] * 262144.0f );
 | 
|      }
 | 
|  
 | 
| -    silk_quant_LTP_gains( B_Q14, cbk_index, periodicity_index, W_Q18, mu_Q10, lowComplexity, nb_subfr );
 | 
| +    silk_quant_LTP_gains( B_Q14, cbk_index, periodicity_index, sum_log_gain_Q7, W_Q18, mu_Q10, lowComplexity, nb_subfr );
 | 
|  
 | 
|      for( i = 0; i < nb_subfr * LTP_ORDER; i++ ) {
 | 
|          B[ i ] = (silk_float)B_Q14[ i ] * ( 1.0f / 16384.0f );
 | 
| 
 |