michael@0: /*********************************************************************** michael@0: Copyright (c) 2006-2011, Skype Limited. All rights reserved. michael@0: Redistribution and use in source and binary forms, with or without michael@0: modification, are permitted provided that the following conditions michael@0: are met: michael@0: - Redistributions of source code must retain the above copyright notice, michael@0: this list of conditions and the following disclaimer. michael@0: - Redistributions in binary form must reproduce the above copyright michael@0: notice, this list of conditions and the following disclaimer in the michael@0: documentation and/or other materials provided with the distribution. michael@0: - Neither the name of Internet Society, IETF or IETF Trust, nor the michael@0: names of specific contributors, may be used to endorse or promote michael@0: products derived from this software without specific prior written michael@0: permission. michael@0: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" michael@0: AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE michael@0: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE michael@0: ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE michael@0: LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR michael@0: CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF michael@0: SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS michael@0: INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN michael@0: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) michael@0: ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE michael@0: POSSIBILITY OF SUCH DAMAGE. michael@0: ***********************************************************************/ michael@0: michael@0: #ifdef HAVE_CONFIG_H michael@0: #include "config.h" michael@0: #endif michael@0: michael@0: #include "main.h" michael@0: #include "stack_alloc.h" michael@0: #include "PLC.h" michael@0: michael@0: #define NB_ATT 2 michael@0: static const opus_int16 HARM_ATT_Q15[NB_ATT] = { 32440, 31130 }; /* 0.99, 0.95 */ michael@0: static const opus_int16 PLC_RAND_ATTENUATE_V_Q15[NB_ATT] = { 31130, 26214 }; /* 0.95, 0.8 */ michael@0: static const opus_int16 PLC_RAND_ATTENUATE_UV_Q15[NB_ATT] = { 32440, 29491 }; /* 0.99, 0.9 */ michael@0: michael@0: static OPUS_INLINE void silk_PLC_update( michael@0: silk_decoder_state *psDec, /* I/O Decoder state */ michael@0: silk_decoder_control *psDecCtrl /* I/O Decoder control */ michael@0: ); michael@0: michael@0: static OPUS_INLINE void silk_PLC_conceal( michael@0: silk_decoder_state *psDec, /* I/O Decoder state */ michael@0: silk_decoder_control *psDecCtrl, /* I/O Decoder control */ michael@0: opus_int16 frame[] /* O LPC residual signal */ michael@0: ); michael@0: michael@0: michael@0: void silk_PLC_Reset( michael@0: silk_decoder_state *psDec /* I/O Decoder state */ michael@0: ) michael@0: { michael@0: psDec->sPLC.pitchL_Q8 = silk_LSHIFT( psDec->frame_length, 8 - 1 ); michael@0: psDec->sPLC.prevGain_Q16[ 0 ] = SILK_FIX_CONST( 1, 16 ); michael@0: psDec->sPLC.prevGain_Q16[ 1 ] = SILK_FIX_CONST( 1, 16 ); michael@0: psDec->sPLC.subfr_length = 20; michael@0: psDec->sPLC.nb_subfr = 2; michael@0: } michael@0: michael@0: void silk_PLC( michael@0: silk_decoder_state *psDec, /* I/O Decoder state */ michael@0: silk_decoder_control *psDecCtrl, /* I/O Decoder control */ michael@0: opus_int16 frame[], /* I/O signal */ michael@0: opus_int lost /* I Loss flag */ michael@0: ) michael@0: { michael@0: /* PLC control function */ michael@0: if( psDec->fs_kHz != psDec->sPLC.fs_kHz ) { michael@0: silk_PLC_Reset( psDec ); michael@0: psDec->sPLC.fs_kHz = psDec->fs_kHz; michael@0: } michael@0: michael@0: if( lost ) { michael@0: /****************************/ michael@0: /* Generate Signal */ michael@0: /****************************/ michael@0: silk_PLC_conceal( psDec, psDecCtrl, frame ); michael@0: michael@0: psDec->lossCnt++; michael@0: } else { michael@0: /****************************/ michael@0: /* Update state */ michael@0: /****************************/ michael@0: silk_PLC_update( psDec, psDecCtrl ); michael@0: } michael@0: } michael@0: michael@0: /**************************************************/ michael@0: /* Update state of PLC */ michael@0: /**************************************************/ michael@0: static OPUS_INLINE void silk_PLC_update( michael@0: silk_decoder_state *psDec, /* I/O Decoder state */ michael@0: silk_decoder_control *psDecCtrl /* I/O Decoder control */ michael@0: ) michael@0: { michael@0: opus_int32 LTP_Gain_Q14, temp_LTP_Gain_Q14; michael@0: opus_int i, j; michael@0: silk_PLC_struct *psPLC; michael@0: michael@0: psPLC = &psDec->sPLC; michael@0: michael@0: /* Update parameters used in case of packet loss */ michael@0: psDec->prevSignalType = psDec->indices.signalType; michael@0: LTP_Gain_Q14 = 0; michael@0: if( psDec->indices.signalType == TYPE_VOICED ) { michael@0: /* Find the parameters for the last subframe which contains a pitch pulse */ michael@0: for( j = 0; j * psDec->subfr_length < psDecCtrl->pitchL[ psDec->nb_subfr - 1 ]; j++ ) { michael@0: if( j == psDec->nb_subfr ) { michael@0: break; michael@0: } michael@0: temp_LTP_Gain_Q14 = 0; michael@0: for( i = 0; i < LTP_ORDER; i++ ) { michael@0: temp_LTP_Gain_Q14 += psDecCtrl->LTPCoef_Q14[ ( psDec->nb_subfr - 1 - j ) * LTP_ORDER + i ]; michael@0: } michael@0: if( temp_LTP_Gain_Q14 > LTP_Gain_Q14 ) { michael@0: LTP_Gain_Q14 = temp_LTP_Gain_Q14; michael@0: silk_memcpy( psPLC->LTPCoef_Q14, michael@0: &psDecCtrl->LTPCoef_Q14[ silk_SMULBB( psDec->nb_subfr - 1 - j, LTP_ORDER ) ], michael@0: LTP_ORDER * sizeof( opus_int16 ) ); michael@0: michael@0: psPLC->pitchL_Q8 = silk_LSHIFT( psDecCtrl->pitchL[ psDec->nb_subfr - 1 - j ], 8 ); michael@0: } michael@0: } michael@0: michael@0: silk_memset( psPLC->LTPCoef_Q14, 0, LTP_ORDER * sizeof( opus_int16 ) ); michael@0: psPLC->LTPCoef_Q14[ LTP_ORDER / 2 ] = LTP_Gain_Q14; michael@0: michael@0: /* Limit LT coefs */ michael@0: if( LTP_Gain_Q14 < V_PITCH_GAIN_START_MIN_Q14 ) { michael@0: opus_int scale_Q10; michael@0: opus_int32 tmp; michael@0: michael@0: tmp = silk_LSHIFT( V_PITCH_GAIN_START_MIN_Q14, 10 ); michael@0: scale_Q10 = silk_DIV32( tmp, silk_max( LTP_Gain_Q14, 1 ) ); michael@0: for( i = 0; i < LTP_ORDER; i++ ) { michael@0: psPLC->LTPCoef_Q14[ i ] = silk_RSHIFT( silk_SMULBB( psPLC->LTPCoef_Q14[ i ], scale_Q10 ), 10 ); michael@0: } michael@0: } else if( LTP_Gain_Q14 > V_PITCH_GAIN_START_MAX_Q14 ) { michael@0: opus_int scale_Q14; michael@0: opus_int32 tmp; michael@0: michael@0: tmp = silk_LSHIFT( V_PITCH_GAIN_START_MAX_Q14, 14 ); michael@0: scale_Q14 = silk_DIV32( tmp, silk_max( LTP_Gain_Q14, 1 ) ); michael@0: for( i = 0; i < LTP_ORDER; i++ ) { michael@0: psPLC->LTPCoef_Q14[ i ] = silk_RSHIFT( silk_SMULBB( psPLC->LTPCoef_Q14[ i ], scale_Q14 ), 14 ); michael@0: } michael@0: } michael@0: } else { michael@0: psPLC->pitchL_Q8 = silk_LSHIFT( silk_SMULBB( psDec->fs_kHz, 18 ), 8 ); michael@0: silk_memset( psPLC->LTPCoef_Q14, 0, LTP_ORDER * sizeof( opus_int16 )); michael@0: } michael@0: michael@0: /* Save LPC coeficients */ michael@0: silk_memcpy( psPLC->prevLPC_Q12, psDecCtrl->PredCoef_Q12[ 1 ], psDec->LPC_order * sizeof( opus_int16 ) ); michael@0: psPLC->prevLTP_scale_Q14 = psDecCtrl->LTP_scale_Q14; michael@0: michael@0: /* Save last two gains */ michael@0: silk_memcpy( psPLC->prevGain_Q16, &psDecCtrl->Gains_Q16[ psDec->nb_subfr - 2 ], 2 * sizeof( opus_int32 ) ); michael@0: michael@0: psPLC->subfr_length = psDec->subfr_length; michael@0: psPLC->nb_subfr = psDec->nb_subfr; michael@0: } michael@0: michael@0: static OPUS_INLINE void silk_PLC_conceal( michael@0: silk_decoder_state *psDec, /* I/O Decoder state */ michael@0: silk_decoder_control *psDecCtrl, /* I/O Decoder control */ michael@0: opus_int16 frame[] /* O LPC residual signal */ michael@0: ) michael@0: { michael@0: opus_int i, j, k; michael@0: opus_int lag, idx, sLTP_buf_idx, shift1, shift2; michael@0: opus_int32 rand_seed, harm_Gain_Q15, rand_Gain_Q15, inv_gain_Q30; michael@0: opus_int32 energy1, energy2, *rand_ptr, *pred_lag_ptr; michael@0: opus_int32 LPC_pred_Q10, LTP_pred_Q12; michael@0: opus_int16 rand_scale_Q14; michael@0: opus_int16 *B_Q14, *exc_buf_ptr; michael@0: opus_int32 *sLPC_Q14_ptr; michael@0: VARDECL( opus_int16, exc_buf ); michael@0: opus_int16 A_Q12[ MAX_LPC_ORDER ]; michael@0: VARDECL( opus_int16, sLTP ); michael@0: VARDECL( opus_int32, sLTP_Q14 ); michael@0: silk_PLC_struct *psPLC = &psDec->sPLC; michael@0: opus_int32 prevGain_Q10[2]; michael@0: SAVE_STACK; michael@0: michael@0: ALLOC( exc_buf, 2*psPLC->subfr_length, opus_int16 ); michael@0: ALLOC( sLTP, psDec->ltp_mem_length, opus_int16 ); michael@0: ALLOC( sLTP_Q14, psDec->ltp_mem_length + psDec->frame_length, opus_int32 ); michael@0: michael@0: prevGain_Q10[0] = silk_RSHIFT( psPLC->prevGain_Q16[ 0 ], 6); michael@0: prevGain_Q10[1] = silk_RSHIFT( psPLC->prevGain_Q16[ 1 ], 6); michael@0: michael@0: if( psDec->first_frame_after_reset ) { michael@0: silk_memset( psPLC->prevLPC_Q12, 0, sizeof( psPLC->prevLPC_Q12 ) ); michael@0: } michael@0: michael@0: /* Find random noise component */ michael@0: /* Scale previous excitation signal */ michael@0: exc_buf_ptr = exc_buf; michael@0: for( k = 0; k < 2; k++ ) { michael@0: for( i = 0; i < psPLC->subfr_length; i++ ) { michael@0: exc_buf_ptr[ i ] = (opus_int16)silk_SAT16( silk_RSHIFT( michael@0: silk_SMULWW( psDec->exc_Q14[ i + ( k + psPLC->nb_subfr - 2 ) * psPLC->subfr_length ], prevGain_Q10[ k ] ), 8 ) ); michael@0: } michael@0: exc_buf_ptr += psPLC->subfr_length; michael@0: } michael@0: /* Find the subframe with lowest energy of the last two and use that as random noise generator */ michael@0: silk_sum_sqr_shift( &energy1, &shift1, exc_buf, psPLC->subfr_length ); michael@0: silk_sum_sqr_shift( &energy2, &shift2, &exc_buf[ psPLC->subfr_length ], psPLC->subfr_length ); michael@0: michael@0: if( silk_RSHIFT( energy1, shift2 ) < silk_RSHIFT( energy2, shift1 ) ) { michael@0: /* First sub-frame has lowest energy */ michael@0: rand_ptr = &psDec->exc_Q14[ silk_max_int( 0, ( psPLC->nb_subfr - 1 ) * psPLC->subfr_length - RAND_BUF_SIZE ) ]; michael@0: } else { michael@0: /* Second sub-frame has lowest energy */ michael@0: rand_ptr = &psDec->exc_Q14[ silk_max_int( 0, psPLC->nb_subfr * psPLC->subfr_length - RAND_BUF_SIZE ) ]; michael@0: } michael@0: michael@0: /* Set up Gain to random noise component */ michael@0: B_Q14 = psPLC->LTPCoef_Q14; michael@0: rand_scale_Q14 = psPLC->randScale_Q14; michael@0: michael@0: /* Set up attenuation gains */ michael@0: harm_Gain_Q15 = HARM_ATT_Q15[ silk_min_int( NB_ATT - 1, psDec->lossCnt ) ]; michael@0: if( psDec->prevSignalType == TYPE_VOICED ) { michael@0: rand_Gain_Q15 = PLC_RAND_ATTENUATE_V_Q15[ silk_min_int( NB_ATT - 1, psDec->lossCnt ) ]; michael@0: } else { michael@0: rand_Gain_Q15 = PLC_RAND_ATTENUATE_UV_Q15[ silk_min_int( NB_ATT - 1, psDec->lossCnt ) ]; michael@0: } michael@0: michael@0: /* LPC concealment. Apply BWE to previous LPC */ michael@0: silk_bwexpander( psPLC->prevLPC_Q12, psDec->LPC_order, SILK_FIX_CONST( BWE_COEF, 16 ) ); michael@0: michael@0: /* Preload LPC coeficients to array on stack. Gives small performance gain */ michael@0: silk_memcpy( A_Q12, psPLC->prevLPC_Q12, psDec->LPC_order * sizeof( opus_int16 ) ); michael@0: michael@0: /* First Lost frame */ michael@0: if( psDec->lossCnt == 0 ) { michael@0: rand_scale_Q14 = 1 << 14; michael@0: michael@0: /* Reduce random noise Gain for voiced frames */ michael@0: if( psDec->prevSignalType == TYPE_VOICED ) { michael@0: for( i = 0; i < LTP_ORDER; i++ ) { michael@0: rand_scale_Q14 -= B_Q14[ i ]; michael@0: } michael@0: rand_scale_Q14 = silk_max_16( 3277, rand_scale_Q14 ); /* 0.2 */ michael@0: rand_scale_Q14 = (opus_int16)silk_RSHIFT( silk_SMULBB( rand_scale_Q14, psPLC->prevLTP_scale_Q14 ), 14 ); michael@0: } else { michael@0: /* Reduce random noise for unvoiced frames with high LPC gain */ michael@0: opus_int32 invGain_Q30, down_scale_Q30; michael@0: michael@0: invGain_Q30 = silk_LPC_inverse_pred_gain( psPLC->prevLPC_Q12, psDec->LPC_order ); michael@0: michael@0: down_scale_Q30 = silk_min_32( silk_RSHIFT( (opus_int32)1 << 30, LOG2_INV_LPC_GAIN_HIGH_THRES ), invGain_Q30 ); michael@0: down_scale_Q30 = silk_max_32( silk_RSHIFT( (opus_int32)1 << 30, LOG2_INV_LPC_GAIN_LOW_THRES ), down_scale_Q30 ); michael@0: down_scale_Q30 = silk_LSHIFT( down_scale_Q30, LOG2_INV_LPC_GAIN_HIGH_THRES ); michael@0: michael@0: rand_Gain_Q15 = silk_RSHIFT( silk_SMULWB( down_scale_Q30, rand_Gain_Q15 ), 14 ); michael@0: } michael@0: } michael@0: michael@0: rand_seed = psPLC->rand_seed; michael@0: lag = silk_RSHIFT_ROUND( psPLC->pitchL_Q8, 8 ); michael@0: sLTP_buf_idx = psDec->ltp_mem_length; michael@0: michael@0: /* Rewhiten LTP state */ michael@0: idx = psDec->ltp_mem_length - lag - psDec->LPC_order - LTP_ORDER / 2; michael@0: silk_assert( idx > 0 ); michael@0: silk_LPC_analysis_filter( &sLTP[ idx ], &psDec->outBuf[ idx ], A_Q12, psDec->ltp_mem_length - idx, psDec->LPC_order ); michael@0: /* Scale LTP state */ michael@0: inv_gain_Q30 = silk_INVERSE32_varQ( psPLC->prevGain_Q16[ 1 ], 46 ); michael@0: inv_gain_Q30 = silk_min( inv_gain_Q30, silk_int32_MAX >> 1 ); michael@0: for( i = idx + psDec->LPC_order; i < psDec->ltp_mem_length; i++ ) { michael@0: sLTP_Q14[ i ] = silk_SMULWB( inv_gain_Q30, sLTP[ i ] ); michael@0: } michael@0: michael@0: /***************************/ michael@0: /* LTP synthesis filtering */ michael@0: /***************************/ michael@0: for( k = 0; k < psDec->nb_subfr; k++ ) { michael@0: /* Set up pointer */ michael@0: pred_lag_ptr = &sLTP_Q14[ sLTP_buf_idx - lag + LTP_ORDER / 2 ]; michael@0: for( i = 0; i < psDec->subfr_length; i++ ) { michael@0: /* Unrolled loop */ michael@0: /* Avoids introducing a bias because silk_SMLAWB() always rounds to -inf */ michael@0: LTP_pred_Q12 = 2; michael@0: LTP_pred_Q12 = silk_SMLAWB( LTP_pred_Q12, pred_lag_ptr[ 0 ], B_Q14[ 0 ] ); michael@0: LTP_pred_Q12 = silk_SMLAWB( LTP_pred_Q12, pred_lag_ptr[ -1 ], B_Q14[ 1 ] ); michael@0: LTP_pred_Q12 = silk_SMLAWB( LTP_pred_Q12, pred_lag_ptr[ -2 ], B_Q14[ 2 ] ); michael@0: LTP_pred_Q12 = silk_SMLAWB( LTP_pred_Q12, pred_lag_ptr[ -3 ], B_Q14[ 3 ] ); michael@0: LTP_pred_Q12 = silk_SMLAWB( LTP_pred_Q12, pred_lag_ptr[ -4 ], B_Q14[ 4 ] ); michael@0: pred_lag_ptr++; michael@0: michael@0: /* Generate LPC excitation */ michael@0: rand_seed = silk_RAND( rand_seed ); michael@0: idx = silk_RSHIFT( rand_seed, 25 ) & RAND_BUF_MASK; michael@0: sLTP_Q14[ sLTP_buf_idx ] = silk_LSHIFT32( silk_SMLAWB( LTP_pred_Q12, rand_ptr[ idx ], rand_scale_Q14 ), 2 ); michael@0: sLTP_buf_idx++; michael@0: } michael@0: michael@0: /* Gradually reduce LTP gain */ michael@0: for( j = 0; j < LTP_ORDER; j++ ) { michael@0: B_Q14[ j ] = silk_RSHIFT( silk_SMULBB( harm_Gain_Q15, B_Q14[ j ] ), 15 ); michael@0: } michael@0: /* Gradually reduce excitation gain */ michael@0: rand_scale_Q14 = silk_RSHIFT( silk_SMULBB( rand_scale_Q14, rand_Gain_Q15 ), 15 ); michael@0: michael@0: /* Slowly increase pitch lag */ michael@0: psPLC->pitchL_Q8 = silk_SMLAWB( psPLC->pitchL_Q8, psPLC->pitchL_Q8, PITCH_DRIFT_FAC_Q16 ); michael@0: psPLC->pitchL_Q8 = silk_min_32( psPLC->pitchL_Q8, silk_LSHIFT( silk_SMULBB( MAX_PITCH_LAG_MS, psDec->fs_kHz ), 8 ) ); michael@0: lag = silk_RSHIFT_ROUND( psPLC->pitchL_Q8, 8 ); michael@0: } michael@0: michael@0: /***************************/ michael@0: /* LPC synthesis filtering */ michael@0: /***************************/ michael@0: sLPC_Q14_ptr = &sLTP_Q14[ psDec->ltp_mem_length - MAX_LPC_ORDER ]; michael@0: michael@0: /* Copy LPC state */ michael@0: silk_memcpy( sLPC_Q14_ptr, psDec->sLPC_Q14_buf, MAX_LPC_ORDER * sizeof( opus_int32 ) ); michael@0: michael@0: silk_assert( psDec->LPC_order >= 10 ); /* check that unrolling works */ michael@0: for( i = 0; i < psDec->frame_length; i++ ) { michael@0: /* partly unrolled */ michael@0: /* Avoids introducing a bias because silk_SMLAWB() always rounds to -inf */ michael@0: LPC_pred_Q10 = silk_RSHIFT( psDec->LPC_order, 1 ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 1 ], A_Q12[ 0 ] ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 2 ], A_Q12[ 1 ] ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 3 ], A_Q12[ 2 ] ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 4 ], A_Q12[ 3 ] ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 5 ], A_Q12[ 4 ] ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 6 ], A_Q12[ 5 ] ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 7 ], A_Q12[ 6 ] ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 8 ], A_Q12[ 7 ] ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 9 ], A_Q12[ 8 ] ); michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - 10 ], A_Q12[ 9 ] ); michael@0: for( j = 10; j < psDec->LPC_order; j++ ) { michael@0: LPC_pred_Q10 = silk_SMLAWB( LPC_pred_Q10, sLPC_Q14_ptr[ MAX_LPC_ORDER + i - j - 1 ], A_Q12[ j ] ); michael@0: } michael@0: michael@0: /* Add prediction to LPC excitation */ michael@0: sLPC_Q14_ptr[ MAX_LPC_ORDER + i ] = silk_ADD_LSHIFT32( sLPC_Q14_ptr[ MAX_LPC_ORDER + i ], LPC_pred_Q10, 4 ); michael@0: michael@0: /* Scale with Gain */ michael@0: frame[ i ] = (opus_int16)silk_SAT16( silk_SAT16( silk_RSHIFT_ROUND( silk_SMULWW( sLPC_Q14_ptr[ MAX_LPC_ORDER + i ], prevGain_Q10[ 1 ] ), 8 ) ) ); michael@0: } michael@0: michael@0: /* Save LPC state */ michael@0: silk_memcpy( psDec->sLPC_Q14_buf, &sLPC_Q14_ptr[ psDec->frame_length ], MAX_LPC_ORDER * sizeof( opus_int32 ) ); michael@0: michael@0: /**************************************/ michael@0: /* Update states */ michael@0: /**************************************/ michael@0: psPLC->rand_seed = rand_seed; michael@0: psPLC->randScale_Q14 = rand_scale_Q14; michael@0: for( i = 0; i < MAX_NB_SUBFR; i++ ) { michael@0: psDecCtrl->pitchL[ i ] = lag; michael@0: } michael@0: RESTORE_STACK; michael@0: } michael@0: michael@0: /* Glues concealed frames with new good received frames */ michael@0: void silk_PLC_glue_frames( michael@0: silk_decoder_state *psDec, /* I/O decoder state */ michael@0: opus_int16 frame[], /* I/O signal */ michael@0: opus_int length /* I length of signal */ michael@0: ) michael@0: { michael@0: opus_int i, energy_shift; michael@0: opus_int32 energy; michael@0: silk_PLC_struct *psPLC; michael@0: psPLC = &psDec->sPLC; michael@0: michael@0: if( psDec->lossCnt ) { michael@0: /* Calculate energy in concealed residual */ michael@0: silk_sum_sqr_shift( &psPLC->conc_energy, &psPLC->conc_energy_shift, frame, length ); michael@0: michael@0: psPLC->last_frame_lost = 1; michael@0: } else { michael@0: if( psDec->sPLC.last_frame_lost ) { michael@0: /* Calculate residual in decoded signal if last frame was lost */ michael@0: silk_sum_sqr_shift( &energy, &energy_shift, frame, length ); michael@0: michael@0: /* Normalize energies */ michael@0: if( energy_shift > psPLC->conc_energy_shift ) { michael@0: psPLC->conc_energy = silk_RSHIFT( psPLC->conc_energy, energy_shift - psPLC->conc_energy_shift ); michael@0: } else if( energy_shift < psPLC->conc_energy_shift ) { michael@0: energy = silk_RSHIFT( energy, psPLC->conc_energy_shift - energy_shift ); michael@0: } michael@0: michael@0: /* Fade in the energy difference */ michael@0: if( energy > psPLC->conc_energy ) { michael@0: opus_int32 frac_Q24, LZ; michael@0: opus_int32 gain_Q16, slope_Q16; michael@0: michael@0: LZ = silk_CLZ32( psPLC->conc_energy ); michael@0: LZ = LZ - 1; michael@0: psPLC->conc_energy = silk_LSHIFT( psPLC->conc_energy, LZ ); michael@0: energy = silk_RSHIFT( energy, silk_max_32( 24 - LZ, 0 ) ); michael@0: michael@0: frac_Q24 = silk_DIV32( psPLC->conc_energy, silk_max( energy, 1 ) ); michael@0: michael@0: gain_Q16 = silk_LSHIFT( silk_SQRT_APPROX( frac_Q24 ), 4 ); michael@0: slope_Q16 = silk_DIV32_16( ( (opus_int32)1 << 16 ) - gain_Q16, length ); michael@0: /* Make slope 4x steeper to avoid missing onsets after DTX */ michael@0: slope_Q16 = silk_LSHIFT( slope_Q16, 2 ); michael@0: michael@0: for( i = 0; i < length; i++ ) { michael@0: frame[ i ] = silk_SMULWB( gain_Q16, frame[ i ] ); michael@0: gain_Q16 += slope_Q16; michael@0: if( gain_Q16 > (opus_int32)1 << 16 ) { michael@0: break; michael@0: } michael@0: } michael@0: } michael@0: } michael@0: psPLC->last_frame_lost = 0; michael@0: } michael@0: }