xref: /aosp_15_r20/external/libopus/silk/process_NLSFs.c (revision a58d3d2adb790c104798cd88c8a3aff4fa8b82cc)
1*a58d3d2aSXin Li /***********************************************************************
2*a58d3d2aSXin Li Copyright (c) 2006-2011, Skype Limited. All rights reserved.
3*a58d3d2aSXin Li Redistribution and use in source and binary forms, with or without
4*a58d3d2aSXin Li modification, are permitted provided that the following conditions
5*a58d3d2aSXin Li are met:
6*a58d3d2aSXin Li - Redistributions of source code must retain the above copyright notice,
7*a58d3d2aSXin Li this list of conditions and the following disclaimer.
8*a58d3d2aSXin Li - Redistributions in binary form must reproduce the above copyright
9*a58d3d2aSXin Li notice, this list of conditions and the following disclaimer in the
10*a58d3d2aSXin Li documentation and/or other materials provided with the distribution.
11*a58d3d2aSXin Li - Neither the name of Internet Society, IETF or IETF Trust, nor the
12*a58d3d2aSXin Li names of specific contributors, may be used to endorse or promote
13*a58d3d2aSXin Li products derived from this software without specific prior written
14*a58d3d2aSXin Li permission.
15*a58d3d2aSXin Li THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16*a58d3d2aSXin Li AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17*a58d3d2aSXin Li IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18*a58d3d2aSXin Li ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19*a58d3d2aSXin Li LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20*a58d3d2aSXin Li CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21*a58d3d2aSXin Li SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22*a58d3d2aSXin Li INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23*a58d3d2aSXin Li CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24*a58d3d2aSXin Li ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25*a58d3d2aSXin Li POSSIBILITY OF SUCH DAMAGE.
26*a58d3d2aSXin Li ***********************************************************************/
27*a58d3d2aSXin Li 
28*a58d3d2aSXin Li #ifdef HAVE_CONFIG_H
29*a58d3d2aSXin Li #include "config.h"
30*a58d3d2aSXin Li #endif
31*a58d3d2aSXin Li 
32*a58d3d2aSXin Li #include "main.h"
33*a58d3d2aSXin Li 
34*a58d3d2aSXin Li /* Limit, stabilize, convert and quantize NLSFs */
silk_process_NLSFs(silk_encoder_state * psEncC,opus_int16 PredCoef_Q12[2][MAX_LPC_ORDER],opus_int16 pNLSF_Q15[MAX_LPC_ORDER],const opus_int16 prev_NLSFq_Q15[MAX_LPC_ORDER])35*a58d3d2aSXin Li void silk_process_NLSFs(
36*a58d3d2aSXin Li     silk_encoder_state          *psEncC,                            /* I/O  Encoder state                               */
37*a58d3d2aSXin Li     opus_int16                  PredCoef_Q12[ 2 ][ MAX_LPC_ORDER ], /* O    Prediction coefficients                     */
38*a58d3d2aSXin Li     opus_int16                  pNLSF_Q15[         MAX_LPC_ORDER ], /* I/O  Normalized LSFs (quant out) (0 - (2^15-1))  */
39*a58d3d2aSXin Li     const opus_int16            prev_NLSFq_Q15[    MAX_LPC_ORDER ]  /* I    Previous Normalized LSFs (0 - (2^15-1))     */
40*a58d3d2aSXin Li )
41*a58d3d2aSXin Li {
42*a58d3d2aSXin Li     opus_int     i, doInterpolate;
43*a58d3d2aSXin Li     opus_int     NLSF_mu_Q20;
44*a58d3d2aSXin Li     opus_int16   i_sqr_Q15;
45*a58d3d2aSXin Li     opus_int16   pNLSF0_temp_Q15[ MAX_LPC_ORDER ];
46*a58d3d2aSXin Li     opus_int16   pNLSFW_QW[ MAX_LPC_ORDER ];
47*a58d3d2aSXin Li     opus_int16   pNLSFW0_temp_QW[ MAX_LPC_ORDER ];
48*a58d3d2aSXin Li 
49*a58d3d2aSXin Li     silk_assert( psEncC->speech_activity_Q8 >=   0 );
50*a58d3d2aSXin Li     silk_assert( psEncC->speech_activity_Q8 <= SILK_FIX_CONST( 1.0, 8 ) );
51*a58d3d2aSXin Li     celt_assert( psEncC->useInterpolatedNLSFs == 1 || psEncC->indices.NLSFInterpCoef_Q2 == ( 1 << 2 ) );
52*a58d3d2aSXin Li 
53*a58d3d2aSXin Li     /***********************/
54*a58d3d2aSXin Li     /* Calculate mu values */
55*a58d3d2aSXin Li     /***********************/
56*a58d3d2aSXin Li     /* NLSF_mu  = 0.003 - 0.0015 * psEnc->speech_activity; */
57*a58d3d2aSXin Li     NLSF_mu_Q20 = silk_SMLAWB( SILK_FIX_CONST( 0.003, 20 ), SILK_FIX_CONST( -0.001, 28 ), psEncC->speech_activity_Q8 );
58*a58d3d2aSXin Li     if( psEncC->nb_subfr == 2 ) {
59*a58d3d2aSXin Li         /* Multiply by 1.5 for 10 ms packets */
60*a58d3d2aSXin Li         NLSF_mu_Q20 = silk_ADD_RSHIFT( NLSF_mu_Q20, NLSF_mu_Q20, 1 );
61*a58d3d2aSXin Li     }
62*a58d3d2aSXin Li 
63*a58d3d2aSXin Li     celt_assert( NLSF_mu_Q20 >  0 );
64*a58d3d2aSXin Li     silk_assert( NLSF_mu_Q20 <= SILK_FIX_CONST( 0.005, 20 ) );
65*a58d3d2aSXin Li 
66*a58d3d2aSXin Li     /* Calculate NLSF weights */
67*a58d3d2aSXin Li     silk_NLSF_VQ_weights_laroia( pNLSFW_QW, pNLSF_Q15, psEncC->predictLPCOrder );
68*a58d3d2aSXin Li 
69*a58d3d2aSXin Li     /* Update NLSF weights for interpolated NLSFs */
70*a58d3d2aSXin Li     doInterpolate = ( psEncC->useInterpolatedNLSFs == 1 ) && ( psEncC->indices.NLSFInterpCoef_Q2 < 4 );
71*a58d3d2aSXin Li     if( doInterpolate ) {
72*a58d3d2aSXin Li         /* Calculate the interpolated NLSF vector for the first half */
73*a58d3d2aSXin Li         silk_interpolate( pNLSF0_temp_Q15, prev_NLSFq_Q15, pNLSF_Q15,
74*a58d3d2aSXin Li             psEncC->indices.NLSFInterpCoef_Q2, psEncC->predictLPCOrder );
75*a58d3d2aSXin Li 
76*a58d3d2aSXin Li         /* Calculate first half NLSF weights for the interpolated NLSFs */
77*a58d3d2aSXin Li         silk_NLSF_VQ_weights_laroia( pNLSFW0_temp_QW, pNLSF0_temp_Q15, psEncC->predictLPCOrder );
78*a58d3d2aSXin Li 
79*a58d3d2aSXin Li         /* Update NLSF weights with contribution from first half */
80*a58d3d2aSXin Li         i_sqr_Q15 = silk_LSHIFT( silk_SMULBB( psEncC->indices.NLSFInterpCoef_Q2, psEncC->indices.NLSFInterpCoef_Q2 ), 11 );
81*a58d3d2aSXin Li         for( i = 0; i < psEncC->predictLPCOrder; i++ ) {
82*a58d3d2aSXin Li             pNLSFW_QW[ i ] = silk_ADD16( silk_RSHIFT( pNLSFW_QW[ i ], 1 ), silk_RSHIFT(
83*a58d3d2aSXin Li                   silk_SMULBB( pNLSFW0_temp_QW[ i ], i_sqr_Q15 ), 16) );
84*a58d3d2aSXin Li             silk_assert( pNLSFW_QW[ i ] >= 1 );
85*a58d3d2aSXin Li         }
86*a58d3d2aSXin Li     }
87*a58d3d2aSXin Li 
88*a58d3d2aSXin Li     silk_NLSF_encode( psEncC->indices.NLSFIndices, pNLSF_Q15, psEncC->psNLSF_CB, pNLSFW_QW,
89*a58d3d2aSXin Li         NLSF_mu_Q20, psEncC->NLSF_MSVQ_Survivors, psEncC->indices.signalType );
90*a58d3d2aSXin Li 
91*a58d3d2aSXin Li     /* Convert quantized NLSFs back to LPC coefficients */
92*a58d3d2aSXin Li     silk_NLSF2A( PredCoef_Q12[ 1 ], pNLSF_Q15, psEncC->predictLPCOrder, psEncC->arch );
93*a58d3d2aSXin Li 
94*a58d3d2aSXin Li     if( doInterpolate ) {
95*a58d3d2aSXin Li         /* Calculate the interpolated, quantized LSF vector for the first half */
96*a58d3d2aSXin Li         silk_interpolate( pNLSF0_temp_Q15, prev_NLSFq_Q15, pNLSF_Q15,
97*a58d3d2aSXin Li             psEncC->indices.NLSFInterpCoef_Q2, psEncC->predictLPCOrder );
98*a58d3d2aSXin Li 
99*a58d3d2aSXin Li         /* Convert back to LPC coefficients */
100*a58d3d2aSXin Li         silk_NLSF2A( PredCoef_Q12[ 0 ], pNLSF0_temp_Q15, psEncC->predictLPCOrder, psEncC->arch );
101*a58d3d2aSXin Li 
102*a58d3d2aSXin Li     } else {
103*a58d3d2aSXin Li         /* Copy LPC coefficients for first half from second half */
104*a58d3d2aSXin Li         celt_assert( psEncC->predictLPCOrder <= MAX_LPC_ORDER );
105*a58d3d2aSXin Li         silk_memcpy( PredCoef_Q12[ 0 ], PredCoef_Q12[ 1 ], psEncC->predictLPCOrder * sizeof( opus_int16 ) );
106*a58d3d2aSXin Li     }
107*a58d3d2aSXin Li }
108