Coverage Report

Created: 2025-11-16 07:23

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/opus/silk/float/process_gains_FLP.c
Line
Count
Source
1
/***********************************************************************
2
Copyright (c) 2006-2011, Skype Limited. All rights reserved.
3
Redistribution and use in source and binary forms, with or without
4
modification, are permitted provided that the following conditions
5
are met:
6
- Redistributions of source code must retain the above copyright notice,
7
this list of conditions and the following disclaimer.
8
- Redistributions in binary form must reproduce the above copyright
9
notice, this list of conditions and the following disclaimer in the
10
documentation and/or other materials provided with the distribution.
11
- Neither the name of Internet Society, IETF or IETF Trust, nor the
12
names of specific contributors, may be used to endorse or promote
13
products derived from this software without specific prior written
14
permission.
15
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25
POSSIBILITY OF SUCH DAMAGE.
26
***********************************************************************/
27
28
#ifdef HAVE_CONFIG_H
29
#include "config.h"
30
#endif
31
32
#include "main_FLP.h"
33
#include "tuning_parameters.h"
34
35
/* Processing of gains */
36
void silk_process_gains_FLP(
37
    silk_encoder_state_FLP          *psEnc,                             /* I/O  Encoder state FLP                           */
38
    silk_encoder_control_FLP        *psEncCtrl,                         /* I/O  Encoder control FLP                         */
39
    opus_int                        condCoding                          /* I    The type of conditional coding to use       */
40
)
41
33.1M
{
42
33.1M
    silk_shape_state_FLP *psShapeSt = &psEnc->sShape;
43
33.1M
    opus_int     k;
44
33.1M
    opus_int32   pGains_Q16[ MAX_NB_SUBFR ];
45
33.1M
    silk_float   s, InvMaxSqrVal, gain, quant_offset;
46
47
    /* Gain reduction when LTP coding gain is high */
48
33.1M
    if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) {
49
348k
        s = 1.0f - 0.5f * silk_sigmoid( 0.25f * ( psEncCtrl->LTPredCodGain - 12.0f ) );
50
1.59M
        for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) {
51
1.24M
            psEncCtrl->Gains[ k ] *= s;
52
1.24M
        }
53
348k
    }
54
55
    /* Limit the quantized signal */
56
33.1M
    InvMaxSqrVal = ( silk_float )( pow( 2.0f, 0.33f * ( 21.0f - psEnc->sCmn.SNR_dB_Q7 * ( 1 / 128.0f ) ) ) / psEnc->sCmn.subfr_length );
57
58
138M
    for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) {
59
        /* Soft limit on ratio residual energy and squared gains */
60
104M
        gain = psEncCtrl->Gains[ k ];
61
104M
        gain = ( silk_float )sqrt( gain * gain + psEncCtrl->ResNrg[ k ] * InvMaxSqrVal );
62
104M
        psEncCtrl->Gains[ k ] = silk_min_float( gain, 32767.0f );
63
104M
    }
64
65
    /* Prepare gains for noise shaping quantization */
66
138M
    for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) {
67
104M
        pGains_Q16[ k ] = (opus_int32)( psEncCtrl->Gains[ k ] * 65536.0f );
68
104M
    }
69
70
    /* Save unquantized gains and gain Index */
71
33.1M
    silk_memcpy( psEncCtrl->GainsUnq_Q16, pGains_Q16, psEnc->sCmn.nb_subfr * sizeof( opus_int32 ) );
72
33.1M
    psEncCtrl->lastGainIndexPrev = psShapeSt->LastGainIndex;
73
74
    /* Quantize gains */
75
33.1M
    silk_gains_quant( psEnc->sCmn.indices.GainsIndices, pGains_Q16,
76
33.1M
            &psShapeSt->LastGainIndex, condCoding == CODE_CONDITIONALLY, psEnc->sCmn.nb_subfr );
77
78
    /* Overwrite unquantized gains with quantized gains and convert back to Q0 from Q16 */
79
138M
    for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) {
80
104M
        psEncCtrl->Gains[ k ] = pGains_Q16[ k ] / 65536.0f;
81
104M
    }
82
83
    /* Set quantizer offset for voiced signals. Larger offset when LTP coding gain is low or tilt is high (ie low-pass) */
84
33.1M
    if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) {
85
348k
        if( psEncCtrl->LTPredCodGain + psEnc->sCmn.input_tilt_Q15 * ( 1.0f / 32768.0f ) > 1.0f ) {
86
329k
            psEnc->sCmn.indices.quantOffsetType = 0;
87
329k
        } else {
88
19.4k
            psEnc->sCmn.indices.quantOffsetType = 1;
89
19.4k
        }
90
348k
    }
91
92
    /* Quantizer boundary adjustment */
93
33.1M
    quant_offset = silk_Quantization_Offsets_Q10[ psEnc->sCmn.indices.signalType >> 1 ][ psEnc->sCmn.indices.quantOffsetType ] / 1024.0f;
94
33.1M
    psEncCtrl->Lambda = LAMBDA_OFFSET
95
33.1M
                      + LAMBDA_DELAYED_DECISIONS * psEnc->sCmn.nStatesDelayedDecision
96
33.1M
                      + LAMBDA_SPEECH_ACT        * psEnc->sCmn.speech_activity_Q8 * ( 1.0f /  256.0f )
97
33.1M
                      + LAMBDA_INPUT_QUALITY     * psEncCtrl->input_quality
98
33.1M
                      + LAMBDA_CODING_QUALITY    * psEncCtrl->coding_quality
99
33.1M
                      + LAMBDA_QUANT_OFFSET      * quant_offset;
100
101
33.1M
    silk_assert( psEncCtrl->Lambda > 0.0f );
102
33.1M
    silk_assert( psEncCtrl->Lambda < 2.0f );
103
33.1M
}