136 lines
6.0 KiB
C
136 lines
6.0 KiB
C
|
|
||
|
|
||
|
/***********************************************************************
|
||
|
|
||
|
Copyright (c) 2006-2010, Skype Limited. All rights reserved.
|
||
|
Redistribution and use in source and binary forms, with or without
|
||
|
modification, (subject to the limitations in the disclaimer below)
|
||
|
are permitted provided that the following conditions are met:
|
||
|
- Redistributions of source code must retain the above copyright notice,
|
||
|
this list of conditions and the following disclaimer.
|
||
|
- Redistributions in binary form must reproduce the above copyright
|
||
|
notice, this list of conditions and the following disclaimer in the
|
||
|
documentation and/or other materials provided with the distribution.
|
||
|
- Neither the name of Skype Limited, nor the names of specific
|
||
|
contributors, may be used to endorse or promote products derived from
|
||
|
this software without specific prior written permission.
|
||
|
NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED
|
||
|
BY THIS LICENSE.THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
CONTRIBUTORS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
|
||
|
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||
|
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||
|
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
||
|
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||
|
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
|
||
|
***********************************************************************/
|
||
|
|
||
|
#include "SKP_Silk_main_FIX.h"
|
||
|
|
||
|
/* Processing of gains */
|
||
|
void SKP_Silk_process_gains_FIX(
|
||
|
SKP_Silk_encoder_state_FIX *psEnc, /* I/O Encoder state_FIX */
|
||
|
SKP_Silk_encoder_control_FIX *psEncCtrl /* I/O Encoder control_FIX */
|
||
|
)
|
||
|
{
|
||
|
SKP_Silk_shape_state_FIX *psShapeSt = &psEnc->sShape;
|
||
|
SKP_int k;
|
||
|
SKP_int32 s_Q16, InvMaxSqrVal_Q16, gain, gain_squared, ResNrg, ResNrgPart;
|
||
|
|
||
|
/* Gain reduction when LTP coding gain is high */
|
||
|
if( psEncCtrl->sCmn.sigtype == SIG_TYPE_VOICED ) {
|
||
|
/*s = -0.5f * SKP_sigmoid( 0.25f * ( psEncCtrl->LTPredCodGain - 12.0f ) ); */
|
||
|
s_Q16 = -SKP_Silk_sigm_Q15( SKP_RSHIFT_ROUND( psEncCtrl->LTPredCodGain_Q7 - (12 << 7), 4 ) );
|
||
|
for( k = 0; k < NB_SUBFR; k++ ) {
|
||
|
psEncCtrl->Gains_Q16[ k ] = SKP_SMLAWB( psEncCtrl->Gains_Q16[ k ], psEncCtrl->Gains_Q16[ k ], s_Q16 );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* Limit the quantized signal */
|
||
|
/* 69 = 21.0f + 16/0.33 */
|
||
|
InvMaxSqrVal_Q16 = SKP_DIV32_16( SKP_Silk_log2lin(
|
||
|
SKP_SMULWB( (69 << 7) - psEncCtrl->current_SNR_dB_Q7, SKP_FIX_CONST( 0.33, 16 )) ), psEnc->sCmn.subfr_length );
|
||
|
|
||
|
for( k = 0; k < NB_SUBFR; k++ ) {
|
||
|
/* Soft limit on ratio residual energy and squared gains */
|
||
|
ResNrg = psEncCtrl->ResNrg[ k ];
|
||
|
ResNrgPart = SKP_SMULWW( ResNrg, InvMaxSqrVal_Q16 );
|
||
|
if( psEncCtrl->ResNrgQ[ k ] > 0 ) {
|
||
|
if( psEncCtrl->ResNrgQ[ k ] < 32 ) {
|
||
|
ResNrgPart = SKP_RSHIFT_ROUND( ResNrgPart, psEncCtrl->ResNrgQ[ k ] );
|
||
|
} else {
|
||
|
ResNrgPart = 0;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
} else if( psEncCtrl->ResNrgQ[k] != 0 ) {
|
||
|
if( ResNrgPart > SKP_RSHIFT( SKP_int32_MAX, -psEncCtrl->ResNrgQ[ k ] ) ) {
|
||
|
ResNrgPart = SKP_int32_MAX;
|
||
|
} else {
|
||
|
ResNrgPart = SKP_LSHIFT( ResNrgPart, -psEncCtrl->ResNrgQ[ k ] );
|
||
|
}
|
||
|
}
|
||
|
gain = psEncCtrl->Gains_Q16[ k ];
|
||
|
gain_squared = SKP_ADD_SAT32( ResNrgPart, SKP_SMMUL( gain, gain ) );
|
||
|
if( gain_squared < SKP_int16_MAX ) {
|
||
|
/* recalculate with higher precision */
|
||
|
gain_squared = SKP_SMLAWW( SKP_LSHIFT( ResNrgPart, 16 ), gain, gain );
|
||
|
SKP_assert( gain_squared > 0 );
|
||
|
gain = SKP_Silk_SQRT_APPROX( gain_squared ); /* Q8 */
|
||
|
psEncCtrl->Gains_Q16[ k ] = SKP_LSHIFT_SAT32( gain, 8 ); /* Q16 */
|
||
|
} else {
|
||
|
gain = SKP_Silk_SQRT_APPROX( gain_squared ); /* Q0 */
|
||
|
psEncCtrl->Gains_Q16[ k ] = SKP_LSHIFT_SAT32( gain, 16 ); /* Q16 */
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* Noise shaping quantization */
|
||
|
SKP_Silk_gains_quant( psEncCtrl->sCmn.GainsIndices, psEncCtrl->Gains_Q16,
|
||
|
&psShapeSt->LastGainIndex, psEnc->sCmn.nFramesInPayloadBuf );
|
||
|
/* Set quantizer offset for voiced signals. Larger offset when LTP coding gain is low or tilt is high (ie low-pass) */
|
||
|
if( psEncCtrl->sCmn.sigtype == SIG_TYPE_VOICED ) {
|
||
|
if( psEncCtrl->LTPredCodGain_Q7 + SKP_RSHIFT( psEncCtrl->input_tilt_Q15, 8 ) > ( 1 << 7 ) ) {
|
||
|
psEncCtrl->sCmn.QuantOffsetType = 0;
|
||
|
} else {
|
||
|
psEncCtrl->sCmn.QuantOffsetType = 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* Quantizer boundary adjustment */
|
||
|
if( psEncCtrl->sCmn.sigtype == SIG_TYPE_VOICED ) {
|
||
|
psEncCtrl->Lambda_Q10 = SKP_FIX_CONST( 1.3, 10 )
|
||
|
- SKP_SMULWB( SKP_FIX_CONST( 0.5, 18 ), psEnc->speech_activity_Q8 )
|
||
|
- SKP_SMULWB( SKP_FIX_CONST( 0.3, 12 ), psEncCtrl->input_quality_Q14 )
|
||
|
+ SKP_SMULBB( SKP_FIX_CONST( 0.2, 10 ), psEncCtrl->sCmn.QuantOffsetType )
|
||
|
- SKP_SMULWB( SKP_FIX_CONST( 0.1, 12 ), psEncCtrl->coding_quality_Q14 );
|
||
|
} else {
|
||
|
psEncCtrl->Lambda_Q10 = SKP_FIX_CONST( 1.3, 10 )
|
||
|
- SKP_SMULWB( SKP_FIX_CONST( 0.5, 18 ), psEnc->speech_activity_Q8 )
|
||
|
- SKP_SMULWB( SKP_FIX_CONST( 0.4, 12 ), psEncCtrl->input_quality_Q14 )
|
||
|
+ SKP_SMULBB( SKP_FIX_CONST( 0.4, 10 ), psEncCtrl->sCmn.QuantOffsetType )
|
||
|
- SKP_SMULWB( SKP_FIX_CONST( 0.1, 12 ), psEncCtrl->coding_quality_Q14 );
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
SKP_assert( psEncCtrl->Lambda_Q10 >= 0 );
|
||
|
SKP_assert( psEncCtrl->Lambda_Q10 < SKP_FIX_CONST( 2, 10 ) );
|
||
|
|
||
|
}
|
||
|
|
||
|
|