diff options
Diffstat (limited to 'src/opus-1.0.2/silk/fixed')
27 files changed, 4643 insertions, 0 deletions
diff --git a/src/opus-1.0.2/silk/fixed/LTP_analysis_filter_FIX.c b/src/opus-1.0.2/silk/fixed/LTP_analysis_filter_FIX.c new file mode 100644 index 00000000..a8fee555 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/LTP_analysis_filter_FIX.c @@ -0,0 +1,85 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" + +void silk_LTP_analysis_filter_FIX( +    opus_int16                      *LTP_res,                               /* O    LTP residual signal of length MAX_NB_SUBFR * ( pre_length + subfr_length )  */ +    const opus_int16                *x,                                     /* I    Pointer to input signal with at least max( pitchL ) preceding samples       */ +    const opus_int16                LTPCoef_Q14[ LTP_ORDER * MAX_NB_SUBFR ],/* I    LTP_ORDER LTP coefficients for each MAX_NB_SUBFR subframe                   */ +    const opus_int                  pitchL[ MAX_NB_SUBFR ],                 /* I    Pitch lag, one for each subframe                                            */ +    const opus_int32                invGains_Q16[ MAX_NB_SUBFR ],           /* I    Inverse quantization gains, one for each subframe                           */ +    const opus_int                  subfr_length,                           /* I    Length of each subframe                                                     */ +    const opus_int                  nb_subfr,                               /* I    Number of subframes                                                         */ +    const opus_int                  pre_length                              /* I    Length of the preceding samples starting at &x[0] for each subframe         */ +) +{ +    const opus_int16 *x_ptr, *x_lag_ptr; +    opus_int16   Btmp_Q14[ LTP_ORDER ]; +    opus_int16   *LTP_res_ptr; +    opus_int     k, i, j; +    opus_int32   LTP_est; + +    x_ptr = x; +    LTP_res_ptr = LTP_res; +    for( k = 0; k < nb_subfr; k++ ) { + +        x_lag_ptr = x_ptr - pitchL[ k ]; +        for( i = 0; i < LTP_ORDER; i++ ) { +            Btmp_Q14[ i ] = LTPCoef_Q14[ k * LTP_ORDER + i ]; +        } + +        /* LTP analysis FIR filter */ +        for( i = 0; i < subfr_length + pre_length; i++ ) { +            LTP_res_ptr[ i ] = x_ptr[ i ]; + +            /* Long-term prediction */ +            LTP_est = silk_SMULBB( x_lag_ptr[ LTP_ORDER / 2 ], Btmp_Q14[ 0 ] ); +            for( j = 1; j < LTP_ORDER; j++ ) { +                LTP_est = silk_SMLABB_ovflw( LTP_est, x_lag_ptr[ LTP_ORDER / 2 - j ], Btmp_Q14[ j ] ); +            } +            LTP_est = silk_RSHIFT_ROUND( LTP_est, 14 ); /* round and -> Q0*/ + +            /* Subtract long-term prediction */ +            LTP_res_ptr[ i ] = (opus_int16)silk_SAT16( (opus_int32)x_ptr[ i ] - LTP_est ); + +            /* Scale residual */ +            LTP_res_ptr[ i ] = silk_SMULWB( invGains_Q16[ k ], LTP_res_ptr[ i ] ); + +            x_lag_ptr++; +        } + +        /* Update pointers */ +        LTP_res_ptr += subfr_length + pre_length; +        x_ptr       += subfr_length; +    } +} + diff --git a/src/opus-1.0.2/silk/fixed/LTP_scale_ctrl_FIX.c b/src/opus-1.0.2/silk/fixed/LTP_scale_ctrl_FIX.c new file mode 100644 index 00000000..ac2fba17 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/LTP_scale_ctrl_FIX.c @@ -0,0 +1,53 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" + +/* Calculation of LTP state scaling */ +void silk_LTP_scale_ctrl_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  encoder state                                                               */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  encoder control                                                             */ +    opus_int                        condCoding                              /* I    The type of conditional coding to use                                       */ +) +{ +    opus_int round_loss; + +    if( condCoding == CODE_INDEPENDENTLY ) { +        /* Only scale if first frame in packet */ +        round_loss = psEnc->sCmn.PacketLoss_perc + psEnc->sCmn.nFramesPerPacket; +        psEnc->sCmn.indices.LTP_scaleIndex = (opus_int8)silk_LIMIT( +            silk_SMULWB( silk_SMULBB( round_loss, psEncCtrl->LTPredCodGain_Q7 ), SILK_FIX_CONST( 0.1, 9 ) ), 0, 2 ); +    } else { +        /* Default is minimum scaling */ +        psEnc->sCmn.indices.LTP_scaleIndex = 0; +    } +    psEncCtrl->LTP_scale_Q14 = silk_LTPScales_table_Q14[ psEnc->sCmn.indices.LTP_scaleIndex ]; +} diff --git a/src/opus-1.0.2/silk/fixed/apply_sine_window_FIX.c b/src/opus-1.0.2/silk/fixed/apply_sine_window_FIX.c new file mode 100644 index 00000000..897fdc30 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/apply_sine_window_FIX.c @@ -0,0 +1,101 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "SigProc_FIX.h" + +/* Apply sine window to signal vector.                                      */ +/* Window types:                                                            */ +/*    1 -> sine window from 0 to pi/2                                       */ +/*    2 -> sine window from pi/2 to pi                                      */ +/* Every other sample is linearly interpolated, for speed.                  */ +/* Window length must be between 16 and 120 (incl) and a multiple of 4.     */ + +/* Matlab code for table: +   for k=16:9*4:16+2*9*4, fprintf(' %7.d,', -round(65536*pi ./ (k:4:k+8*4))); fprintf('\n'); end +*/ +static const opus_int16 freq_table_Q16[ 27 ] = { +   12111,    9804,    8235,    7100,    6239,    5565,    5022,    4575,    4202, +    3885,    3612,    3375,    3167,    2984,    2820,    2674,    2542,    2422, +    2313,    2214,    2123,    2038,    1961,    1889,    1822,    1760,    1702, +}; + +void silk_apply_sine_window( +    opus_int16                  px_win[],           /* O    Pointer to windowed signal                                  */ +    const opus_int16            px[],               /* I    Pointer to input signal                                     */ +    const opus_int              win_type,           /* I    Selects a window type                                       */ +    const opus_int              length              /* I    Window length, multiple of 4                                */ +) +{ +    opus_int   k, f_Q16, c_Q16; +    opus_int32 S0_Q16, S1_Q16; + +    silk_assert( win_type == 1 || win_type == 2 ); + +    /* Length must be in a range from 16 to 120 and a multiple of 4 */ +    silk_assert( length >= 16 && length <= 120 ); +    silk_assert( ( length & 3 ) == 0 ); + +    /* Frequency */ +    k = ( length >> 2 ) - 4; +    silk_assert( k >= 0 && k <= 26 ); +    f_Q16 = (opus_int)freq_table_Q16[ k ]; + +    /* Factor used for cosine approximation */ +    c_Q16 = silk_SMULWB( (opus_int32)f_Q16, -f_Q16 ); +    silk_assert( c_Q16 >= -32768 ); + +    /* initialize state */ +    if( win_type == 1 ) { +        /* start from 0 */ +        S0_Q16 = 0; +        /* approximation of sin(f) */ +        S1_Q16 = f_Q16 + silk_RSHIFT( length, 3 ); +    } else { +        /* start from 1 */ +        S0_Q16 = ( (opus_int32)1 << 16 ); +        /* approximation of cos(f) */ +        S1_Q16 = ( (opus_int32)1 << 16 ) + silk_RSHIFT( c_Q16, 1 ) + silk_RSHIFT( length, 4 ); +    } + +    /* Uses the recursive equation:   sin(n*f) = 2 * cos(f) * sin((n-1)*f) - sin((n-2)*f)    */ +    /* 4 samples at a time */ +    for( k = 0; k < length; k += 4 ) { +        px_win[ k ]     = (opus_int16)silk_SMULWB( silk_RSHIFT( S0_Q16 + S1_Q16, 1 ), px[ k ] ); +        px_win[ k + 1 ] = (opus_int16)silk_SMULWB( S1_Q16, px[ k + 1] ); +        S0_Q16 = silk_SMULWB( S1_Q16, c_Q16 ) + silk_LSHIFT( S1_Q16, 1 ) - S0_Q16 + 1; +        S0_Q16 = silk_min( S0_Q16, ( (opus_int32)1 << 16 ) ); + +        px_win[ k + 2 ] = (opus_int16)silk_SMULWB( silk_RSHIFT( S0_Q16 + S1_Q16, 1 ), px[ k + 2] ); +        px_win[ k + 3 ] = (opus_int16)silk_SMULWB( S0_Q16, px[ k + 3 ] ); +        S1_Q16 = silk_SMULWB( S0_Q16, c_Q16 ) + silk_LSHIFT( S0_Q16, 1 ) - S1_Q16; +        S1_Q16 = silk_min( S1_Q16, ( (opus_int32)1 << 16 ) ); +    } +} diff --git a/src/opus-1.0.2/silk/fixed/autocorr_FIX.c b/src/opus-1.0.2/silk/fixed/autocorr_FIX.c new file mode 100644 index 00000000..c2ebb6a9 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/autocorr_FIX.c @@ -0,0 +1,76 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "SigProc_FIX.h" + +/* Compute autocorrelation */ +void silk_autocorr( +    opus_int32                  *results,           /* O    Result (length correlationCount)                            */ +    opus_int                    *scale,             /* O    Scaling of the correlation vector                           */ +    const opus_int16            *inputData,         /* I    Input data to correlate                                     */ +    const opus_int              inputDataSize,      /* I    Length of input                                             */ +    const opus_int              correlationCount    /* I    Number of correlation taps to compute                       */ +) +{ +    opus_int   i, lz, nRightShifts, corrCount; +    opus_int64 corr64; + +    corrCount = silk_min_int( inputDataSize, correlationCount ); + +    /* compute energy (zero-lag correlation) */ +    corr64 = silk_inner_prod16_aligned_64( inputData, inputData, inputDataSize ); + +    /* deal with all-zero input data */ +    corr64 += 1; + +    /* number of leading zeros */ +    lz = silk_CLZ64( corr64 ); + +    /* scaling: number of right shifts applied to correlations */ +    nRightShifts = 35 - lz; +    *scale = nRightShifts; + +    if( nRightShifts <= 0 ) { +        results[ 0 ] = silk_LSHIFT( (opus_int32)silk_CHECK_FIT32( corr64 ), -nRightShifts ); + +        /* compute remaining correlations based on int32 inner product */ +          for( i = 1; i < corrCount; i++ ) { +            results[ i ] = silk_LSHIFT( silk_inner_prod_aligned( inputData, inputData + i, inputDataSize - i ), -nRightShifts ); +        } +    } else { +        results[ 0 ] = (opus_int32)silk_CHECK_FIT32( silk_RSHIFT64( corr64, nRightShifts ) ); + +        /* compute remaining correlations based on int64 inner product */ +          for( i = 1; i < corrCount; i++ ) { +            results[ i ] =  (opus_int32)silk_CHECK_FIT32( silk_RSHIFT64( silk_inner_prod16_aligned_64( inputData, inputData + i, inputDataSize - i ), nRightShifts ) ); +        } +    } +} diff --git a/src/opus-1.0.2/silk/fixed/burg_modified_FIX.c b/src/opus-1.0.2/silk/fixed/burg_modified_FIX.c new file mode 100644 index 00000000..26a66b1c --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/burg_modified_FIX.c @@ -0,0 +1,269 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "SigProc_FIX.h" +#include "define.h" +#include "tuning_parameters.h" + +#define MAX_FRAME_SIZE              384             /* subfr_length * nb_subfr = ( 0.005 * 16000 + 16 ) * 4 = 384 */ + +#define QA                          25 +#define N_BITS_HEAD_ROOM            2 +#define MIN_RSHIFTS                 -16 +#define MAX_RSHIFTS                 (32 - QA) + +/* Compute reflection coefficients from input signal */ +void silk_burg_modified( +    opus_int32                  *res_nrg,           /* O    Residual energy                                             */ +    opus_int                    *res_nrg_Q,         /* O    Residual energy Q value                                     */ +    opus_int32                  A_Q16[],            /* O    Prediction coefficients (length order)                      */ +    const opus_int16            x[],                /* I    Input signal, length: nb_subfr * ( D + subfr_length )       */ +    const opus_int32            minInvGain_Q30,     /* I    Inverse of max prediction gain                              */ +    const opus_int              subfr_length,       /* I    Input signal subframe length (incl. D preceding samples)    */ +    const opus_int              nb_subfr,           /* I    Number of subframes stacked in x                            */ +    const opus_int              D                   /* I    Order                                                       */ +) +{ +    opus_int         k, n, s, lz, rshifts, rshifts_extra, reached_max_gain; +    opus_int32       C0, num, nrg, rc_Q31, invGain_Q30, Atmp_QA, Atmp1, tmp1, tmp2, x1, x2; +    const opus_int16 *x_ptr; +    opus_int32       C_first_row[ SILK_MAX_ORDER_LPC ]; +    opus_int32       C_last_row[  SILK_MAX_ORDER_LPC ]; +    opus_int32       Af_QA[       SILK_MAX_ORDER_LPC ]; +    opus_int32       CAf[ SILK_MAX_ORDER_LPC + 1 ]; +    opus_int32       CAb[ SILK_MAX_ORDER_LPC + 1 ]; + +    silk_assert( subfr_length * nb_subfr <= MAX_FRAME_SIZE ); + +    /* Compute autocorrelations, added over subframes */ +    silk_sum_sqr_shift( &C0, &rshifts, x, nb_subfr * subfr_length ); +    if( rshifts > MAX_RSHIFTS ) { +        C0 = silk_LSHIFT32( C0, rshifts - MAX_RSHIFTS ); +        silk_assert( C0 > 0 ); +        rshifts = MAX_RSHIFTS; +    } else { +        lz = silk_CLZ32( C0 ) - 1; +        rshifts_extra = N_BITS_HEAD_ROOM - lz; +        if( rshifts_extra > 0 ) { +            rshifts_extra = silk_min( rshifts_extra, MAX_RSHIFTS - rshifts ); +            C0 = silk_RSHIFT32( C0, rshifts_extra ); +        } else { +            rshifts_extra = silk_max( rshifts_extra, MIN_RSHIFTS - rshifts ); +            C0 = silk_LSHIFT32( C0, -rshifts_extra ); +        } +        rshifts += rshifts_extra; +    } +    CAb[ 0 ] = CAf[ 0 ] = C0 + silk_SMMUL( SILK_FIX_CONST( FIND_LPC_COND_FAC, 32 ), C0 ) + 1;                                /* Q(-rshifts) */ +    silk_memset( C_first_row, 0, SILK_MAX_ORDER_LPC * sizeof( opus_int32 ) ); +    if( rshifts > 0 ) { +        for( s = 0; s < nb_subfr; s++ ) { +            x_ptr = x + s * subfr_length; +            for( n = 1; n < D + 1; n++ ) { +                C_first_row[ n - 1 ] += (opus_int32)silk_RSHIFT64( +                    silk_inner_prod16_aligned_64( x_ptr, x_ptr + n, subfr_length - n ), rshifts ); +            } +        } +    } else { +        for( s = 0; s < nb_subfr; s++ ) { +            x_ptr = x + s * subfr_length; +            for( n = 1; n < D + 1; n++ ) { +                C_first_row[ n - 1 ] += silk_LSHIFT32( +                    silk_inner_prod_aligned( x_ptr, x_ptr + n, subfr_length - n ), -rshifts ); +            } +        } +    } +    silk_memcpy( C_last_row, C_first_row, SILK_MAX_ORDER_LPC * sizeof( opus_int32 ) ); + +    /* Initialize */ +    CAb[ 0 ] = CAf[ 0 ] = C0 + silk_SMMUL( SILK_FIX_CONST( FIND_LPC_COND_FAC, 32 ), C0 ) + 1;                                /* Q(-rshifts) */ + +    invGain_Q30 = (opus_int32)1 << 30; +    reached_max_gain = 0; +    for( n = 0; n < D; n++ ) { +        /* Update first row of correlation matrix (without first element) */ +        /* Update last row of correlation matrix (without last element, stored in reversed order) */ +        /* Update C * Af */ +        /* Update C * flipud(Af) (stored in reversed order) */ +        if( rshifts > -2 ) { +            for( s = 0; s < nb_subfr; s++ ) { +                x_ptr = x + s * subfr_length; +                x1  = -silk_LSHIFT32( (opus_int32)x_ptr[ n ],                    16 - rshifts );        /* Q(16-rshifts) */ +                x2  = -silk_LSHIFT32( (opus_int32)x_ptr[ subfr_length - n - 1 ], 16 - rshifts );        /* Q(16-rshifts) */ +                tmp1 = silk_LSHIFT32( (opus_int32)x_ptr[ n ],                    QA - 16 );             /* Q(QA-16) */ +                tmp2 = silk_LSHIFT32( (opus_int32)x_ptr[ subfr_length - n - 1 ], QA - 16 );             /* Q(QA-16) */ +                for( k = 0; k < n; k++ ) { +                    C_first_row[ k ] = silk_SMLAWB( C_first_row[ k ], x1, x_ptr[ n - k - 1 ]            ); /* Q( -rshifts ) */ +                    C_last_row[ k ]  = silk_SMLAWB( C_last_row[ k ],  x2, x_ptr[ subfr_length - n + k ] ); /* Q( -rshifts ) */ +                    Atmp_QA = Af_QA[ k ]; +                    tmp1 = silk_SMLAWB( tmp1, Atmp_QA, x_ptr[ n - k - 1 ]            );                 /* Q(QA-16) */ +                    tmp2 = silk_SMLAWB( tmp2, Atmp_QA, x_ptr[ subfr_length - n + k ] );                 /* Q(QA-16) */ +                } +                tmp1 = silk_LSHIFT32( -tmp1, 32 - QA - rshifts );                                       /* Q(16-rshifts) */ +                tmp2 = silk_LSHIFT32( -tmp2, 32 - QA - rshifts );                                       /* Q(16-rshifts) */ +                for( k = 0; k <= n; k++ ) { +                    CAf[ k ] = silk_SMLAWB( CAf[ k ], tmp1, x_ptr[ n - k ]                    );        /* Q( -rshift ) */ +                    CAb[ k ] = silk_SMLAWB( CAb[ k ], tmp2, x_ptr[ subfr_length - n + k - 1 ] );        /* Q( -rshift ) */ +                } +            } +        } else { +            for( s = 0; s < nb_subfr; s++ ) { +                x_ptr = x + s * subfr_length; +                x1  = -silk_LSHIFT32( (opus_int32)x_ptr[ n ],                    -rshifts );            /* Q( -rshifts ) */ +                x2  = -silk_LSHIFT32( (opus_int32)x_ptr[ subfr_length - n - 1 ], -rshifts );            /* Q( -rshifts ) */ +                tmp1 = silk_LSHIFT32( (opus_int32)x_ptr[ n ],                    17 );                  /* Q17 */ +                tmp2 = silk_LSHIFT32( (opus_int32)x_ptr[ subfr_length - n - 1 ], 17 );                  /* Q17 */ +                for( k = 0; k < n; k++ ) { +                    C_first_row[ k ] = silk_MLA( C_first_row[ k ], x1, x_ptr[ n - k - 1 ]            ); /* Q( -rshifts ) */ +                    C_last_row[ k ]  = silk_MLA( C_last_row[ k ],  x2, x_ptr[ subfr_length - n + k ] ); /* Q( -rshifts ) */ +                    Atmp1 = silk_RSHIFT_ROUND( Af_QA[ k ], QA - 17 );                                   /* Q17 */ +                    tmp1 = silk_MLA( tmp1, x_ptr[ n - k - 1 ],            Atmp1 );                      /* Q17 */ +                    tmp2 = silk_MLA( tmp2, x_ptr[ subfr_length - n + k ], Atmp1 );                      /* Q17 */ +                } +                tmp1 = -tmp1;                                                                           /* Q17 */ +                tmp2 = -tmp2;                                                                           /* Q17 */ +                for( k = 0; k <= n; k++ ) { +                    CAf[ k ] = silk_SMLAWW( CAf[ k ], tmp1, +                        silk_LSHIFT32( (opus_int32)x_ptr[ n - k ], -rshifts - 1 ) );                    /* Q( -rshift ) */ +                    CAb[ k ] = silk_SMLAWW( CAb[ k ], tmp2, +                        silk_LSHIFT32( (opus_int32)x_ptr[ subfr_length - n + k - 1 ], -rshifts - 1 ) ); /* Q( -rshift ) */ +                } +            } +        } + +        /* Calculate nominator and denominator for the next order reflection (parcor) coefficient */ +        tmp1 = C_first_row[ n ];                                                                        /* Q( -rshifts ) */ +        tmp2 = C_last_row[ n ];                                                                         /* Q( -rshifts ) */ +        num  = 0;                                                                                       /* Q( -rshifts ) */ +        nrg  = silk_ADD32( CAb[ 0 ], CAf[ 0 ] );                                                        /* Q( 1-rshifts ) */ +        for( k = 0; k < n; k++ ) { +            Atmp_QA = Af_QA[ k ]; +            lz = silk_CLZ32( silk_abs( Atmp_QA ) ) - 1; +            lz = silk_min( 32 - QA, lz ); +            Atmp1 = silk_LSHIFT32( Atmp_QA, lz );                                                       /* Q( QA + lz ) */ + +            tmp1 = silk_ADD_LSHIFT32( tmp1, silk_SMMUL( C_last_row[  n - k - 1 ], Atmp1 ), 32 - QA - lz );  /* Q( -rshifts ) */ +            tmp2 = silk_ADD_LSHIFT32( tmp2, silk_SMMUL( C_first_row[ n - k - 1 ], Atmp1 ), 32 - QA - lz );  /* Q( -rshifts ) */ +            num  = silk_ADD_LSHIFT32( num,  silk_SMMUL( CAb[ n - k ],             Atmp1 ), 32 - QA - lz );  /* Q( -rshifts ) */ +            nrg  = silk_ADD_LSHIFT32( nrg,  silk_SMMUL( silk_ADD32( CAb[ k + 1 ], CAf[ k + 1 ] ), +                                                                                Atmp1 ), 32 - QA - lz );    /* Q( 1-rshifts ) */ +        } +        CAf[ n + 1 ] = tmp1;                                                                            /* Q( -rshifts ) */ +        CAb[ n + 1 ] = tmp2;                                                                            /* Q( -rshifts ) */ +        num = silk_ADD32( num, tmp2 );                                                                  /* Q( -rshifts ) */ +        num = silk_LSHIFT32( -num, 1 );                                                                 /* Q( 1-rshifts ) */ + +        /* Calculate the next order reflection (parcor) coefficient */ +        if( silk_abs( num ) < nrg ) { +            rc_Q31 = silk_DIV32_varQ( num, nrg, 31 ); +        } else { +            rc_Q31 = ( num > 0 ) ? silk_int32_MAX : silk_int32_MIN; +        } + +        /* Update inverse prediction gain */ +        tmp1 = ( (opus_int32)1 << 30 ) - silk_SMMUL( rc_Q31, rc_Q31 ); +        tmp1 = silk_LSHIFT( silk_SMMUL( invGain_Q30, tmp1 ), 2 ); +        if( tmp1 <= minInvGain_Q30 ) { +            /* Max prediction gain exceeded; set reflection coefficient such that max prediction gain is exactly hit */ +            tmp2 = ( (opus_int32)1 << 30 ) - silk_DIV32_varQ( minInvGain_Q30, invGain_Q30, 30 );            /* Q30 */ +            rc_Q31 = silk_SQRT_APPROX( tmp2 );                                                  /* Q15 */ +            /* Newton-Raphson iteration */ +            rc_Q31 = silk_RSHIFT32( rc_Q31 + silk_DIV32( tmp2, rc_Q31 ), 1 );                   /* Q15 */ +            rc_Q31 = silk_LSHIFT32( rc_Q31, 16 );                                               /* Q31 */ +            if( num < 0 ) { +                /* Ensure adjusted reflection coefficients has the original sign */ +                rc_Q31 = -rc_Q31; +            } +            invGain_Q30 = minInvGain_Q30; +            reached_max_gain = 1; +        } else { +            invGain_Q30 = tmp1; +        } + +        /* Update the AR coefficients */ +        for( k = 0; k < (n + 1) >> 1; k++ ) { +            tmp1 = Af_QA[ k ];                                                                  /* QA */ +            tmp2 = Af_QA[ n - k - 1 ];                                                          /* QA */ +            Af_QA[ k ]         = silk_ADD_LSHIFT32( tmp1, silk_SMMUL( tmp2, rc_Q31 ), 1 );      /* QA */ +            Af_QA[ n - k - 1 ] = silk_ADD_LSHIFT32( tmp2, silk_SMMUL( tmp1, rc_Q31 ), 1 );      /* QA */ +        } +        Af_QA[ n ] = silk_RSHIFT32( rc_Q31, 31 - QA );                                          /* QA */ + +        if( reached_max_gain ) { +            /* Reached max prediction gain; set remaining coefficients to zero and exit loop */ +            for( k = n + 1; k < D; k++ ) { +                Af_QA[ k ] = 0; +            } +            break; +        } + +        /* Update C * Af and C * Ab */ +        for( k = 0; k <= n + 1; k++ ) { +            tmp1 = CAf[ k ];                                                                    /* Q( -rshifts ) */ +            tmp2 = CAb[ n - k + 1 ];                                                            /* Q( -rshifts ) */ +            CAf[ k ]         = silk_ADD_LSHIFT32( tmp1, silk_SMMUL( tmp2, rc_Q31 ), 1 );        /* Q( -rshifts ) */ +            CAb[ n - k + 1 ] = silk_ADD_LSHIFT32( tmp2, silk_SMMUL( tmp1, rc_Q31 ), 1 );        /* Q( -rshifts ) */ +        } +    } + +    if( reached_max_gain ) { +        for( k = 0; k < D; k++ ) { +            /* Scale coefficients */ +            A_Q16[ k ] = -silk_RSHIFT_ROUND( Af_QA[ k ], QA - 16 ); +        } +        /* Subtract energy of preceding samples from C0 */ +        if( rshifts > 0 ) { +            for( s = 0; s < nb_subfr; s++ ) { +                x_ptr = x + s * subfr_length; +                C0 -= (opus_int32)silk_RSHIFT64( silk_inner_prod16_aligned_64( x_ptr, x_ptr, D ), rshifts ); +            } +        } else { +            for( s = 0; s < nb_subfr; s++ ) { +                x_ptr = x + s * subfr_length; +                C0 -= silk_LSHIFT32( silk_inner_prod_aligned( x_ptr, x_ptr, D ), -rshifts ); +            } +        } +        /* Approximate residual energy */ +        *res_nrg = silk_LSHIFT( silk_SMMUL( invGain_Q30, C0 ), 2 ); +        *res_nrg_Q = -rshifts; +    } else { +        /* Return residual energy */ +        nrg  = CAf[ 0 ];                                                                            /* Q( -rshifts ) */ +        tmp1 = (opus_int32)1 << 16;                                                                             /* Q16 */ +        for( k = 0; k < D; k++ ) { +            Atmp1 = silk_RSHIFT_ROUND( Af_QA[ k ], QA - 16 );                                       /* Q16 */ +            nrg  = silk_SMLAWW( nrg, CAf[ k + 1 ], Atmp1 );                                         /* Q( -rshifts ) */ +            tmp1 = silk_SMLAWW( tmp1, Atmp1, Atmp1 );                                               /* Q16 */ +            A_Q16[ k ] = -Atmp1; +        } +        *res_nrg = silk_SMLAWW( nrg, silk_SMMUL( FIND_LPC_COND_FAC, C0 ), -tmp1 );                  /* Q( -rshifts ) */ +        *res_nrg_Q = -rshifts; +    }    +} diff --git a/src/opus-1.0.2/silk/fixed/corrMatrix_FIX.c b/src/opus-1.0.2/silk/fixed/corrMatrix_FIX.c new file mode 100644 index 00000000..21502499 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/corrMatrix_FIX.c @@ -0,0 +1,156 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +/********************************************************************** + * Correlation Matrix Computations for LS estimate. + **********************************************************************/ + +#include "main_FIX.h" + +/* Calculates correlation vector X'*t */ +void silk_corrVector_FIX( +    const opus_int16                *x,                                     /* I    x vector [L + order - 1] used to form data matrix X                         */ +    const opus_int16                *t,                                     /* I    Target vector [L]                                                           */ +    const opus_int                  L,                                      /* I    Length of vectors                                                           */ +    const opus_int                  order,                                  /* I    Max lag for correlation                                                     */ +    opus_int32                      *Xt,                                    /* O    Pointer to X'*t correlation vector [order]                                  */ +    const opus_int                  rshifts                                 /* I    Right shifts of correlations                                                */ +) +{ +    opus_int         lag, i; +    const opus_int16 *ptr1, *ptr2; +    opus_int32       inner_prod; + +    ptr1 = &x[ order - 1 ]; /* Points to first sample of column 0 of X: X[:,0] */ +    ptr2 = t; +    /* Calculate X'*t */ +    if( rshifts > 0 ) { +        /* Right shifting used */ +        for( lag = 0; lag < order; lag++ ) { +            inner_prod = 0; +            for( i = 0; i < L; i++ ) { +                inner_prod += silk_RSHIFT32( silk_SMULBB( ptr1[ i ], ptr2[i] ), rshifts ); +            } +            Xt[ lag ] = inner_prod; /* X[:,lag]'*t */ +            ptr1--; /* Go to next column of X */ +        } +    } else { +        silk_assert( rshifts == 0 ); +        for( lag = 0; lag < order; lag++ ) { +            Xt[ lag ] = silk_inner_prod_aligned( ptr1, ptr2, L ); /* X[:,lag]'*t */ +            ptr1--; /* Go to next column of X */ +        } +    } +} + +/* Calculates correlation matrix X'*X */ +void silk_corrMatrix_FIX( +    const opus_int16                *x,                                     /* I    x vector [L + order - 1] used to form data matrix X                         */ +    const opus_int                  L,                                      /* I    Length of vectors                                                           */ +    const opus_int                  order,                                  /* I    Max lag for correlation                                                     */ +    const opus_int                  head_room,                              /* I    Desired headroom                                                            */ +    opus_int32                      *XX,                                    /* O    Pointer to X'*X correlation matrix [ order x order ]                        */ +    opus_int                        *rshifts                                /* I/O  Right shifts of correlations                                                */ +) +{ +    opus_int         i, j, lag, rshifts_local, head_room_rshifts; +    opus_int32       energy; +    const opus_int16 *ptr1, *ptr2; + +    /* Calculate energy to find shift used to fit in 32 bits */ +    silk_sum_sqr_shift( &energy, &rshifts_local, x, L + order - 1 ); +    /* Add shifts to get the desired head room */ +    head_room_rshifts = silk_max( head_room - silk_CLZ32( energy ), 0 ); + +    energy = silk_RSHIFT32( energy, head_room_rshifts ); +    rshifts_local += head_room_rshifts; + +    /* Calculate energy of first column (0) of X: X[:,0]'*X[:,0] */ +    /* Remove contribution of first order - 1 samples */ +    for( i = 0; i < order - 1; i++ ) { +        energy -= silk_RSHIFT32( silk_SMULBB( x[ i ], x[ i ] ), rshifts_local ); +    } +    if( rshifts_local < *rshifts ) { +        /* Adjust energy */ +        energy = silk_RSHIFT32( energy, *rshifts - rshifts_local ); +        rshifts_local = *rshifts; +    } + +    /* Calculate energy of remaining columns of X: X[:,j]'*X[:,j] */ +    /* Fill out the diagonal of the correlation matrix */ +    matrix_ptr( XX, 0, 0, order ) = energy; +    ptr1 = &x[ order - 1 ]; /* First sample of column 0 of X */ +    for( j = 1; j < order; j++ ) { +        energy = silk_SUB32( energy, silk_RSHIFT32( silk_SMULBB( ptr1[ L - j ], ptr1[ L - j ] ), rshifts_local ) ); +        energy = silk_ADD32( energy, silk_RSHIFT32( silk_SMULBB( ptr1[ -j ], ptr1[ -j ] ), rshifts_local ) ); +        matrix_ptr( XX, j, j, order ) = energy; +    } + +    ptr2 = &x[ order - 2 ]; /* First sample of column 1 of X */ +    /* Calculate the remaining elements of the correlation matrix */ +    if( rshifts_local > 0 ) { +        /* Right shifting used */ +        for( lag = 1; lag < order; lag++ ) { +            /* Inner product of column 0 and column lag: X[:,0]'*X[:,lag] */ +            energy = 0; +            for( i = 0; i < L; i++ ) { +                energy += silk_RSHIFT32( silk_SMULBB( ptr1[ i ], ptr2[i] ), rshifts_local ); +            } +            /* Calculate remaining off diagonal: X[:,j]'*X[:,j + lag] */ +            matrix_ptr( XX, lag, 0, order ) = energy; +            matrix_ptr( XX, 0, lag, order ) = energy; +            for( j = 1; j < ( order - lag ); j++ ) { +                energy = silk_SUB32( energy, silk_RSHIFT32( silk_SMULBB( ptr1[ L - j ], ptr2[ L - j ] ), rshifts_local ) ); +                energy = silk_ADD32( energy, silk_RSHIFT32( silk_SMULBB( ptr1[ -j ], ptr2[ -j ] ), rshifts_local ) ); +                matrix_ptr( XX, lag + j, j, order ) = energy; +                matrix_ptr( XX, j, lag + j, order ) = energy; +            } +            ptr2--; /* Update pointer to first sample of next column (lag) in X */ +        } +    } else { +        for( lag = 1; lag < order; lag++ ) { +            /* Inner product of column 0 and column lag: X[:,0]'*X[:,lag] */ +            energy = silk_inner_prod_aligned( ptr1, ptr2, L ); +            matrix_ptr( XX, lag, 0, order ) = energy; +            matrix_ptr( XX, 0, lag, order ) = energy; +            /* Calculate remaining off diagonal: X[:,j]'*X[:,j + lag] */ +            for( j = 1; j < ( order - lag ); j++ ) { +                energy = silk_SUB32( energy, silk_SMULBB( ptr1[ L - j ], ptr2[ L - j ] ) ); +                energy = silk_SMLABB( energy, ptr1[ -j ], ptr2[ -j ] ); +                matrix_ptr( XX, lag + j, j, order ) = energy; +                matrix_ptr( XX, j, lag + j, order ) = energy; +            } +            ptr2--;/* Update pointer to first sample of next column (lag) in X */ +        } +    } +    *rshifts = rshifts_local; +} + diff --git a/src/opus-1.0.2/silk/fixed/encode_frame_FIX.c b/src/opus-1.0.2/silk/fixed/encode_frame_FIX.c new file mode 100644 index 00000000..a37a9f21 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/encode_frame_FIX.c @@ -0,0 +1,372 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" +#include "tuning_parameters.h" + +/* Low Bitrate Redundancy (LBRR) encoding. Reuse all parameters but encode with lower bitrate           */ +static inline void silk_LBRR_encode_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Pointer to Silk FIX encoder state                                           */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  Pointer to Silk FIX encoder control struct                                  */ +    const opus_int32                xfw_Q3[],                               /* I    Input signal                                                                */ +    opus_int                        condCoding                              /* I    The type of conditional coding used so far for this frame                   */ +); + +void silk_encode_do_VAD_FIX( +    silk_encoder_state_FIX          *psEnc                                  /* I/O  Pointer to Silk FIX encoder state                                           */ +) +{ +    /****************************/ +    /* Voice Activity Detection */ +    /****************************/ +    silk_VAD_GetSA_Q8( &psEnc->sCmn, psEnc->sCmn.inputBuf + 1 ); + +    /**************************************************/ +    /* Convert speech activity into VAD and DTX flags */ +    /**************************************************/ +    if( psEnc->sCmn.speech_activity_Q8 < SILK_FIX_CONST( SPEECH_ACTIVITY_DTX_THRES, 8 ) ) { +        psEnc->sCmn.indices.signalType = TYPE_NO_VOICE_ACTIVITY; +        psEnc->sCmn.noSpeechCounter++; +        if( psEnc->sCmn.noSpeechCounter < NB_SPEECH_FRAMES_BEFORE_DTX ) { +            psEnc->sCmn.inDTX = 0; +        } else if( psEnc->sCmn.noSpeechCounter > MAX_CONSECUTIVE_DTX + NB_SPEECH_FRAMES_BEFORE_DTX ) { +            psEnc->sCmn.noSpeechCounter = NB_SPEECH_FRAMES_BEFORE_DTX; +            psEnc->sCmn.inDTX           = 0; +        } +        psEnc->sCmn.VAD_flags[ psEnc->sCmn.nFramesEncoded ] = 0; +    } else { +        psEnc->sCmn.noSpeechCounter    = 0; +        psEnc->sCmn.inDTX              = 0; +        psEnc->sCmn.indices.signalType = TYPE_UNVOICED; +        psEnc->sCmn.VAD_flags[ psEnc->sCmn.nFramesEncoded ] = 1; +    } +} + +/****************/ +/* Encode frame */ +/****************/ +opus_int silk_encode_frame_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Pointer to Silk FIX encoder state                                           */ +    opus_int32                      *pnBytesOut,                            /* O    Pointer to number of payload bytes;                                         */ +    ec_enc                          *psRangeEnc,                            /* I/O  compressor data structure                                                   */ +    opus_int                        condCoding,                             /* I    The type of conditional coding to use                                       */ +    opus_int                        maxBits,                                /* I    If > 0: maximum number of output bits                                       */ +    opus_int                        useCBR                                  /* I    Flag to force constant-bitrate operation                                    */ +) +{ +    silk_encoder_control_FIX sEncCtrl; +    opus_int     i, iter, maxIter, found_upper, found_lower, ret = 0; +    opus_int16   *x_frame, *res_pitch_frame; +    opus_int32   xfw_Q3[ MAX_FRAME_LENGTH ]; +    opus_int16   res_pitch[ 2 * MAX_FRAME_LENGTH + LA_PITCH_MAX ]; +    ec_enc       sRangeEnc_copy, sRangeEnc_copy2; +    silk_nsq_state sNSQ_copy, sNSQ_copy2; +    opus_int32   seed_copy, nBits, nBits_lower, nBits_upper, gainMult_lower, gainMult_upper; +    opus_int32   gainsID, gainsID_lower, gainsID_upper; +    opus_int16   gainMult_Q8; +    opus_int16   ec_prevLagIndex_copy; +    opus_int     ec_prevSignalType_copy; +    opus_int8    LastGainIndex_copy2; +    opus_uint8   ec_buf_copy[ 1275 ]; + +    /* This is totally unnecessary but many compilers (including gcc) are too dumb to realise it */ +    LastGainIndex_copy2 = nBits_lower = nBits_upper = gainMult_lower = gainMult_upper = 0; + +    psEnc->sCmn.indices.Seed = psEnc->sCmn.frameCounter++ & 3; + +    /**************************************************************/ +    /* Set up Input Pointers, and insert frame in input buffer   */ +    /*************************************************************/ +    /* pointers aligned with start of frame to encode */ +    x_frame         = psEnc->x_buf + psEnc->sCmn.ltp_mem_length;    /* start of frame to encode */ +    res_pitch_frame = res_pitch    + psEnc->sCmn.ltp_mem_length;    /* start of pitch LPC residual frame */ + +    /***************************************/ +    /* Ensure smooth bandwidth transitions */ +    /***************************************/ +    silk_LP_variable_cutoff( &psEnc->sCmn.sLP, psEnc->sCmn.inputBuf + 1, psEnc->sCmn.frame_length ); + +    /*******************************************/ +    /* Copy new frame to front of input buffer */ +    /*******************************************/ +    silk_memcpy( x_frame + LA_SHAPE_MS * psEnc->sCmn.fs_kHz, psEnc->sCmn.inputBuf + 1, psEnc->sCmn.frame_length * sizeof( opus_int16 ) ); + +    if( !psEnc->sCmn.prefillFlag ) { +        /*****************************************/ +        /* Find pitch lags, initial LPC analysis */ +        /*****************************************/ +        silk_find_pitch_lags_FIX( psEnc, &sEncCtrl, res_pitch, x_frame ); + +        /************************/ +        /* Noise shape analysis */ +        /************************/ +        silk_noise_shape_analysis_FIX( psEnc, &sEncCtrl, res_pitch_frame, x_frame ); + +        /***************************************************/ +        /* Find linear prediction coefficients (LPC + LTP) */ +        /***************************************************/ +        silk_find_pred_coefs_FIX( psEnc, &sEncCtrl, res_pitch, x_frame, condCoding ); + +        /****************************************/ +        /* Process gains                        */ +        /****************************************/ +        silk_process_gains_FIX( psEnc, &sEncCtrl, condCoding ); + +        /*****************************************/ +        /* Prefiltering for noise shaper         */ +        /*****************************************/ +        silk_prefilter_FIX( psEnc, &sEncCtrl, xfw_Q3, x_frame ); + +        /****************************************/ +        /* Low Bitrate Redundant Encoding       */ +        /****************************************/ +        silk_LBRR_encode_FIX( psEnc, &sEncCtrl, xfw_Q3, condCoding ); + +        /* Loop over quantizer and entropy coding to control bitrate */ +        maxIter = 6; +        gainMult_Q8 = SILK_FIX_CONST( 1, 8 ); +        found_lower = 0; +        found_upper = 0; +        gainsID = silk_gains_ID( psEnc->sCmn.indices.GainsIndices, psEnc->sCmn.nb_subfr ); +        gainsID_lower = -1; +        gainsID_upper = -1; +        /* Copy part of the input state */ +        silk_memcpy( &sRangeEnc_copy, psRangeEnc, sizeof( ec_enc ) ); +        silk_memcpy( &sNSQ_copy, &psEnc->sCmn.sNSQ, sizeof( silk_nsq_state ) ); +        seed_copy = psEnc->sCmn.indices.Seed; +        ec_prevLagIndex_copy = psEnc->sCmn.ec_prevLagIndex; +        ec_prevSignalType_copy = psEnc->sCmn.ec_prevSignalType; +        for( iter = 0; ; iter++ ) { +            if( gainsID == gainsID_lower ) { +                nBits = nBits_lower; +            } else if( gainsID == gainsID_upper ) { +                nBits = nBits_upper; +            } else { +                /* Restore part of the input state */ +                if( iter > 0 ) { +                    silk_memcpy( psRangeEnc, &sRangeEnc_copy, sizeof( ec_enc ) ); +                    silk_memcpy( &psEnc->sCmn.sNSQ, &sNSQ_copy, sizeof( silk_nsq_state ) ); +                    psEnc->sCmn.indices.Seed = seed_copy; +                    psEnc->sCmn.ec_prevLagIndex = ec_prevLagIndex_copy; +                    psEnc->sCmn.ec_prevSignalType = ec_prevSignalType_copy; +                } + +                /*****************************************/ +                /* Noise shaping quantization            */ +                /*****************************************/ +                if( psEnc->sCmn.nStatesDelayedDecision > 1 || psEnc->sCmn.warping_Q16 > 0 ) { +                    silk_NSQ_del_dec( &psEnc->sCmn, &psEnc->sCmn.sNSQ, &psEnc->sCmn.indices, xfw_Q3, psEnc->sCmn.pulses, +                           sEncCtrl.PredCoef_Q12[ 0 ], sEncCtrl.LTPCoef_Q14, sEncCtrl.AR2_Q13, sEncCtrl.HarmShapeGain_Q14, +                           sEncCtrl.Tilt_Q14, sEncCtrl.LF_shp_Q14, sEncCtrl.Gains_Q16, sEncCtrl.pitchL, sEncCtrl.Lambda_Q10, sEncCtrl.LTP_scale_Q14 ); +                } else { +                    silk_NSQ( &psEnc->sCmn, &psEnc->sCmn.sNSQ, &psEnc->sCmn.indices, xfw_Q3, psEnc->sCmn.pulses, +                            sEncCtrl.PredCoef_Q12[ 0 ], sEncCtrl.LTPCoef_Q14, sEncCtrl.AR2_Q13, sEncCtrl.HarmShapeGain_Q14, +                            sEncCtrl.Tilt_Q14, sEncCtrl.LF_shp_Q14, sEncCtrl.Gains_Q16, sEncCtrl.pitchL, sEncCtrl.Lambda_Q10, sEncCtrl.LTP_scale_Q14 ); +                } + +                /****************************************/ +                /* Encode Parameters                    */ +                /****************************************/ +                silk_encode_indices( &psEnc->sCmn, psRangeEnc, psEnc->sCmn.nFramesEncoded, 0, condCoding ); + +                /****************************************/ +                /* Encode Excitation Signal             */ +                /****************************************/ +                silk_encode_pulses( psRangeEnc, psEnc->sCmn.indices.signalType, psEnc->sCmn.indices.quantOffsetType, +                    psEnc->sCmn.pulses, psEnc->sCmn.frame_length ); + +                nBits = ec_tell( psRangeEnc ); + +                if( useCBR == 0 && iter == 0 && nBits <= maxBits ) { +                    break; +                } +            } + +            if( iter == maxIter ) { +                if( found_lower && ( gainsID == gainsID_lower || nBits > maxBits ) ) { +                    /* Restore output state from earlier iteration that did meet the bitrate budget */ +                    silk_memcpy( psRangeEnc, &sRangeEnc_copy2, sizeof( ec_enc ) ); +                    silk_assert( sRangeEnc_copy2.offs <= 1275 ); +                    silk_memcpy( psRangeEnc->buf, ec_buf_copy, sRangeEnc_copy2.offs ); +                    silk_memcpy( &psEnc->sCmn.sNSQ, &sNSQ_copy2, sizeof( silk_nsq_state ) ); +                    psEnc->sShape.LastGainIndex = LastGainIndex_copy2; +                } +                break; +            } + +            if( nBits > maxBits ) { +                if( found_lower == 0 && iter >= 2 ) { +                    /* Adjust the quantizer's rate/distortion tradeoff and discard previous "upper" results */ +                    sEncCtrl.Lambda_Q10 = silk_ADD_RSHIFT32( sEncCtrl.Lambda_Q10, sEncCtrl.Lambda_Q10, 1 ); +                    found_upper = 0; +                    gainsID_upper = -1; +                } else { +                    found_upper = 1; +                    nBits_upper = nBits; +                    gainMult_upper = gainMult_Q8; +                    gainsID_upper = gainsID; +                } +            } else if( nBits < maxBits - 5 ) { +                found_lower = 1; +                nBits_lower = nBits; +                gainMult_lower = gainMult_Q8; +                if( gainsID != gainsID_lower ) { +                    gainsID_lower = gainsID; +                    /* Copy part of the output state */ +                    silk_memcpy( &sRangeEnc_copy2, psRangeEnc, sizeof( ec_enc ) ); +                    silk_assert( psRangeEnc->offs <= 1275 ); +                    silk_memcpy( ec_buf_copy, psRangeEnc->buf, psRangeEnc->offs ); +                    silk_memcpy( &sNSQ_copy2, &psEnc->sCmn.sNSQ, sizeof( silk_nsq_state ) ); +                    LastGainIndex_copy2 = psEnc->sShape.LastGainIndex; +                } +            } else { +                /* Within 5 bits of budget: close enough */ +                break; +            } + +            if( ( found_lower & found_upper ) == 0 ) { +                /* Adjust gain according to high-rate rate/distortion curve */ +                opus_int32 gain_factor_Q16; +                gain_factor_Q16 = silk_log2lin( silk_LSHIFT( nBits - maxBits, 7 ) / psEnc->sCmn.frame_length + SILK_FIX_CONST( 16, 7 ) ); +                gain_factor_Q16 = silk_min_32( gain_factor_Q16, SILK_FIX_CONST( 2, 16 ) ); +                if( nBits > maxBits ) { +                    gain_factor_Q16 = silk_max_32( gain_factor_Q16, SILK_FIX_CONST( 1.3, 16 ) ); +                } +                gainMult_Q8 = silk_SMULWB( gain_factor_Q16, gainMult_Q8 ); +            } else { +                /* Adjust gain by interpolating */ +                gainMult_Q8 = gainMult_lower + silk_DIV32_16( silk_MUL( gainMult_upper - gainMult_lower, maxBits - nBits_lower ), nBits_upper - nBits_lower ); +                /* New gain multplier must be between 25% and 75% of old range (note that gainMult_upper < gainMult_lower) */ +                if( gainMult_Q8 > silk_ADD_RSHIFT32( gainMult_lower, gainMult_upper - gainMult_lower, 2 ) ) { +                    gainMult_Q8 = silk_ADD_RSHIFT32( gainMult_lower, gainMult_upper - gainMult_lower, 2 ); +                } else +                if( gainMult_Q8 < silk_SUB_RSHIFT32( gainMult_upper, gainMult_upper - gainMult_lower, 2 ) ) { +                    gainMult_Q8 = silk_SUB_RSHIFT32( gainMult_upper, gainMult_upper - gainMult_lower, 2 ); +                } +            } + +            for( i = 0; i < psEnc->sCmn.nb_subfr; i++ ) { +                sEncCtrl.Gains_Q16[ i ] = silk_LSHIFT_SAT32( silk_SMULWB( sEncCtrl.GainsUnq_Q16[ i ], gainMult_Q8 ), 8 ); +            } +  +            /* Quantize gains */ +            psEnc->sShape.LastGainIndex = sEncCtrl.lastGainIndexPrev; +            silk_gains_quant( psEnc->sCmn.indices.GainsIndices, sEncCtrl.Gains_Q16, +                  &psEnc->sShape.LastGainIndex, condCoding == CODE_CONDITIONALLY, psEnc->sCmn.nb_subfr ); + +            /* Unique identifier of gains vector */ +            gainsID = silk_gains_ID( psEnc->sCmn.indices.GainsIndices, psEnc->sCmn.nb_subfr ); +        } +    } + +    /* Update input buffer */ +    silk_memmove( psEnc->x_buf, &psEnc->x_buf[ psEnc->sCmn.frame_length ], +        ( psEnc->sCmn.ltp_mem_length + LA_SHAPE_MS * psEnc->sCmn.fs_kHz ) * sizeof( opus_int16 ) ); + +    /* Parameters needed for next frame */ +    psEnc->sCmn.prevLag        = sEncCtrl.pitchL[ psEnc->sCmn.nb_subfr - 1 ]; +    psEnc->sCmn.prevSignalType = psEnc->sCmn.indices.signalType; + +    /* Exit without entropy coding */ +    if( psEnc->sCmn.prefillFlag ) { +        /* No payload */ +        *pnBytesOut = 0; +        return ret; +    } + +    /****************************************/ +    /* Finalize payload                     */ +    /****************************************/ +    psEnc->sCmn.first_frame_after_reset = 0; +    /* Payload size */ +    *pnBytesOut = silk_RSHIFT( ec_tell( psRangeEnc ) + 7, 3 ); + +    return ret; +} + +/* Low-Bitrate Redundancy (LBRR) encoding. Reuse all parameters but encode excitation at lower bitrate  */ +static inline void silk_LBRR_encode_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Pointer to Silk FIX encoder state                                           */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  Pointer to Silk FIX encoder control struct                                  */ +    const opus_int32                xfw_Q3[],                               /* I    Input signal                                                                */ +    opus_int                        condCoding                              /* I    The type of conditional coding used so far for this frame                   */ +) +{ +    opus_int32   TempGains_Q16[ MAX_NB_SUBFR ]; +    SideInfoIndices *psIndices_LBRR = &psEnc->sCmn.indices_LBRR[ psEnc->sCmn.nFramesEncoded ]; +    silk_nsq_state sNSQ_LBRR; + +    /*******************************************/ +    /* Control use of inband LBRR              */ +    /*******************************************/ +    if( psEnc->sCmn.LBRR_enabled && psEnc->sCmn.speech_activity_Q8 > SILK_FIX_CONST( LBRR_SPEECH_ACTIVITY_THRES, 8 ) ) { +        psEnc->sCmn.LBRR_flags[ psEnc->sCmn.nFramesEncoded ] = 1; + +        /* Copy noise shaping quantizer state and quantization indices from regular encoding */ +        silk_memcpy( &sNSQ_LBRR, &psEnc->sCmn.sNSQ, sizeof( silk_nsq_state ) ); +        silk_memcpy( psIndices_LBRR, &psEnc->sCmn.indices, sizeof( SideInfoIndices ) ); + +        /* Save original gains */ +        silk_memcpy( TempGains_Q16, psEncCtrl->Gains_Q16, psEnc->sCmn.nb_subfr * sizeof( opus_int32 ) ); + +        if( psEnc->sCmn.nFramesEncoded == 0 || psEnc->sCmn.LBRR_flags[ psEnc->sCmn.nFramesEncoded - 1 ] == 0 ) { +            /* First frame in packet or previous frame not LBRR coded */ +            psEnc->sCmn.LBRRprevLastGainIndex = psEnc->sShape.LastGainIndex; + +            /* Increase Gains to get target LBRR rate */ +            psIndices_LBRR->GainsIndices[ 0 ] = psIndices_LBRR->GainsIndices[ 0 ] + psEnc->sCmn.LBRR_GainIncreases; +            psIndices_LBRR->GainsIndices[ 0 ] = silk_min_int( psIndices_LBRR->GainsIndices[ 0 ], N_LEVELS_QGAIN - 1 ); +        } + +        /* Decode to get gains in sync with decoder         */ +        /* Overwrite unquantized gains with quantized gains */ +        silk_gains_dequant( psEncCtrl->Gains_Q16, psIndices_LBRR->GainsIndices, +            &psEnc->sCmn.LBRRprevLastGainIndex, condCoding == CODE_CONDITIONALLY, psEnc->sCmn.nb_subfr ); + +        /*****************************************/ +        /* Noise shaping quantization            */ +        /*****************************************/ +        if( psEnc->sCmn.nStatesDelayedDecision > 1 || psEnc->sCmn.warping_Q16 > 0 ) { +            silk_NSQ_del_dec( &psEnc->sCmn, &sNSQ_LBRR, psIndices_LBRR, xfw_Q3, +                psEnc->sCmn.pulses_LBRR[ psEnc->sCmn.nFramesEncoded ], psEncCtrl->PredCoef_Q12[ 0 ], psEncCtrl->LTPCoef_Q14, +                psEncCtrl->AR2_Q13, psEncCtrl->HarmShapeGain_Q14, psEncCtrl->Tilt_Q14, psEncCtrl->LF_shp_Q14, +                psEncCtrl->Gains_Q16, psEncCtrl->pitchL, psEncCtrl->Lambda_Q10, psEncCtrl->LTP_scale_Q14 ); +        } else { +            silk_NSQ( &psEnc->sCmn, &sNSQ_LBRR, psIndices_LBRR, xfw_Q3, +                psEnc->sCmn.pulses_LBRR[ psEnc->sCmn.nFramesEncoded ], psEncCtrl->PredCoef_Q12[ 0 ], psEncCtrl->LTPCoef_Q14, +                psEncCtrl->AR2_Q13, psEncCtrl->HarmShapeGain_Q14, psEncCtrl->Tilt_Q14, psEncCtrl->LF_shp_Q14, +                psEncCtrl->Gains_Q16, psEncCtrl->pitchL, psEncCtrl->Lambda_Q10, psEncCtrl->LTP_scale_Q14 ); +        } + +        /* Restore original gains */ +        silk_memcpy( psEncCtrl->Gains_Q16, TempGains_Q16, psEnc->sCmn.nb_subfr * sizeof( opus_int32 ) ); +    } +} diff --git a/src/opus-1.0.2/silk/fixed/find_LPC_FIX.c b/src/opus-1.0.2/silk/fixed/find_LPC_FIX.c new file mode 100644 index 00000000..0ed7e846 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/find_LPC_FIX.c @@ -0,0 +1,145 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" +#include "tuning_parameters.h" + +/* Finds LPC vector from correlations, and converts to NLSF */ +void silk_find_LPC_FIX( +    silk_encoder_state              *psEncC,                                /* I/O  Encoder state                                                               */ +    opus_int16                      NLSF_Q15[],                             /* O    NLSFs                                                                       */ +    const opus_int16                x[],                                    /* I    Input signal                                                                */ +    const opus_int32                minInvGain_Q30                          /* I    Inverse of max prediction gain                                              */ +) +{ +    opus_int     k, subfr_length; +    opus_int32   a_Q16[ MAX_LPC_ORDER ]; +    opus_int     isInterpLower, shift; +    opus_int32   res_nrg0, res_nrg1; +    opus_int     rshift0, rshift1; + +    /* Used only for LSF interpolation */ +    opus_int32   a_tmp_Q16[ MAX_LPC_ORDER ], res_nrg_interp, res_nrg, res_tmp_nrg; +    opus_int     res_nrg_interp_Q, res_nrg_Q, res_tmp_nrg_Q; +    opus_int16   a_tmp_Q12[ MAX_LPC_ORDER ]; +    opus_int16   NLSF0_Q15[ MAX_LPC_ORDER ]; +    opus_int16   LPC_res[ MAX_FRAME_LENGTH + MAX_NB_SUBFR * MAX_LPC_ORDER ]; + +    subfr_length = psEncC->subfr_length + psEncC->predictLPCOrder; + +    /* Default: no interpolation */ +    psEncC->indices.NLSFInterpCoef_Q2 = 4; + +    /* Burg AR analysis for the full frame */ +    silk_burg_modified( &res_nrg, &res_nrg_Q, a_Q16, x, minInvGain_Q30, subfr_length, psEncC->nb_subfr, psEncC->predictLPCOrder ); + +    if( psEncC->useInterpolatedNLSFs && !psEncC->first_frame_after_reset && psEncC->nb_subfr == MAX_NB_SUBFR ) { +        /* Optimal solution for last 10 ms */ +        silk_burg_modified( &res_tmp_nrg, &res_tmp_nrg_Q, a_tmp_Q16, x + 2 * subfr_length, minInvGain_Q30, subfr_length, 2, psEncC->predictLPCOrder ); + +        /* subtract residual energy here, as that's easier than adding it to the    */ +        /* residual energy of the first 10 ms in each iteration of the search below */ +        shift = res_tmp_nrg_Q - res_nrg_Q; +        if( shift >= 0 ) { +            if( shift < 32 ) { +                res_nrg = res_nrg - silk_RSHIFT( res_tmp_nrg, shift ); +            } +        } else { +            silk_assert( shift > -32 ); +            res_nrg   = silk_RSHIFT( res_nrg, -shift ) - res_tmp_nrg; +            res_nrg_Q = res_tmp_nrg_Q; +        } + +        /* Convert to NLSFs */ +        silk_A2NLSF( NLSF_Q15, a_tmp_Q16, psEncC->predictLPCOrder ); + +        /* Search over interpolation indices to find the one with lowest residual energy */ +        for( k = 3; k >= 0; k-- ) { +            /* Interpolate NLSFs for first half */ +            silk_interpolate( NLSF0_Q15, psEncC->prev_NLSFq_Q15, NLSF_Q15, k, psEncC->predictLPCOrder ); + +            /* Convert to LPC for residual energy evaluation */ +            silk_NLSF2A( a_tmp_Q12, NLSF0_Q15, psEncC->predictLPCOrder ); + +            /* Calculate residual energy with NLSF interpolation */ +            silk_LPC_analysis_filter( LPC_res, x, a_tmp_Q12, 2 * subfr_length, psEncC->predictLPCOrder ); + +            silk_sum_sqr_shift( &res_nrg0, &rshift0, LPC_res + psEncC->predictLPCOrder,                subfr_length - psEncC->predictLPCOrder ); +            silk_sum_sqr_shift( &res_nrg1, &rshift1, LPC_res + psEncC->predictLPCOrder + subfr_length, subfr_length - psEncC->predictLPCOrder ); + +            /* Add subframe energies from first half frame */ +            shift = rshift0 - rshift1; +            if( shift >= 0 ) { +                res_nrg1         = silk_RSHIFT( res_nrg1, shift ); +                res_nrg_interp_Q = -rshift0; +            } else { +                res_nrg0         = silk_RSHIFT( res_nrg0, -shift ); +                res_nrg_interp_Q = -rshift1; +            } +            res_nrg_interp = silk_ADD32( res_nrg0, res_nrg1 ); + +            /* Compare with first half energy without NLSF interpolation, or best interpolated value so far */ +            shift = res_nrg_interp_Q - res_nrg_Q; +            if( shift >= 0 ) { +                if( silk_RSHIFT( res_nrg_interp, shift ) < res_nrg ) { +                    isInterpLower = silk_TRUE; +                } else { +                    isInterpLower = silk_FALSE; +                } +            } else { +                if( -shift < 32 ) { +                    if( res_nrg_interp < silk_RSHIFT( res_nrg, -shift ) ) { +                        isInterpLower = silk_TRUE; +                    } else { +                        isInterpLower = silk_FALSE; +                    } +                } else { +                    isInterpLower = silk_FALSE; +                } +            } + +            /* Determine whether current interpolated NLSFs are best so far */ +            if( isInterpLower == silk_TRUE ) { +                /* Interpolation has lower residual energy */ +                res_nrg   = res_nrg_interp; +                res_nrg_Q = res_nrg_interp_Q; +                psEncC->indices.NLSFInterpCoef_Q2 = (opus_int8)k; +            } +        } +    } + +    if( psEncC->indices.NLSFInterpCoef_Q2 == 4 ) { +        /* NLSF interpolation is currently inactive, calculate NLSFs from full frame AR coefficients */ +        silk_A2NLSF( NLSF_Q15, a_Q16, psEncC->predictLPCOrder ); +    } + +    silk_assert( psEncC->indices.NLSFInterpCoef_Q2 == 4 || ( psEncC->useInterpolatedNLSFs && !psEncC->first_frame_after_reset && psEncC->nb_subfr == MAX_NB_SUBFR ) ); +} diff --git a/src/opus-1.0.2/silk/fixed/find_LTP_FIX.c b/src/opus-1.0.2/silk/fixed/find_LTP_FIX.c new file mode 100644 index 00000000..bd210874 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/find_LTP_FIX.c @@ -0,0 +1,244 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" +#include "tuning_parameters.h" + +/* Head room for correlations */ +#define LTP_CORRS_HEAD_ROOM                             2 + +void silk_fit_LTP( +    opus_int32 LTP_coefs_Q16[ LTP_ORDER ], +    opus_int16 LTP_coefs_Q14[ LTP_ORDER ] +); + +void silk_find_LTP_FIX( +    opus_int16                      b_Q14[ MAX_NB_SUBFR * LTP_ORDER ],      /* O    LTP coefs                                                                   */ +    opus_int32                      WLTP[ MAX_NB_SUBFR * LTP_ORDER * LTP_ORDER ], /* O    Weight for LTP quantization                                           */ +    opus_int                        *LTPredCodGain_Q7,                      /* O    LTP coding gain                                                             */ +    const opus_int16                r_lpc[],                                /* I    residual signal after LPC signal + state for first 10 ms                    */ +    const opus_int                  lag[ MAX_NB_SUBFR ],                    /* I    LTP lags                                                                    */ +    const opus_int32                Wght_Q15[ MAX_NB_SUBFR ],               /* I    weights                                                                     */ +    const opus_int                  subfr_length,                           /* I    subframe length                                                             */ +    const opus_int                  nb_subfr,                               /* I    number of subframes                                                         */ +    const opus_int                  mem_offset,                             /* I    number of samples in LTP memory                                             */ +    opus_int                        corr_rshifts[ MAX_NB_SUBFR ]            /* O    right shifts applied to correlations                                        */ +) +{ +    opus_int   i, k, lshift; +    const opus_int16 *r_ptr, *lag_ptr; +    opus_int16 *b_Q14_ptr; + +    opus_int32 regu; +    opus_int32 *WLTP_ptr; +    opus_int32 b_Q16[ LTP_ORDER ], delta_b_Q14[ LTP_ORDER ], d_Q14[ MAX_NB_SUBFR ], nrg[ MAX_NB_SUBFR ], g_Q26; +    opus_int32 w[ MAX_NB_SUBFR ], WLTP_max, max_abs_d_Q14, max_w_bits; + +    opus_int32 temp32, denom32; +    opus_int   extra_shifts; +    opus_int   rr_shifts, maxRshifts, maxRshifts_wxtra, LZs; +    opus_int32 LPC_res_nrg, LPC_LTP_res_nrg, div_Q16; +    opus_int32 Rr[ LTP_ORDER ], rr[ MAX_NB_SUBFR ]; +    opus_int32 wd, m_Q12; + +    b_Q14_ptr = b_Q14; +    WLTP_ptr  = WLTP; +    r_ptr     = &r_lpc[ mem_offset ]; +    for( k = 0; k < nb_subfr; k++ ) { +        lag_ptr = r_ptr - ( lag[ k ] + LTP_ORDER / 2 ); + +        silk_sum_sqr_shift( &rr[ k ], &rr_shifts, r_ptr, subfr_length ); /* rr[ k ] in Q( -rr_shifts ) */ + +        /* Assure headroom */ +        LZs = silk_CLZ32( rr[k] ); +        if( LZs < LTP_CORRS_HEAD_ROOM ) { +            rr[ k ] = silk_RSHIFT_ROUND( rr[ k ], LTP_CORRS_HEAD_ROOM - LZs ); +            rr_shifts += ( LTP_CORRS_HEAD_ROOM - LZs ); +        } +        corr_rshifts[ k ] = rr_shifts; +        silk_corrMatrix_FIX( lag_ptr, subfr_length, LTP_ORDER, LTP_CORRS_HEAD_ROOM, WLTP_ptr, &corr_rshifts[ k ] );  /* WLTP_fix_ptr in Q( -corr_rshifts[ k ] ) */ + +        /* The correlation vector always has lower max abs value than rr and/or RR so head room is assured */ +        silk_corrVector_FIX( lag_ptr, r_ptr, subfr_length, LTP_ORDER, Rr, corr_rshifts[ k ] );  /* Rr_fix_ptr   in Q( -corr_rshifts[ k ] ) */ +        if( corr_rshifts[ k ] > rr_shifts ) { +            rr[ k ] = silk_RSHIFT( rr[ k ], corr_rshifts[ k ] - rr_shifts ); /* rr[ k ] in Q( -corr_rshifts[ k ] ) */ +        } +        silk_assert( rr[ k ] >= 0 ); + +        regu = 1; +        regu = silk_SMLAWB( regu, rr[ k ], SILK_FIX_CONST( LTP_DAMPING/3, 16 ) ); +        regu = silk_SMLAWB( regu, matrix_ptr( WLTP_ptr, 0, 0, LTP_ORDER ), SILK_FIX_CONST( LTP_DAMPING/3, 16 ) ); +        regu = silk_SMLAWB( regu, matrix_ptr( WLTP_ptr, LTP_ORDER-1, LTP_ORDER-1, LTP_ORDER ), SILK_FIX_CONST( LTP_DAMPING/3, 16 ) ); +        silk_regularize_correlations_FIX( WLTP_ptr, &rr[k], regu, LTP_ORDER ); + +        silk_solve_LDL_FIX( WLTP_ptr, LTP_ORDER, Rr, b_Q16 ); /* WLTP_fix_ptr and Rr_fix_ptr both in Q(-corr_rshifts[k]) */ + +        /* Limit and store in Q14 */ +        silk_fit_LTP( b_Q16, b_Q14_ptr ); + +        /* Calculate residual energy */ +        nrg[ k ] = silk_residual_energy16_covar_FIX( b_Q14_ptr, WLTP_ptr, Rr, rr[ k ], LTP_ORDER, 14 ); /* nrg_fix in Q( -corr_rshifts[ k ] ) */ + +        /* temp = Wght[ k ] / ( nrg[ k ] * Wght[ k ] + 0.01f * subfr_length ); */ +        extra_shifts = silk_min_int( corr_rshifts[ k ], LTP_CORRS_HEAD_ROOM ); +        denom32 = silk_LSHIFT_SAT32( silk_SMULWB( nrg[ k ], Wght_Q15[ k ] ), 1 + extra_shifts ) + /* Q( -corr_rshifts[ k ] + extra_shifts ) */ +            silk_RSHIFT( silk_SMULWB( (opus_int32)subfr_length, 655 ), corr_rshifts[ k ] - extra_shifts );    /* Q( -corr_rshifts[ k ] + extra_shifts ) */ +        denom32 = silk_max( denom32, 1 ); +        silk_assert( ((opus_int64)Wght_Q15[ k ] << 16 ) < silk_int32_MAX );                       /* Wght always < 0.5 in Q0 */ +        temp32 = silk_DIV32( silk_LSHIFT( (opus_int32)Wght_Q15[ k ], 16 ), denom32 );             /* Q( 15 + 16 + corr_rshifts[k] - extra_shifts ) */ +        temp32 = silk_RSHIFT( temp32, 31 + corr_rshifts[ k ] - extra_shifts - 26 );               /* Q26 */ + +        /* Limit temp such that the below scaling never wraps around */ +        WLTP_max = 0; +        for( i = 0; i < LTP_ORDER * LTP_ORDER; i++ ) { +            WLTP_max = silk_max( WLTP_ptr[ i ], WLTP_max ); +        } +        lshift = silk_CLZ32( WLTP_max ) - 1 - 3; /* keep 3 bits free for vq_nearest_neighbor_fix */ +        silk_assert( 26 - 18 + lshift >= 0 ); +        if( 26 - 18 + lshift < 31 ) { +            temp32 = silk_min_32( temp32, silk_LSHIFT( (opus_int32)1, 26 - 18 + lshift ) ); +        } + +        silk_scale_vector32_Q26_lshift_18( WLTP_ptr, temp32, LTP_ORDER * LTP_ORDER ); /* WLTP_ptr in Q( 18 - corr_rshifts[ k ] ) */ + +        w[ k ] = matrix_ptr( WLTP_ptr, LTP_ORDER/2, LTP_ORDER/2, LTP_ORDER ); /* w in Q( 18 - corr_rshifts[ k ] ) */ +        silk_assert( w[k] >= 0 ); + +        r_ptr     += subfr_length; +        b_Q14_ptr += LTP_ORDER; +        WLTP_ptr  += LTP_ORDER * LTP_ORDER; +    } + +    maxRshifts = 0; +    for( k = 0; k < nb_subfr; k++ ) { +        maxRshifts = silk_max_int( corr_rshifts[ k ], maxRshifts ); +    } + +    /* Compute LTP coding gain */ +    if( LTPredCodGain_Q7 != NULL ) { +        LPC_LTP_res_nrg = 0; +        LPC_res_nrg     = 0; +        silk_assert( LTP_CORRS_HEAD_ROOM >= 2 ); /* Check that no overflow will happen when adding */ +        for( k = 0; k < nb_subfr; k++ ) { +            LPC_res_nrg     = silk_ADD32( LPC_res_nrg,     silk_RSHIFT( silk_ADD32( silk_SMULWB(  rr[ k ], Wght_Q15[ k ] ), 1 ), 1 + ( maxRshifts - corr_rshifts[ k ] ) ) ); /* Q( -maxRshifts ) */ +            LPC_LTP_res_nrg = silk_ADD32( LPC_LTP_res_nrg, silk_RSHIFT( silk_ADD32( silk_SMULWB( nrg[ k ], Wght_Q15[ k ] ), 1 ), 1 + ( maxRshifts - corr_rshifts[ k ] ) ) ); /* Q( -maxRshifts ) */ +        } +        LPC_LTP_res_nrg = silk_max( LPC_LTP_res_nrg, 1 ); /* avoid division by zero */ + +        div_Q16 = silk_DIV32_varQ( LPC_res_nrg, LPC_LTP_res_nrg, 16 ); +        *LTPredCodGain_Q7 = ( opus_int )silk_SMULBB( 3, silk_lin2log( div_Q16 ) - ( 16 << 7 ) ); + +        silk_assert( *LTPredCodGain_Q7 == ( opus_int )silk_SAT16( silk_MUL( 3, silk_lin2log( div_Q16 ) - ( 16 << 7 ) ) ) ); +    } + +    /* smoothing */ +    /* d = sum( B, 1 ); */ +    b_Q14_ptr = b_Q14; +    for( k = 0; k < nb_subfr; k++ ) { +        d_Q14[ k ] = 0; +        for( i = 0; i < LTP_ORDER; i++ ) { +            d_Q14[ k ] += b_Q14_ptr[ i ]; +        } +        b_Q14_ptr += LTP_ORDER; +    } + +    /* m = ( w * d' ) / ( sum( w ) + 1e-3 ); */ + +    /* Find maximum absolute value of d_Q14 and the bits used by w in Q0 */ +    max_abs_d_Q14 = 0; +    max_w_bits    = 0; +    for( k = 0; k < nb_subfr; k++ ) { +        max_abs_d_Q14 = silk_max_32( max_abs_d_Q14, silk_abs( d_Q14[ k ] ) ); +        /* w[ k ] is in Q( 18 - corr_rshifts[ k ] ) */ +        /* Find bits needed in Q( 18 - maxRshifts ) */ +        max_w_bits = silk_max_32( max_w_bits, 32 - silk_CLZ32( w[ k ] ) + corr_rshifts[ k ] - maxRshifts ); +    } + +    /* max_abs_d_Q14 = (5 << 15); worst case, i.e. LTP_ORDER * -silk_int16_MIN */ +    silk_assert( max_abs_d_Q14 <= ( 5 << 15 ) ); + +    /* How many bits is needed for w*d' in Q( 18 - maxRshifts ) in the worst case, of all d_Q14's being equal to max_abs_d_Q14 */ +    extra_shifts = max_w_bits + 32 - silk_CLZ32( max_abs_d_Q14 ) - 14; + +    /* Subtract what we got available; bits in output var plus maxRshifts */ +    extra_shifts -= ( 32 - 1 - 2 + maxRshifts ); /* Keep sign bit free as well as 2 bits for accumulation */ +    extra_shifts = silk_max_int( extra_shifts, 0 ); + +    maxRshifts_wxtra = maxRshifts + extra_shifts; + +    temp32 = silk_RSHIFT( 262, maxRshifts + extra_shifts ) + 1; /* 1e-3f in Q( 18 - (maxRshifts + extra_shifts) ) */ +    wd = 0; +    for( k = 0; k < nb_subfr; k++ ) { +        /* w has at least 2 bits of headroom so no overflow should happen */ +        temp32 = silk_ADD32( temp32,                     silk_RSHIFT( w[ k ], maxRshifts_wxtra - corr_rshifts[ k ] ) );                      /* Q( 18 - maxRshifts_wxtra ) */ +        wd     = silk_ADD32( wd, silk_LSHIFT( silk_SMULWW( silk_RSHIFT( w[ k ], maxRshifts_wxtra - corr_rshifts[ k ] ), d_Q14[ k ] ), 2 ) ); /* Q( 18 - maxRshifts_wxtra ) */ +    } +    m_Q12 = silk_DIV32_varQ( wd, temp32, 12 ); + +    b_Q14_ptr = b_Q14; +    for( k = 0; k < nb_subfr; k++ ) { +        /* w_fix[ k ] from Q( 18 - corr_rshifts[ k ] ) to Q( 16 ) */ +        if( 2 - corr_rshifts[k] > 0 ) { +            temp32 = silk_RSHIFT( w[ k ], 2 - corr_rshifts[ k ] ); +        } else { +            temp32 = silk_LSHIFT_SAT32( w[ k ], corr_rshifts[ k ] - 2 ); +        } + +        g_Q26 = silk_MUL( +            silk_DIV32( +                SILK_FIX_CONST( LTP_SMOOTHING, 26 ), +                silk_RSHIFT( SILK_FIX_CONST( LTP_SMOOTHING, 26 ), 10 ) + temp32 ),                          /* Q10 */ +            silk_LSHIFT_SAT32( silk_SUB_SAT32( (opus_int32)m_Q12, silk_RSHIFT( d_Q14[ k ], 2 ) ), 4 ) );    /* Q16 */ + +        temp32 = 0; +        for( i = 0; i < LTP_ORDER; i++ ) { +            delta_b_Q14[ i ] = silk_max_16( b_Q14_ptr[ i ], 1638 );     /* 1638_Q14 = 0.1_Q0 */ +            temp32 += delta_b_Q14[ i ];                                 /* Q14 */ +        } +        temp32 = silk_DIV32( g_Q26, temp32 );                           /* Q14 -> Q12 */ +        for( i = 0; i < LTP_ORDER; i++ ) { +            b_Q14_ptr[ i ] = silk_LIMIT_32( (opus_int32)b_Q14_ptr[ i ] + silk_SMULWB( silk_LSHIFT_SAT32( temp32, 4 ), delta_b_Q14[ i ] ), -16000, 28000 ); +        } +        b_Q14_ptr += LTP_ORDER; +    } +} + +void silk_fit_LTP( +    opus_int32 LTP_coefs_Q16[ LTP_ORDER ], +    opus_int16 LTP_coefs_Q14[ LTP_ORDER ] +) +{ +    opus_int i; + +    for( i = 0; i < LTP_ORDER; i++ ) { +        LTP_coefs_Q14[ i ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( LTP_coefs_Q16[ i ], 2 ) ); +    } +} diff --git a/src/opus-1.0.2/silk/fixed/find_pitch_lags_FIX.c b/src/opus-1.0.2/silk/fixed/find_pitch_lags_FIX.c new file mode 100644 index 00000000..39c30487 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/find_pitch_lags_FIX.c @@ -0,0 +1,137 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" +#include "tuning_parameters.h" + +/* Find pitch lags */ +void silk_find_pitch_lags_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  encoder state                                                               */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  encoder control                                                             */ +    opus_int16                      res[],                                  /* O    residual                                                                    */ +    const opus_int16                x[]                                     /* I    Speech signal                                                               */ +) +{ +    opus_int   buf_len, i, scale; +    opus_int32 thrhld_Q15, res_nrg; +    const opus_int16 *x_buf, *x_buf_ptr; +    opus_int16 Wsig[      FIND_PITCH_LPC_WIN_MAX ], *Wsig_ptr; +    opus_int32 auto_corr[ MAX_FIND_PITCH_LPC_ORDER + 1 ]; +    opus_int16 rc_Q15[    MAX_FIND_PITCH_LPC_ORDER ]; +    opus_int32 A_Q24[     MAX_FIND_PITCH_LPC_ORDER ]; +    opus_int16 A_Q12[     MAX_FIND_PITCH_LPC_ORDER ]; + +    /******************************************/ +    /* Set up buffer lengths etc based on Fs  */ +    /******************************************/ +    buf_len = psEnc->sCmn.la_pitch + psEnc->sCmn.frame_length + psEnc->sCmn.ltp_mem_length; + +    /* Safety check */ +    silk_assert( buf_len >= psEnc->sCmn.pitch_LPC_win_length ); + +    x_buf = x - psEnc->sCmn.ltp_mem_length; + +    /*************************************/ +    /* Estimate LPC AR coefficients      */ +    /*************************************/ + +    /* Calculate windowed signal */ + +    /* First LA_LTP samples */ +    x_buf_ptr = x_buf + buf_len - psEnc->sCmn.pitch_LPC_win_length; +    Wsig_ptr  = Wsig; +    silk_apply_sine_window( Wsig_ptr, x_buf_ptr, 1, psEnc->sCmn.la_pitch ); + +    /* Middle un - windowed samples */ +    Wsig_ptr  += psEnc->sCmn.la_pitch; +    x_buf_ptr += psEnc->sCmn.la_pitch; +    silk_memcpy( Wsig_ptr, x_buf_ptr, ( psEnc->sCmn.pitch_LPC_win_length - silk_LSHIFT( psEnc->sCmn.la_pitch, 1 ) ) * sizeof( opus_int16 ) ); + +    /* Last LA_LTP samples */ +    Wsig_ptr  += psEnc->sCmn.pitch_LPC_win_length - silk_LSHIFT( psEnc->sCmn.la_pitch, 1 ); +    x_buf_ptr += psEnc->sCmn.pitch_LPC_win_length - silk_LSHIFT( psEnc->sCmn.la_pitch, 1 ); +    silk_apply_sine_window( Wsig_ptr, x_buf_ptr, 2, psEnc->sCmn.la_pitch ); + +    /* Calculate autocorrelation sequence */ +    silk_autocorr( auto_corr, &scale, Wsig, psEnc->sCmn.pitch_LPC_win_length, psEnc->sCmn.pitchEstimationLPCOrder + 1 ); + +    /* Add white noise, as fraction of energy */ +    auto_corr[ 0 ] = silk_SMLAWB( auto_corr[ 0 ], auto_corr[ 0 ], SILK_FIX_CONST( FIND_PITCH_WHITE_NOISE_FRACTION, 16 ) ) + 1; + +    /* Calculate the reflection coefficients using schur */ +    res_nrg = silk_schur( rc_Q15, auto_corr, psEnc->sCmn.pitchEstimationLPCOrder ); + +    /* Prediction gain */ +    psEncCtrl->predGain_Q16 = silk_DIV32_varQ( auto_corr[ 0 ], silk_max_int( res_nrg, 1 ), 16 ); + +    /* Convert reflection coefficients to prediction coefficients */ +    silk_k2a( A_Q24, rc_Q15, psEnc->sCmn.pitchEstimationLPCOrder ); + +    /* Convert From 32 bit Q24 to 16 bit Q12 coefs */ +    for( i = 0; i < psEnc->sCmn.pitchEstimationLPCOrder; i++ ) { +        A_Q12[ i ] = (opus_int16)silk_SAT16( silk_RSHIFT( A_Q24[ i ], 12 ) ); +    } + +    /* Do BWE */ +    silk_bwexpander( A_Q12, psEnc->sCmn.pitchEstimationLPCOrder, SILK_FIX_CONST( FIND_PITCH_BANDWIDTH_EXPANSION, 16 ) ); + +    /*****************************************/ +    /* LPC analysis filtering                */ +    /*****************************************/ +    silk_LPC_analysis_filter( res, x_buf, A_Q12, buf_len, psEnc->sCmn.pitchEstimationLPCOrder ); + +    if( psEnc->sCmn.indices.signalType != TYPE_NO_VOICE_ACTIVITY && psEnc->sCmn.first_frame_after_reset == 0 ) { +        /* Threshold for pitch estimator */ +        thrhld_Q15 = SILK_FIX_CONST( 0.6, 15 ); +        thrhld_Q15 = silk_SMLABB( thrhld_Q15, SILK_FIX_CONST( -0.004, 15 ), psEnc->sCmn.pitchEstimationLPCOrder ); +        thrhld_Q15 = silk_SMLABB( thrhld_Q15, SILK_FIX_CONST( -0.1,   7  ), psEnc->sCmn.speech_activity_Q8 ); +        thrhld_Q15 = silk_SMLABB( thrhld_Q15, SILK_FIX_CONST( -0.15,  15 ), silk_RSHIFT( psEnc->sCmn.prevSignalType, 1 ) ); +        thrhld_Q15 = silk_SMLAWB( thrhld_Q15, SILK_FIX_CONST( -0.1,   16 ), psEnc->sCmn.input_tilt_Q15 ); +        thrhld_Q15 = silk_SAT16(  thrhld_Q15 ); + +        /*****************************************/ +        /* Call pitch estimator                  */ +        /*****************************************/ +        if( silk_pitch_analysis_core( res, psEncCtrl->pitchL, &psEnc->sCmn.indices.lagIndex, &psEnc->sCmn.indices.contourIndex, +                &psEnc->LTPCorr_Q15, psEnc->sCmn.prevLag, psEnc->sCmn.pitchEstimationThreshold_Q16, +                (opus_int16)thrhld_Q15, psEnc->sCmn.fs_kHz, psEnc->sCmn.pitchEstimationComplexity, psEnc->sCmn.nb_subfr ) == 0 ) +        { +            psEnc->sCmn.indices.signalType = TYPE_VOICED; +        } else { +            psEnc->sCmn.indices.signalType = TYPE_UNVOICED; +        } +    } else { +        silk_memset( psEncCtrl->pitchL, 0, sizeof( psEncCtrl->pitchL ) ); +        psEnc->sCmn.indices.lagIndex = 0; +        psEnc->sCmn.indices.contourIndex = 0; +        psEnc->LTPCorr_Q15 = 0; +    } +} diff --git a/src/opus-1.0.2/silk/fixed/find_pred_coefs_FIX.c b/src/opus-1.0.2/silk/fixed/find_pred_coefs_FIX.c new file mode 100644 index 00000000..997989b5 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/find_pred_coefs_FIX.c @@ -0,0 +1,136 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" + +void silk_find_pred_coefs_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  encoder state                                                               */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  encoder control                                                             */ +    const opus_int16                res_pitch[],                            /* I    Residual from pitch analysis                                                */ +    const opus_int16                x[],                                    /* I    Speech signal                                                               */ +    opus_int                        condCoding                              /* I    The type of conditional coding to use                                       */ +) +{ +    opus_int         i; +    opus_int32       WLTP[ MAX_NB_SUBFR * LTP_ORDER * LTP_ORDER ]; +    opus_int32       invGains_Q16[ MAX_NB_SUBFR ], local_gains[ MAX_NB_SUBFR ], Wght_Q15[ MAX_NB_SUBFR ]; +    opus_int16       NLSF_Q15[ MAX_LPC_ORDER ]; +    const opus_int16 *x_ptr; +    opus_int16       *x_pre_ptr, LPC_in_pre[ MAX_NB_SUBFR * MAX_LPC_ORDER + MAX_FRAME_LENGTH ]; +    opus_int32       tmp, min_gain_Q16, minInvGain_Q30; +    opus_int         LTP_corrs_rshift[ MAX_NB_SUBFR ]; + +    /* weighting for weighted least squares */ +    min_gain_Q16 = silk_int32_MAX >> 6; +    for( i = 0; i < psEnc->sCmn.nb_subfr; i++ ) { +        min_gain_Q16 = silk_min( min_gain_Q16, psEncCtrl->Gains_Q16[ i ] ); +    } +    for( i = 0; i < psEnc->sCmn.nb_subfr; i++ ) { +        /* Divide to Q16 */ +        silk_assert( psEncCtrl->Gains_Q16[ i ] > 0 ); +        /* Invert and normalize gains, and ensure that maximum invGains_Q16 is within range of a 16 bit int */ +        invGains_Q16[ i ] = silk_DIV32_varQ( min_gain_Q16, psEncCtrl->Gains_Q16[ i ], 16 - 2 ); + +        /* Ensure Wght_Q15 a minimum value 1 */ +        invGains_Q16[ i ] = silk_max( invGains_Q16[ i ], 363 ); + +        /* Square the inverted gains */ +        silk_assert( invGains_Q16[ i ] == silk_SAT16( invGains_Q16[ i ] ) ); +        tmp = silk_SMULWB( invGains_Q16[ i ], invGains_Q16[ i ] ); +        Wght_Q15[ i ] = silk_RSHIFT( tmp, 1 ); + +        /* Invert the inverted and normalized gains */ +        local_gains[ i ] = silk_DIV32( ( (opus_int32)1 << 16 ), invGains_Q16[ i ] ); +    } + +    if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) { +        /**********/ +        /* VOICED */ +        /**********/ +        silk_assert( psEnc->sCmn.ltp_mem_length - psEnc->sCmn.predictLPCOrder >= psEncCtrl->pitchL[ 0 ] + LTP_ORDER / 2 ); + +        /* LTP analysis */ +        silk_find_LTP_FIX( psEncCtrl->LTPCoef_Q14, WLTP, &psEncCtrl->LTPredCodGain_Q7, +            res_pitch, psEncCtrl->pitchL, Wght_Q15, psEnc->sCmn.subfr_length, +            psEnc->sCmn.nb_subfr, psEnc->sCmn.ltp_mem_length, LTP_corrs_rshift ); + +        /* Quantize LTP gain parameters */ +        silk_quant_LTP_gains( psEncCtrl->LTPCoef_Q14, psEnc->sCmn.indices.LTPIndex, &psEnc->sCmn.indices.PERIndex, +            WLTP, psEnc->sCmn.mu_LTP_Q9, psEnc->sCmn.LTPQuantLowComplexity, psEnc->sCmn.nb_subfr); + +        /* Control LTP scaling */ +        silk_LTP_scale_ctrl_FIX( psEnc, psEncCtrl, condCoding ); + +        /* Create LTP residual */ +        silk_LTP_analysis_filter_FIX( LPC_in_pre, x - psEnc->sCmn.predictLPCOrder, psEncCtrl->LTPCoef_Q14, +            psEncCtrl->pitchL, invGains_Q16, psEnc->sCmn.subfr_length, psEnc->sCmn.nb_subfr, psEnc->sCmn.predictLPCOrder ); + +    } else { +        /************/ +        /* UNVOICED */ +        /************/ +        /* Create signal with prepended subframes, scaled by inverse gains */ +        x_ptr     = x - psEnc->sCmn.predictLPCOrder; +        x_pre_ptr = LPC_in_pre; +        for( i = 0; i < psEnc->sCmn.nb_subfr; i++ ) { +            silk_scale_copy_vector16( x_pre_ptr, x_ptr, invGains_Q16[ i ], +                psEnc->sCmn.subfr_length + psEnc->sCmn.predictLPCOrder ); +            x_pre_ptr += psEnc->sCmn.subfr_length + psEnc->sCmn.predictLPCOrder; +            x_ptr     += psEnc->sCmn.subfr_length; +        } + +        silk_memset( psEncCtrl->LTPCoef_Q14, 0, psEnc->sCmn.nb_subfr * LTP_ORDER * sizeof( opus_int16 ) ); +        psEncCtrl->LTPredCodGain_Q7 = 0; +    } + +    /* Limit on total predictive coding gain */ +    if( psEnc->sCmn.first_frame_after_reset ) { +        minInvGain_Q30 = SILK_FIX_CONST( 1.0f / MAX_PREDICTION_POWER_GAIN_AFTER_RESET, 30 ); +    } else {         +        minInvGain_Q30 = silk_log2lin( silk_SMLAWB( 16 << 7, (opus_int32)psEncCtrl->LTPredCodGain_Q7, SILK_FIX_CONST( 1.0 / 3, 16 ) ) );      /* Q16 */ +        minInvGain_Q30 = silk_DIV32_varQ( minInvGain_Q30,  +            silk_SMULWW( SILK_FIX_CONST( MAX_PREDICTION_POWER_GAIN, 0 ),  +                silk_SMLAWB( SILK_FIX_CONST( 0.25, 18 ), SILK_FIX_CONST( 0.75, 18 ), psEncCtrl->coding_quality_Q14 ) ), 14 ); +    } + +    /* LPC_in_pre contains the LTP-filtered input for voiced, and the unfiltered input for unvoiced */ +    silk_find_LPC_FIX( &psEnc->sCmn, NLSF_Q15, LPC_in_pre, minInvGain_Q30 ); + +    /* Quantize LSFs */ +    silk_process_NLSFs( &psEnc->sCmn, psEncCtrl->PredCoef_Q12, NLSF_Q15, psEnc->sCmn.prev_NLSFq_Q15 ); + +    /* Calculate residual energy using quantized LPC coefficients */ +    silk_residual_energy_FIX( psEncCtrl->ResNrg, psEncCtrl->ResNrgQ, LPC_in_pre, psEncCtrl->PredCoef_Q12, local_gains, +        psEnc->sCmn.subfr_length, psEnc->sCmn.nb_subfr, psEnc->sCmn.predictLPCOrder ); + +    /* Copy to prediction struct for use in next frame for interpolation */ +    silk_memcpy( psEnc->sCmn.prev_NLSFq_Q15, NLSF_Q15, sizeof( psEnc->sCmn.prev_NLSFq_Q15 ) ); +} diff --git a/src/opus-1.0.2/silk/fixed/k2a_FIX.c b/src/opus-1.0.2/silk/fixed/k2a_FIX.c new file mode 100644 index 00000000..cadc9274 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/k2a_FIX.c @@ -0,0 +1,53 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "SigProc_FIX.h" + +/* Step up function, converts reflection coefficients to prediction coefficients */ +void silk_k2a( +    opus_int32                  *A_Q24,             /* O    Prediction coefficients [order] Q24                         */ +    const opus_int16            *rc_Q15,            /* I    Reflection coefficients [order] Q15                         */ +    const opus_int32            order               /* I    Prediction order                                            */ +) +{ +    opus_int   k, n; +    opus_int32 Atmp[ SILK_MAX_ORDER_LPC ]; + +    for( k = 0; k < order; k++ ) { +        for( n = 0; n < k; n++ ) { +            Atmp[ n ] = A_Q24[ n ]; +        } +        for( n = 0; n < k; n++ ) { +            A_Q24[ n ] = silk_SMLAWB( A_Q24[ n ], silk_LSHIFT( Atmp[ k - n - 1 ], 1 ), rc_Q15[ k ] ); +        } +        A_Q24[ k ] = -silk_LSHIFT( (opus_int32)rc_Q15[ k ], 9 ); +    } +} diff --git a/src/opus-1.0.2/silk/fixed/k2a_Q16_FIX.c b/src/opus-1.0.2/silk/fixed/k2a_Q16_FIX.c new file mode 100644 index 00000000..f96f3064 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/k2a_Q16_FIX.c @@ -0,0 +1,53 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "SigProc_FIX.h" + +/* Step up function, converts reflection coefficients to prediction coefficients */ +void silk_k2a_Q16( +    opus_int32                  *A_Q24,             /* O    Prediction coefficients [order] Q24                         */ +    const opus_int32            *rc_Q16,            /* I    Reflection coefficients [order] Q16                         */ +    const opus_int32            order               /* I    Prediction order                                            */ +) +{ +    opus_int   k, n; +    opus_int32 Atmp[ SILK_MAX_ORDER_LPC ]; + +    for( k = 0; k < order; k++ ) { +        for( n = 0; n < k; n++ ) { +            Atmp[ n ] = A_Q24[ n ]; +        } +        for( n = 0; n < k; n++ ) { +            A_Q24[ n ] = silk_SMLAWW( A_Q24[ n ], Atmp[ k - n - 1 ], rc_Q16[ k ] ); +        } +        A_Q24[ k ] = -silk_LSHIFT( rc_Q16[ k ], 8 ); +    } +} diff --git a/src/opus-1.0.2/silk/fixed/main_FIX.h b/src/opus-1.0.2/silk/fixed/main_FIX.h new file mode 100644 index 00000000..369b31ee --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/main_FIX.h @@ -0,0 +1,254 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifndef SILK_MAIN_FIX_H +#define SILK_MAIN_FIX_H + +#include "SigProc_FIX.h" +#include "structs_FIX.h" +#include "control.h" +#include "main.h" +#include "PLC.h" +#include "debug.h" +#include "entenc.h" + +#ifndef FORCE_CPP_BUILD +#ifdef __cplusplus +extern "C" +{ +#endif +#endif + +#define silk_encoder_state_Fxx      silk_encoder_state_FIX +#define silk_encode_do_VAD_Fxx      silk_encode_do_VAD_FIX +#define silk_encode_frame_Fxx       silk_encode_frame_FIX + +/*********************/ +/* Encoder Functions */ +/*********************/ + +/* High-pass filter with cutoff frequency adaptation based on pitch lag statistics */ +void silk_HP_variable_cutoff( +    silk_encoder_state_Fxx          state_Fxx[]                             /* I/O  Encoder states                                                              */ +); + +/* Encoder main function */ +void silk_encode_do_VAD_FIX( +    silk_encoder_state_FIX          *psEnc                                  /* I/O  Pointer to Silk FIX encoder state                                           */ +); + +/* Encoder main function */ +opus_int silk_encode_frame_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Pointer to Silk FIX encoder state                                           */ +    opus_int32                      *pnBytesOut,                            /* O    Pointer to number of payload bytes;                                         */ +    ec_enc                          *psRangeEnc,                            /* I/O  compressor data structure                                                   */ +    opus_int                        condCoding,                             /* I    The type of conditional coding to use                                       */ +    opus_int                        maxBits,                                /* I    If > 0: maximum number of output bits                                       */ +    opus_int                        useCBR                                  /* I    Flag to force constant-bitrate operation                                    */ +); + +/* Initializes the Silk encoder state */ +opus_int silk_init_encoder( +    silk_encoder_state_Fxx          *psEnc                                  /* I/O  Pointer to Silk FIX encoder state                                           */ +); + +/* Control the Silk encoder */ +opus_int silk_control_encoder( +    silk_encoder_state_Fxx          *psEnc,                                 /* I/O  Pointer to Silk encoder state                                               */ +    silk_EncControlStruct           *encControl,                            /* I    Control structure                                                           */ +    const opus_int32                TargetRate_bps,                         /* I    Target max bitrate (bps)                                                    */ +    const opus_int                  allow_bw_switch,                        /* I    Flag to allow switching audio bandwidth                                     */ +    const opus_int                  channelNb,                              /* I    Channel number                                                              */ +    const opus_int                  force_fs_kHz +); + +/****************/ +/* Prefiltering */ +/****************/ +void silk_prefilter_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Encoder state                                                               */ +    const silk_encoder_control_FIX  *psEncCtrl,                             /* I    Encoder control                                                             */ +    opus_int32                      xw_Q10[],                               /* O    Weighted signal                                                             */ +    const opus_int16                x[]                                     /* I    Speech signal                                                               */ +); + +/**************************/ +/* Noise shaping analysis */ +/**************************/ +/* Compute noise shaping coefficients and initial gain values */ +void silk_noise_shape_analysis_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Encoder state FIX                                                           */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  Encoder control FIX                                                         */ +    const opus_int16                *pitch_res,                             /* I    LPC residual from pitch analysis                                            */ +    const opus_int16                *x                                      /* I    Input signal [ frame_length + la_shape ]                                    */ +); + +/* Autocorrelations for a warped frequency axis */ +void silk_warped_autocorrelation_FIX( +          opus_int32                *corr,                                  /* O    Result [order + 1]                                                          */ +          opus_int                  *scale,                                 /* O    Scaling of the correlation vector                                           */ +    const opus_int16                *input,                                 /* I    Input data to correlate                                                     */ +    const opus_int                  warping_Q16,                            /* I    Warping coefficient                                                         */ +    const opus_int                  length,                                 /* I    Length of input                                                             */ +    const opus_int                  order                                   /* I    Correlation order (even)                                                    */ +); + +/* Calculation of LTP state scaling */ +void silk_LTP_scale_ctrl_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  encoder state                                                               */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  encoder control                                                             */ +    opus_int                        condCoding                              /* I    The type of conditional coding to use                                       */ +); + +/**********************************************/ +/* Prediction Analysis                        */ +/**********************************************/ +/* Find pitch lags */ +void silk_find_pitch_lags_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  encoder state                                                               */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  encoder control                                                             */ +    opus_int16                      res[],                                  /* O    residual                                                                    */ +    const opus_int16                x[]                                     /* I    Speech signal                                                               */ +); + +/* Find LPC and LTP coefficients */ +void silk_find_pred_coefs_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  encoder state                                                               */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  encoder control                                                             */ +    const opus_int16                res_pitch[],                            /* I    Residual from pitch analysis                                                */ +    const opus_int16                x[],                                    /* I    Speech signal                                                               */ +    opus_int                        condCoding                              /* I    The type of conditional coding to use                                       */ +); + +/* LPC analysis */ +void silk_find_LPC_FIX( +    silk_encoder_state              *psEncC,                                /* I/O  Encoder state                                                               */ +    opus_int16                      NLSF_Q15[],                             /* O    NLSFs                                                                       */ +    const opus_int16                x[],                                    /* I    Input signal                                                                */ +    const opus_int32                minInvGain_Q30                          /* I    Inverse of max prediction gain                                              */ +); + +/* LTP analysis */ +void silk_find_LTP_FIX( +    opus_int16                      b_Q14[ MAX_NB_SUBFR * LTP_ORDER ],      /* O    LTP coefs                                                                   */ +    opus_int32                      WLTP[ MAX_NB_SUBFR * LTP_ORDER * LTP_ORDER ], /* O    Weight for LTP quantization                                           */ +    opus_int                        *LTPredCodGain_Q7,                      /* O    LTP coding gain                                                             */ +    const opus_int16                r_lpc[],                                /* I    residual signal after LPC signal + state for first 10 ms                    */ +    const opus_int                  lag[ MAX_NB_SUBFR ],                    /* I    LTP lags                                                                    */ +    const opus_int32                Wght_Q15[ MAX_NB_SUBFR ],               /* I    weights                                                                     */ +    const opus_int                  subfr_length,                           /* I    subframe length                                                             */ +    const opus_int                  nb_subfr,                               /* I    number of subframes                                                         */ +    const opus_int                  mem_offset,                             /* I    number of samples in LTP memory                                             */ +    opus_int                        corr_rshifts[ MAX_NB_SUBFR ]            /* O    right shifts applied to correlations                                        */ +); + +void silk_LTP_analysis_filter_FIX( +    opus_int16                      *LTP_res,                               /* O    LTP residual signal of length MAX_NB_SUBFR * ( pre_length + subfr_length )  */ +    const opus_int16                *x,                                     /* I    Pointer to input signal with at least max( pitchL ) preceding samples       */ +    const opus_int16                LTPCoef_Q14[ LTP_ORDER * MAX_NB_SUBFR ],/* I    LTP_ORDER LTP coefficients for each MAX_NB_SUBFR subframe                   */ +    const opus_int                  pitchL[ MAX_NB_SUBFR ],                 /* I    Pitch lag, one for each subframe                                            */ +    const opus_int32                invGains_Q16[ MAX_NB_SUBFR ],           /* I    Inverse quantization gains, one for each subframe                           */ +    const opus_int                  subfr_length,                           /* I    Length of each subframe                                                     */ +    const opus_int                  nb_subfr,                               /* I    Number of subframes                                                         */ +    const opus_int                  pre_length                              /* I    Length of the preceding samples starting at &x[0] for each subframe         */ +); + +/* Calculates residual energies of input subframes where all subframes have LPC_order   */ +/* of preceding samples                                                                 */ +void silk_residual_energy_FIX( +          opus_int32                nrgs[ MAX_NB_SUBFR ],                   /* O    Residual energy per subframe                                                */ +          opus_int                  nrgsQ[ MAX_NB_SUBFR ],                  /* O    Q value per subframe                                                        */ +    const opus_int16                x[],                                    /* I    Input signal                                                                */ +          opus_int16                a_Q12[ 2 ][ MAX_LPC_ORDER ],            /* I    AR coefs for each frame half                                                */ +    const opus_int32                gains[ MAX_NB_SUBFR ],                  /* I    Quantization gains                                                          */ +    const opus_int                  subfr_length,                           /* I    Subframe length                                                             */ +    const opus_int                  nb_subfr,                               /* I    Number of subframes                                                         */ +    const opus_int                  LPC_order                               /* I    LPC order                                                                   */ +); + +/* Residual energy: nrg = wxx - 2 * wXx * c + c' * wXX * c */ +opus_int32 silk_residual_energy16_covar_FIX( +    const opus_int16                *c,                                     /* I    Prediction vector                                                           */ +    const opus_int32                *wXX,                                   /* I    Correlation matrix                                                          */ +    const opus_int32                *wXx,                                   /* I    Correlation vector                                                          */ +    opus_int32                      wxx,                                    /* I    Signal energy                                                               */ +    opus_int                        D,                                      /* I    Dimension                                                                   */ +    opus_int                        cQ                                      /* I    Q value for c vector 0 - 15                                                 */ +); + +/* Processing of gains */ +void silk_process_gains_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Encoder state                                                               */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  Encoder control                                                             */ +    opus_int                        condCoding                              /* I    The type of conditional coding to use                                       */ +); + +/******************/ +/* Linear Algebra */ +/******************/ +/* Calculates correlation matrix X'*X */ +void silk_corrMatrix_FIX( +    const opus_int16                *x,                                     /* I    x vector [L + order - 1] used to form data matrix X                         */ +    const opus_int                  L,                                      /* I    Length of vectors                                                           */ +    const opus_int                  order,                                  /* I    Max lag for correlation                                                     */ +    const opus_int                  head_room,                              /* I    Desired headroom                                                            */ +    opus_int32                      *XX,                                    /* O    Pointer to X'*X correlation matrix [ order x order ]                        */ +    opus_int                        *rshifts                                /* I/O  Right shifts of correlations                                                */ +); + +/* Calculates correlation vector X'*t */ +void silk_corrVector_FIX( +    const opus_int16                *x,                                     /* I    x vector [L + order - 1] used to form data matrix X                         */ +    const opus_int16                *t,                                     /* I    Target vector [L]                                                           */ +    const opus_int                  L,                                      /* I    Length of vectors                                                           */ +    const opus_int                  order,                                  /* I    Max lag for correlation                                                     */ +    opus_int32                      *Xt,                                    /* O    Pointer to X'*t correlation vector [order]                                  */ +    const opus_int                  rshifts                                 /* I    Right shifts of correlations                                                */ +); + +/* Add noise to matrix diagonal */ +void silk_regularize_correlations_FIX( +    opus_int32                      *XX,                                    /* I/O  Correlation matrices                                                        */ +    opus_int32                      *xx,                                    /* I/O  Correlation values                                                          */ +    opus_int32                      noise,                                  /* I    Noise to add                                                                */ +    opus_int                        D                                       /* I    Dimension of XX                                                             */ +); + +/* Solves Ax = b, assuming A is symmetric */ +void silk_solve_LDL_FIX( +    opus_int32                      *A,                                     /* I    Pointer to symetric square matrix A                                         */ +    opus_int                        M,                                      /* I    Size of matrix                                                              */ +    const opus_int32                *b,                                     /* I    Pointer to b vector                                                         */ +    opus_int32                      *x_Q16                                  /* O    Pointer to x solution vector                                                */ +); + +#ifndef FORCE_CPP_BUILD +#ifdef __cplusplus +} +#endif /* __cplusplus */ +#endif /* FORCE_CPP_BUILD */ +#endif /* SILK_MAIN_FIX_H */ diff --git a/src/opus-1.0.2/silk/fixed/noise_shape_analysis_FIX.c b/src/opus-1.0.2/silk/fixed/noise_shape_analysis_FIX.c new file mode 100644 index 00000000..d230e48d --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/noise_shape_analysis_FIX.c @@ -0,0 +1,440 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" +#include "tuning_parameters.h" + +/* Compute gain to make warped filter coefficients have a zero mean log frequency response on a   */ +/* non-warped frequency scale. (So that it can be implemented with a minimum-phase monic filter.) */ +/* Note: A monic filter is one with the first coefficient equal to 1.0. In Silk we omit the first */ +/* coefficient in an array of coefficients, for monic filters.                                    */ +static inline opus_int32 warped_gain( /* gain in Q16*/ +    const opus_int32     *coefs_Q24, +    opus_int             lambda_Q16, +    opus_int             order +) { +    opus_int   i; +    opus_int32 gain_Q24; + +    lambda_Q16 = -lambda_Q16; +    gain_Q24 = coefs_Q24[ order - 1 ]; +    for( i = order - 2; i >= 0; i-- ) { +        gain_Q24 = silk_SMLAWB( coefs_Q24[ i ], gain_Q24, lambda_Q16 ); +    } +    gain_Q24  = silk_SMLAWB( SILK_FIX_CONST( 1.0, 24 ), gain_Q24, -lambda_Q16 ); +    return silk_INVERSE32_varQ( gain_Q24, 40 ); +} + +/* Convert warped filter coefficients to monic pseudo-warped coefficients and limit maximum     */ +/* amplitude of monic warped coefficients by using bandwidth expansion on the true coefficients */ +static inline void limit_warped_coefs( +    opus_int32           *coefs_syn_Q24, +    opus_int32           *coefs_ana_Q24, +    opus_int             lambda_Q16, +    opus_int32           limit_Q24, +    opus_int             order +) { +    opus_int   i, iter, ind = 0; +    opus_int32 tmp, maxabs_Q24, chirp_Q16, gain_syn_Q16, gain_ana_Q16; +    opus_int32 nom_Q16, den_Q24; + +    /* Convert to monic coefficients */ +    lambda_Q16 = -lambda_Q16; +    for( i = order - 1; i > 0; i-- ) { +        coefs_syn_Q24[ i - 1 ] = silk_SMLAWB( coefs_syn_Q24[ i - 1 ], coefs_syn_Q24[ i ], lambda_Q16 ); +        coefs_ana_Q24[ i - 1 ] = silk_SMLAWB( coefs_ana_Q24[ i - 1 ], coefs_ana_Q24[ i ], lambda_Q16 ); +    } +    lambda_Q16 = -lambda_Q16; +    nom_Q16  = silk_SMLAWB( SILK_FIX_CONST( 1.0, 16 ), -(opus_int32)lambda_Q16,        lambda_Q16 ); +    den_Q24  = silk_SMLAWB( SILK_FIX_CONST( 1.0, 24 ), coefs_syn_Q24[ 0 ], lambda_Q16 ); +    gain_syn_Q16 = silk_DIV32_varQ( nom_Q16, den_Q24, 24 ); +    den_Q24  = silk_SMLAWB( SILK_FIX_CONST( 1.0, 24 ), coefs_ana_Q24[ 0 ], lambda_Q16 ); +    gain_ana_Q16 = silk_DIV32_varQ( nom_Q16, den_Q24, 24 ); +    for( i = 0; i < order; i++ ) { +        coefs_syn_Q24[ i ] = silk_SMULWW( gain_syn_Q16, coefs_syn_Q24[ i ] ); +        coefs_ana_Q24[ i ] = silk_SMULWW( gain_ana_Q16, coefs_ana_Q24[ i ] ); +    } + +    for( iter = 0; iter < 10; iter++ ) { +        /* Find maximum absolute value */ +        maxabs_Q24 = -1; +        for( i = 0; i < order; i++ ) { +            tmp = silk_max( silk_abs_int32( coefs_syn_Q24[ i ] ), silk_abs_int32( coefs_ana_Q24[ i ] ) ); +            if( tmp > maxabs_Q24 ) { +                maxabs_Q24 = tmp; +                ind = i; +            } +        } +        if( maxabs_Q24 <= limit_Q24 ) { +            /* Coefficients are within range - done */ +            return; +        } + +        /* Convert back to true warped coefficients */ +        for( i = 1; i < order; i++ ) { +            coefs_syn_Q24[ i - 1 ] = silk_SMLAWB( coefs_syn_Q24[ i - 1 ], coefs_syn_Q24[ i ], lambda_Q16 ); +            coefs_ana_Q24[ i - 1 ] = silk_SMLAWB( coefs_ana_Q24[ i - 1 ], coefs_ana_Q24[ i ], lambda_Q16 ); +        } +        gain_syn_Q16 = silk_INVERSE32_varQ( gain_syn_Q16, 32 ); +        gain_ana_Q16 = silk_INVERSE32_varQ( gain_ana_Q16, 32 ); +        for( i = 0; i < order; i++ ) { +            coefs_syn_Q24[ i ] = silk_SMULWW( gain_syn_Q16, coefs_syn_Q24[ i ] ); +            coefs_ana_Q24[ i ] = silk_SMULWW( gain_ana_Q16, coefs_ana_Q24[ i ] ); +        } + +        /* Apply bandwidth expansion */ +        chirp_Q16 = SILK_FIX_CONST( 0.99, 16 ) - silk_DIV32_varQ( +            silk_SMULWB( maxabs_Q24 - limit_Q24, silk_SMLABB( SILK_FIX_CONST( 0.8, 10 ), SILK_FIX_CONST( 0.1, 10 ), iter ) ), +            silk_MUL( maxabs_Q24, ind + 1 ), 22 ); +        silk_bwexpander_32( coefs_syn_Q24, order, chirp_Q16 ); +        silk_bwexpander_32( coefs_ana_Q24, order, chirp_Q16 ); + +        /* Convert to monic warped coefficients */ +        lambda_Q16 = -lambda_Q16; +        for( i = order - 1; i > 0; i-- ) { +            coefs_syn_Q24[ i - 1 ] = silk_SMLAWB( coefs_syn_Q24[ i - 1 ], coefs_syn_Q24[ i ], lambda_Q16 ); +            coefs_ana_Q24[ i - 1 ] = silk_SMLAWB( coefs_ana_Q24[ i - 1 ], coefs_ana_Q24[ i ], lambda_Q16 ); +        } +        lambda_Q16 = -lambda_Q16; +        nom_Q16  = silk_SMLAWB( SILK_FIX_CONST( 1.0, 16 ), -(opus_int32)lambda_Q16,        lambda_Q16 ); +        den_Q24  = silk_SMLAWB( SILK_FIX_CONST( 1.0, 24 ), coefs_syn_Q24[ 0 ], lambda_Q16 ); +        gain_syn_Q16 = silk_DIV32_varQ( nom_Q16, den_Q24, 24 ); +        den_Q24  = silk_SMLAWB( SILK_FIX_CONST( 1.0, 24 ), coefs_ana_Q24[ 0 ], lambda_Q16 ); +        gain_ana_Q16 = silk_DIV32_varQ( nom_Q16, den_Q24, 24 ); +        for( i = 0; i < order; i++ ) { +            coefs_syn_Q24[ i ] = silk_SMULWW( gain_syn_Q16, coefs_syn_Q24[ i ] ); +            coefs_ana_Q24[ i ] = silk_SMULWW( gain_ana_Q16, coefs_ana_Q24[ i ] ); +        } +    } +    silk_assert( 0 ); +} + +/**************************************************************/ +/* Compute noise shaping coefficients and initial gain values */ +/**************************************************************/ +void silk_noise_shape_analysis_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Encoder state FIX                                                           */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  Encoder control FIX                                                         */ +    const opus_int16                *pitch_res,                             /* I    LPC residual from pitch analysis                                            */ +    const opus_int16                *x                                      /* I    Input signal [ frame_length + la_shape ]                                    */ +) +{ +    silk_shape_state_FIX *psShapeSt = &psEnc->sShape; +    opus_int     k, i, nSamples, Qnrg, b_Q14, warping_Q16, scale = 0; +    opus_int32   SNR_adj_dB_Q7, HarmBoost_Q16, HarmShapeGain_Q16, Tilt_Q16, tmp32; +    opus_int32   nrg, pre_nrg_Q30, log_energy_Q7, log_energy_prev_Q7, energy_variation_Q7; +    opus_int32   delta_Q16, BWExp1_Q16, BWExp2_Q16, gain_mult_Q16, gain_add_Q16, strength_Q16, b_Q8; +    opus_int32   auto_corr[     MAX_SHAPE_LPC_ORDER + 1 ]; +    opus_int32   refl_coef_Q16[ MAX_SHAPE_LPC_ORDER ]; +    opus_int32   AR1_Q24[       MAX_SHAPE_LPC_ORDER ]; +    opus_int32   AR2_Q24[       MAX_SHAPE_LPC_ORDER ]; +    opus_int16   x_windowed[    SHAPE_LPC_WIN_MAX ]; +    const opus_int16 *x_ptr, *pitch_res_ptr; + +    /* Point to start of first LPC analysis block */ +    x_ptr = x - psEnc->sCmn.la_shape; + +    /****************/ +    /* GAIN CONTROL */ +    /****************/ +    SNR_adj_dB_Q7 = psEnc->sCmn.SNR_dB_Q7; + +    /* Input quality is the average of the quality in the lowest two VAD bands */ +    psEncCtrl->input_quality_Q14 = ( opus_int )silk_RSHIFT( (opus_int32)psEnc->sCmn.input_quality_bands_Q15[ 0 ] +        + psEnc->sCmn.input_quality_bands_Q15[ 1 ], 2 ); + +    /* Coding quality level, between 0.0_Q0 and 1.0_Q0, but in Q14 */ +    psEncCtrl->coding_quality_Q14 = silk_RSHIFT( silk_sigm_Q15( silk_RSHIFT_ROUND( SNR_adj_dB_Q7 - +        SILK_FIX_CONST( 20.0, 7 ), 4 ) ), 1 ); + +    /* Reduce coding SNR during low speech activity */ +    if( psEnc->sCmn.useCBR == 0 ) { +        b_Q8 = SILK_FIX_CONST( 1.0, 8 ) - psEnc->sCmn.speech_activity_Q8; +        b_Q8 = silk_SMULWB( silk_LSHIFT( b_Q8, 8 ), b_Q8 ); +        SNR_adj_dB_Q7 = silk_SMLAWB( SNR_adj_dB_Q7, +            silk_SMULBB( SILK_FIX_CONST( -BG_SNR_DECR_dB, 7 ) >> ( 4 + 1 ), b_Q8 ),                                       /* Q11*/ +            silk_SMULWB( SILK_FIX_CONST( 1.0, 14 ) + psEncCtrl->input_quality_Q14, psEncCtrl->coding_quality_Q14 ) );     /* Q12*/ +    } + +    if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) { +        /* Reduce gains for periodic signals */ +        SNR_adj_dB_Q7 = silk_SMLAWB( SNR_adj_dB_Q7, SILK_FIX_CONST( HARM_SNR_INCR_dB, 8 ), psEnc->LTPCorr_Q15 ); +    } else { +        /* For unvoiced signals and low-quality input, adjust the quality slower than SNR_dB setting */ +        SNR_adj_dB_Q7 = silk_SMLAWB( SNR_adj_dB_Q7, +            silk_SMLAWB( SILK_FIX_CONST( 6.0, 9 ), -SILK_FIX_CONST( 0.4, 18 ), psEnc->sCmn.SNR_dB_Q7 ), +            SILK_FIX_CONST( 1.0, 14 ) - psEncCtrl->input_quality_Q14 ); +    } + +    /*************************/ +    /* SPARSENESS PROCESSING */ +    /*************************/ +    /* Set quantizer offset */ +    if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) { +        /* Initially set to 0; may be overruled in process_gains(..) */ +        psEnc->sCmn.indices.quantOffsetType = 0; +        psEncCtrl->sparseness_Q8 = 0; +    } else { +        /* Sparseness measure, based on relative fluctuations of energy per 2 milliseconds */ +        nSamples = silk_LSHIFT( psEnc->sCmn.fs_kHz, 1 ); +        energy_variation_Q7 = 0; +        log_energy_prev_Q7  = 0; +        pitch_res_ptr = pitch_res; +        for( k = 0; k < silk_SMULBB( SUB_FRAME_LENGTH_MS, psEnc->sCmn.nb_subfr ) / 2; k++ ) { +            silk_sum_sqr_shift( &nrg, &scale, pitch_res_ptr, nSamples ); +            nrg += silk_RSHIFT( nSamples, scale );           /* Q(-scale)*/ + +            log_energy_Q7 = silk_lin2log( nrg ); +            if( k > 0 ) { +                energy_variation_Q7 += silk_abs( log_energy_Q7 - log_energy_prev_Q7 ); +            } +            log_energy_prev_Q7 = log_energy_Q7; +            pitch_res_ptr += nSamples; +        } + +        psEncCtrl->sparseness_Q8 = silk_RSHIFT( silk_sigm_Q15( silk_SMULWB( energy_variation_Q7 - +            SILK_FIX_CONST( 5.0, 7 ), SILK_FIX_CONST( 0.1, 16 ) ) ), 7 ); + +        /* Set quantization offset depending on sparseness measure */ +        if( psEncCtrl->sparseness_Q8 > SILK_FIX_CONST( SPARSENESS_THRESHOLD_QNT_OFFSET, 8 ) ) { +            psEnc->sCmn.indices.quantOffsetType = 0; +        } else { +            psEnc->sCmn.indices.quantOffsetType = 1; +        } + +        /* Increase coding SNR for sparse signals */ +        SNR_adj_dB_Q7 = silk_SMLAWB( SNR_adj_dB_Q7, SILK_FIX_CONST( SPARSE_SNR_INCR_dB, 15 ), psEncCtrl->sparseness_Q8 - SILK_FIX_CONST( 0.5, 8 ) ); +    } + +    /*******************************/ +    /* Control bandwidth expansion */ +    /*******************************/ +    /* More BWE for signals with high prediction gain */ +    strength_Q16 = silk_SMULWB( psEncCtrl->predGain_Q16, SILK_FIX_CONST( FIND_PITCH_WHITE_NOISE_FRACTION, 16 ) ); +    BWExp1_Q16 = BWExp2_Q16 = silk_DIV32_varQ( SILK_FIX_CONST( BANDWIDTH_EXPANSION, 16 ), +        silk_SMLAWW( SILK_FIX_CONST( 1.0, 16 ), strength_Q16, strength_Q16 ), 16 ); +    delta_Q16  = silk_SMULWB( SILK_FIX_CONST( 1.0, 16 ) - silk_SMULBB( 3, psEncCtrl->coding_quality_Q14 ), +        SILK_FIX_CONST( LOW_RATE_BANDWIDTH_EXPANSION_DELTA, 16 ) ); +    BWExp1_Q16 = silk_SUB32( BWExp1_Q16, delta_Q16 ); +    BWExp2_Q16 = silk_ADD32( BWExp2_Q16, delta_Q16 ); +    /* BWExp1 will be applied after BWExp2, so make it relative */ +    BWExp1_Q16 = silk_DIV32_16( silk_LSHIFT( BWExp1_Q16, 14 ), silk_RSHIFT( BWExp2_Q16, 2 ) ); + +    if( psEnc->sCmn.warping_Q16 > 0 ) { +        /* Slightly more warping in analysis will move quantization noise up in frequency, where it's better masked */ +        warping_Q16 = silk_SMLAWB( psEnc->sCmn.warping_Q16, (opus_int32)psEncCtrl->coding_quality_Q14, SILK_FIX_CONST( 0.01, 18 ) ); +    } else { +        warping_Q16 = 0; +    } + +    /********************************************/ +    /* Compute noise shaping AR coefs and gains */ +    /********************************************/ +    for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) { +        /* Apply window: sine slope followed by flat part followed by cosine slope */ +        opus_int shift, slope_part, flat_part; +        flat_part = psEnc->sCmn.fs_kHz * 3; +        slope_part = silk_RSHIFT( psEnc->sCmn.shapeWinLength - flat_part, 1 ); + +        silk_apply_sine_window( x_windowed, x_ptr, 1, slope_part ); +        shift = slope_part; +        silk_memcpy( x_windowed + shift, x_ptr + shift, flat_part * sizeof(opus_int16) ); +        shift += flat_part; +        silk_apply_sine_window( x_windowed + shift, x_ptr + shift, 2, slope_part ); + +        /* Update pointer: next LPC analysis block */ +        x_ptr += psEnc->sCmn.subfr_length; + +        if( psEnc->sCmn.warping_Q16 > 0 ) { +            /* Calculate warped auto correlation */ +            silk_warped_autocorrelation_FIX( auto_corr, &scale, x_windowed, warping_Q16, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder ); +        } else { +            /* Calculate regular auto correlation */ +            silk_autocorr( auto_corr, &scale, x_windowed, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder + 1 ); +        } + +        /* Add white noise, as a fraction of energy */ +        auto_corr[0] = silk_ADD32( auto_corr[0], silk_max_32( silk_SMULWB( silk_RSHIFT( auto_corr[ 0 ], 4 ), +            SILK_FIX_CONST( SHAPE_WHITE_NOISE_FRACTION, 20 ) ), 1 ) ); + +        /* Calculate the reflection coefficients using schur */ +        nrg = silk_schur64( refl_coef_Q16, auto_corr, psEnc->sCmn.shapingLPCOrder ); +        silk_assert( nrg >= 0 ); + +        /* Convert reflection coefficients to prediction coefficients */ +        silk_k2a_Q16( AR2_Q24, refl_coef_Q16, psEnc->sCmn.shapingLPCOrder ); + +        Qnrg = -scale;          /* range: -12...30*/ +        silk_assert( Qnrg >= -12 ); +        silk_assert( Qnrg <=  30 ); + +        /* Make sure that Qnrg is an even number */ +        if( Qnrg & 1 ) { +            Qnrg -= 1; +            nrg >>= 1; +        } + +        tmp32 = silk_SQRT_APPROX( nrg ); +        Qnrg >>= 1;             /* range: -6...15*/ + +        psEncCtrl->Gains_Q16[ k ] = silk_LSHIFT_SAT32( tmp32, 16 - Qnrg ); + +        if( psEnc->sCmn.warping_Q16 > 0 ) { +            /* Adjust gain for warping */ +            gain_mult_Q16 = warped_gain( AR2_Q24, warping_Q16, psEnc->sCmn.shapingLPCOrder ); +            silk_assert( psEncCtrl->Gains_Q16[ k ] >= 0 ); +            if ( silk_SMULWW( silk_RSHIFT_ROUND( psEncCtrl->Gains_Q16[ k ], 1 ), gain_mult_Q16 ) >= ( silk_int32_MAX >> 1 ) ) { +               psEncCtrl->Gains_Q16[ k ] = silk_int32_MAX; +            } else { +               psEncCtrl->Gains_Q16[ k ] = silk_SMULWW( psEncCtrl->Gains_Q16[ k ], gain_mult_Q16 ); +            } +        } + +        /* Bandwidth expansion for synthesis filter shaping */ +        silk_bwexpander_32( AR2_Q24, psEnc->sCmn.shapingLPCOrder, BWExp2_Q16 ); + +        /* Compute noise shaping filter coefficients */ +        silk_memcpy( AR1_Q24, AR2_Q24, psEnc->sCmn.shapingLPCOrder * sizeof( opus_int32 ) ); + +        /* Bandwidth expansion for analysis filter shaping */ +        silk_assert( BWExp1_Q16 <= SILK_FIX_CONST( 1.0, 16 ) ); +        silk_bwexpander_32( AR1_Q24, psEnc->sCmn.shapingLPCOrder, BWExp1_Q16 ); + +        /* Ratio of prediction gains, in energy domain */ +        pre_nrg_Q30 = silk_LPC_inverse_pred_gain_Q24( AR2_Q24, psEnc->sCmn.shapingLPCOrder ); +        nrg         = silk_LPC_inverse_pred_gain_Q24( AR1_Q24, psEnc->sCmn.shapingLPCOrder ); + +        /*psEncCtrl->GainsPre[ k ] = 1.0f - 0.7f * ( 1.0f - pre_nrg / nrg ) = 0.3f + 0.7f * pre_nrg / nrg;*/ +        pre_nrg_Q30 = silk_LSHIFT32( silk_SMULWB( pre_nrg_Q30, SILK_FIX_CONST( 0.7, 15 ) ), 1 ); +        psEncCtrl->GainsPre_Q14[ k ] = ( opus_int ) SILK_FIX_CONST( 0.3, 14 ) + silk_DIV32_varQ( pre_nrg_Q30, nrg, 14 ); + +        /* Convert to monic warped prediction coefficients and limit absolute values */ +        limit_warped_coefs( AR2_Q24, AR1_Q24, warping_Q16, SILK_FIX_CONST( 3.999, 24 ), psEnc->sCmn.shapingLPCOrder ); + +        /* Convert from Q24 to Q13 and store in int16 */ +        for( i = 0; i < psEnc->sCmn.shapingLPCOrder; i++ ) { +            psEncCtrl->AR1_Q13[ k * MAX_SHAPE_LPC_ORDER + i ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( AR1_Q24[ i ], 11 ) ); +            psEncCtrl->AR2_Q13[ k * MAX_SHAPE_LPC_ORDER + i ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( AR2_Q24[ i ], 11 ) ); +        } +    } + +    /*****************/ +    /* Gain tweaking */ +    /*****************/ +    /* Increase gains during low speech activity and put lower limit on gains */ +    gain_mult_Q16 = silk_log2lin( -silk_SMLAWB( -SILK_FIX_CONST( 16.0, 7 ), SNR_adj_dB_Q7, SILK_FIX_CONST( 0.16, 16 ) ) ); +    gain_add_Q16  = silk_log2lin(  silk_SMLAWB(  SILK_FIX_CONST( 16.0, 7 ), SILK_FIX_CONST( MIN_QGAIN_DB, 7 ), SILK_FIX_CONST( 0.16, 16 ) ) ); +    silk_assert( gain_mult_Q16 > 0 ); +    for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) { +        psEncCtrl->Gains_Q16[ k ] = silk_SMULWW( psEncCtrl->Gains_Q16[ k ], gain_mult_Q16 ); +        silk_assert( psEncCtrl->Gains_Q16[ k ] >= 0 ); +        psEncCtrl->Gains_Q16[ k ] = silk_ADD_POS_SAT32( psEncCtrl->Gains_Q16[ k ], gain_add_Q16 ); +    } + +    gain_mult_Q16 = SILK_FIX_CONST( 1.0, 16 ) + silk_RSHIFT_ROUND( silk_MLA( SILK_FIX_CONST( INPUT_TILT, 26 ), +        psEncCtrl->coding_quality_Q14, SILK_FIX_CONST( HIGH_RATE_INPUT_TILT, 12 ) ), 10 ); +    for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) { +        psEncCtrl->GainsPre_Q14[ k ] = silk_SMULWB( gain_mult_Q16, psEncCtrl->GainsPre_Q14[ k ] ); +    } + +    /************************************************/ +    /* Control low-frequency shaping and noise tilt */ +    /************************************************/ +    /* Less low frequency shaping for noisy inputs */ +    strength_Q16 = silk_MUL( SILK_FIX_CONST( LOW_FREQ_SHAPING, 4 ), silk_SMLAWB( SILK_FIX_CONST( 1.0, 12 ), +        SILK_FIX_CONST( LOW_QUALITY_LOW_FREQ_SHAPING_DECR, 13 ), psEnc->sCmn.input_quality_bands_Q15[ 0 ] - SILK_FIX_CONST( 1.0, 15 ) ) ); +    strength_Q16 = silk_RSHIFT( silk_MUL( strength_Q16, psEnc->sCmn.speech_activity_Q8 ), 8 ); +    if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) { +        /* Reduce low frequencies quantization noise for periodic signals, depending on pitch lag */ +        /*f = 400; freqz([1, -0.98 + 2e-4 * f], [1, -0.97 + 7e-4 * f], 2^12, Fs); axis([0, 1000, -10, 1])*/ +        opus_int fs_kHz_inv = silk_DIV32_16( SILK_FIX_CONST( 0.2, 14 ), psEnc->sCmn.fs_kHz ); +        for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) { +            b_Q14 = fs_kHz_inv + silk_DIV32_16( SILK_FIX_CONST( 3.0, 14 ), psEncCtrl->pitchL[ k ] ); +            /* Pack two coefficients in one int32 */ +            psEncCtrl->LF_shp_Q14[ k ]  = silk_LSHIFT( SILK_FIX_CONST( 1.0, 14 ) - b_Q14 - silk_SMULWB( strength_Q16, b_Q14 ), 16 ); +            psEncCtrl->LF_shp_Q14[ k ] |= (opus_uint16)( b_Q14 - SILK_FIX_CONST( 1.0, 14 ) ); +        } +        silk_assert( SILK_FIX_CONST( HARM_HP_NOISE_COEF, 24 ) < SILK_FIX_CONST( 0.5, 24 ) ); /* Guarantees that second argument to SMULWB() is within range of an opus_int16*/ +        Tilt_Q16 = - SILK_FIX_CONST( HP_NOISE_COEF, 16 ) - +            silk_SMULWB( SILK_FIX_CONST( 1.0, 16 ) - SILK_FIX_CONST( HP_NOISE_COEF, 16 ), +                silk_SMULWB( SILK_FIX_CONST( HARM_HP_NOISE_COEF, 24 ), psEnc->sCmn.speech_activity_Q8 ) ); +    } else { +        b_Q14 = silk_DIV32_16( 21299, psEnc->sCmn.fs_kHz ); /* 1.3_Q0 = 21299_Q14*/ +        /* Pack two coefficients in one int32 */ +        psEncCtrl->LF_shp_Q14[ 0 ]  = silk_LSHIFT( SILK_FIX_CONST( 1.0, 14 ) - b_Q14 - +            silk_SMULWB( strength_Q16, silk_SMULWB( SILK_FIX_CONST( 0.6, 16 ), b_Q14 ) ), 16 ); +        psEncCtrl->LF_shp_Q14[ 0 ] |= (opus_uint16)( b_Q14 - SILK_FIX_CONST( 1.0, 14 ) ); +        for( k = 1; k < psEnc->sCmn.nb_subfr; k++ ) { +            psEncCtrl->LF_shp_Q14[ k ] = psEncCtrl->LF_shp_Q14[ 0 ]; +        } +        Tilt_Q16 = -SILK_FIX_CONST( HP_NOISE_COEF, 16 ); +    } + +    /****************************/ +    /* HARMONIC SHAPING CONTROL */ +    /****************************/ +    /* Control boosting of harmonic frequencies */ +    HarmBoost_Q16 = silk_SMULWB( silk_SMULWB( SILK_FIX_CONST( 1.0, 17 ) - silk_LSHIFT( psEncCtrl->coding_quality_Q14, 3 ), +        psEnc->LTPCorr_Q15 ), SILK_FIX_CONST( LOW_RATE_HARMONIC_BOOST, 16 ) ); + +    /* More harmonic boost for noisy input signals */ +    HarmBoost_Q16 = silk_SMLAWB( HarmBoost_Q16, +        SILK_FIX_CONST( 1.0, 16 ) - silk_LSHIFT( psEncCtrl->input_quality_Q14, 2 ), SILK_FIX_CONST( LOW_INPUT_QUALITY_HARMONIC_BOOST, 16 ) ); + +    if( USE_HARM_SHAPING && psEnc->sCmn.indices.signalType == TYPE_VOICED ) { +        /* More harmonic noise shaping for high bitrates or noisy input */ +        HarmShapeGain_Q16 = silk_SMLAWB( SILK_FIX_CONST( HARMONIC_SHAPING, 16 ), +                SILK_FIX_CONST( 1.0, 16 ) - silk_SMULWB( SILK_FIX_CONST( 1.0, 18 ) - silk_LSHIFT( psEncCtrl->coding_quality_Q14, 4 ), +                psEncCtrl->input_quality_Q14 ), SILK_FIX_CONST( HIGH_RATE_OR_LOW_QUALITY_HARMONIC_SHAPING, 16 ) ); + +        /* Less harmonic noise shaping for less periodic signals */ +        HarmShapeGain_Q16 = silk_SMULWB( silk_LSHIFT( HarmShapeGain_Q16, 1 ), +            silk_SQRT_APPROX( silk_LSHIFT( psEnc->LTPCorr_Q15, 15 ) ) ); +    } else { +        HarmShapeGain_Q16 = 0; +    } + +    /*************************/ +    /* Smooth over subframes */ +    /*************************/ +    for( k = 0; k < MAX_NB_SUBFR; k++ ) { +        psShapeSt->HarmBoost_smth_Q16 = +            silk_SMLAWB( psShapeSt->HarmBoost_smth_Q16,     HarmBoost_Q16     - psShapeSt->HarmBoost_smth_Q16,     SILK_FIX_CONST( SUBFR_SMTH_COEF, 16 ) ); +        psShapeSt->HarmShapeGain_smth_Q16 = +            silk_SMLAWB( psShapeSt->HarmShapeGain_smth_Q16, HarmShapeGain_Q16 - psShapeSt->HarmShapeGain_smth_Q16, SILK_FIX_CONST( SUBFR_SMTH_COEF, 16 ) ); +        psShapeSt->Tilt_smth_Q16 = +            silk_SMLAWB( psShapeSt->Tilt_smth_Q16,          Tilt_Q16          - psShapeSt->Tilt_smth_Q16,          SILK_FIX_CONST( SUBFR_SMTH_COEF, 16 ) ); + +        psEncCtrl->HarmBoost_Q14[ k ]     = ( opus_int )silk_RSHIFT_ROUND( psShapeSt->HarmBoost_smth_Q16,     2 ); +        psEncCtrl->HarmShapeGain_Q14[ k ] = ( opus_int )silk_RSHIFT_ROUND( psShapeSt->HarmShapeGain_smth_Q16, 2 ); +        psEncCtrl->Tilt_Q14[ k ]          = ( opus_int )silk_RSHIFT_ROUND( psShapeSt->Tilt_smth_Q16,          2 ); +    } +} diff --git a/src/opus-1.0.2/silk/fixed/pitch_analysis_core_FIX.c b/src/opus-1.0.2/silk/fixed/pitch_analysis_core_FIX.c new file mode 100644 index 00000000..d43f444d --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/pitch_analysis_core_FIX.c @@ -0,0 +1,745 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +/*********************************************************** +* Pitch analyser function +********************************************************** */ +#include "SigProc_FIX.h" +#include "pitch_est_defines.h" +#include "debug.h" + +#define SCRATCH_SIZE    22 + +/************************************************************/ +/* Internally used functions                                */ +/************************************************************/ +void silk_P_Ana_calc_corr_st3( +    opus_int32        cross_corr_st3[ PE_MAX_NB_SUBFR ][ PE_NB_CBKS_STAGE3_MAX ][ PE_NB_STAGE3_LAGS ],/* (O) 3 DIM correlation array */ +    const opus_int16  frame[],                         /* I vector to correlate         */ +    opus_int          start_lag,                       /* I lag offset to search around */ +    opus_int          sf_length,                       /* I length of a 5 ms subframe   */ +    opus_int          nb_subfr,                        /* I number of subframes         */ +    opus_int          complexity                       /* I Complexity setting          */ +); + +void silk_P_Ana_calc_energy_st3( +    opus_int32        energies_st3[ PE_MAX_NB_SUBFR ][ PE_NB_CBKS_STAGE3_MAX ][ PE_NB_STAGE3_LAGS ],/* (O) 3 DIM energy array */ +    const opus_int16  frame[],                         /* I vector to calc energy in    */ +    opus_int          start_lag,                       /* I lag offset to search around */ +    opus_int          sf_length,                       /* I length of one 5 ms subframe */ +    opus_int          nb_subfr,                        /* I number of subframes         */ +    opus_int          complexity                       /* I Complexity setting          */ +); + +opus_int32 silk_P_Ana_find_scaling( +    const opus_int16  *frame, +    const opus_int    frame_length, +    const opus_int    sum_sqr_len +); + +/*************************************************************/ +/*      FIXED POINT CORE PITCH ANALYSIS FUNCTION             */ +/*************************************************************/ +opus_int silk_pitch_analysis_core(                  /* O    Voicing estimate: 0 voiced, 1 unvoiced                      */ +    const opus_int16            *frame,             /* I    Signal of length PE_FRAME_LENGTH_MS*Fs_kHz                  */ +    opus_int                    *pitch_out,         /* O    4 pitch lag values                                          */ +    opus_int16                  *lagIndex,          /* O    Lag Index                                                   */ +    opus_int8                   *contourIndex,      /* O    Pitch contour Index                                         */ +    opus_int                    *LTPCorr_Q15,       /* I/O  Normalized correlation; input: value from previous frame    */ +    opus_int                    prevLag,            /* I    Last lag of previous frame; set to zero is unvoiced         */ +    const opus_int32            search_thres1_Q16,  /* I    First stage threshold for lag candidates 0 - 1              */ +    const opus_int              search_thres2_Q15,  /* I    Final threshold for lag candidates 0 - 1                    */ +    const opus_int              Fs_kHz,             /* I    Sample frequency (kHz)                                      */ +    const opus_int              complexity,         /* I    Complexity setting, 0-2, where 2 is highest                 */ +    const opus_int              nb_subfr            /* I    number of 5 ms subframes                                    */ +) +{ +    opus_int16 frame_8kHz[ PE_MAX_FRAME_LENGTH_ST_2 ]; +    opus_int16 frame_4kHz[ PE_MAX_FRAME_LENGTH_ST_1 ]; +    opus_int32 filt_state[ 6 ]; +    opus_int32 scratch_mem[ 3 * PE_MAX_FRAME_LENGTH ]; +    opus_int16 *input_frame_ptr; +    opus_int   i, k, d, j; +    opus_int16 C[ PE_MAX_NB_SUBFR ][ ( PE_MAX_LAG >> 1 ) + 5 ]; +    const opus_int16 *target_ptr, *basis_ptr; +    opus_int32 cross_corr, normalizer, energy, shift, energy_basis, energy_target; +    opus_int   d_srch[ PE_D_SRCH_LENGTH ], Cmax, length_d_srch, length_d_comp; +    opus_int16 d_comp[ ( PE_MAX_LAG >> 1 ) + 5 ]; +    opus_int32 sum, threshold, temp32, lag_counter; +    opus_int   CBimax, CBimax_new, CBimax_old, lag, start_lag, end_lag, lag_new; +    opus_int32 CC[ PE_NB_CBKS_STAGE2_EXT ], CCmax, CCmax_b, CCmax_new_b, CCmax_new; +    opus_int32 energies_st3[  PE_MAX_NB_SUBFR ][ PE_NB_CBKS_STAGE3_MAX ][ PE_NB_STAGE3_LAGS ]; +    opus_int32 crosscorr_st3[ PE_MAX_NB_SUBFR ][ PE_NB_CBKS_STAGE3_MAX ][ PE_NB_STAGE3_LAGS ]; +    opus_int   frame_length, frame_length_8kHz, frame_length_4kHz, max_sum_sq_length; +    opus_int   sf_length, sf_length_8kHz, sf_length_4kHz; +    opus_int   min_lag, min_lag_8kHz, min_lag_4kHz; +    opus_int   max_lag, max_lag_8kHz, max_lag_4kHz; +    opus_int32 contour_bias_Q20, diff, lz, lshift; +    opus_int   nb_cbk_search, cbk_size; +    opus_int32 delta_lag_log2_sqr_Q7, lag_log2_Q7, prevLag_log2_Q7, prev_lag_bias_Q15, corr_thres_Q15; +    const opus_int8 *Lag_CB_ptr; +    /* Check for valid sampling frequency */ +    silk_assert( Fs_kHz == 8 || Fs_kHz == 12 || Fs_kHz == 16 ); + +    /* Check for valid complexity setting */ +    silk_assert( complexity >= SILK_PE_MIN_COMPLEX ); +    silk_assert( complexity <= SILK_PE_MAX_COMPLEX ); + +    silk_assert( search_thres1_Q16 >= 0 && search_thres1_Q16 <= (1<<16) ); +    silk_assert( search_thres2_Q15 >= 0 && search_thres2_Q15 <= (1<<15) ); + +    /* Set up frame lengths max / min lag for the sampling frequency */ +    frame_length      = ( PE_LTP_MEM_LENGTH_MS + nb_subfr * PE_SUBFR_LENGTH_MS ) * Fs_kHz; +    frame_length_4kHz = ( PE_LTP_MEM_LENGTH_MS + nb_subfr * PE_SUBFR_LENGTH_MS ) * 4; +    frame_length_8kHz = ( PE_LTP_MEM_LENGTH_MS + nb_subfr * PE_SUBFR_LENGTH_MS ) * 8; +    sf_length         = PE_SUBFR_LENGTH_MS * Fs_kHz; +    sf_length_4kHz    = PE_SUBFR_LENGTH_MS * 4; +    sf_length_8kHz    = PE_SUBFR_LENGTH_MS * 8; +    min_lag           = PE_MIN_LAG_MS * Fs_kHz; +    min_lag_4kHz      = PE_MIN_LAG_MS * 4; +    min_lag_8kHz      = PE_MIN_LAG_MS * 8; +    max_lag           = PE_MAX_LAG_MS * Fs_kHz - 1; +    max_lag_4kHz      = PE_MAX_LAG_MS * 4; +    max_lag_8kHz      = PE_MAX_LAG_MS * 8 - 1; + +    silk_memset( C, 0, sizeof( opus_int16 ) * nb_subfr * ( ( PE_MAX_LAG >> 1 ) + 5) ); + +    /* Resample from input sampled at Fs_kHz to 8 kHz */ +    if( Fs_kHz == 16 ) { +        silk_memset( filt_state, 0, 2 * sizeof( opus_int32 ) ); +        silk_resampler_down2( filt_state, frame_8kHz, frame, frame_length ); +    } else if( Fs_kHz == 12 ) { +        silk_memset( filt_state, 0, 6 * sizeof( opus_int32 ) ); +        silk_resampler_down2_3( filt_state, frame_8kHz, frame, frame_length ); +    } else { +        silk_assert( Fs_kHz == 8 ); +        silk_memcpy( frame_8kHz, frame, frame_length_8kHz * sizeof(opus_int16) ); +    } + +    /* Decimate again to 4 kHz */ +    silk_memset( filt_state, 0, 2 * sizeof( opus_int32 ) );/* Set state to zero */ +    silk_resampler_down2( filt_state, frame_4kHz, frame_8kHz, frame_length_8kHz ); + +    /* Low-pass filter */ +    for( i = frame_length_4kHz - 1; i > 0; i-- ) { +        frame_4kHz[ i ] = silk_ADD_SAT16( frame_4kHz[ i ], frame_4kHz[ i - 1 ] ); +    } + +    /******************************************************************************* +    ** Scale 4 kHz signal down to prevent correlations measures from overflowing +    ** find scaling as max scaling for each 8kHz(?) subframe +    *******************************************************************************/ + +    /* Inner product is calculated with different lengths, so scale for the worst case */ +    max_sum_sq_length = silk_max_32( sf_length_8kHz, silk_LSHIFT( sf_length_4kHz, 2 ) ); +    shift = silk_P_Ana_find_scaling( frame_4kHz, frame_length_4kHz, max_sum_sq_length ); +    if( shift > 0 ) { +        for( i = 0; i < frame_length_4kHz; i++ ) { +            frame_4kHz[ i ] = silk_RSHIFT( frame_4kHz[ i ], shift ); +        } +    } + +    /****************************************************************************** +    * FIRST STAGE, operating in 4 khz +    ******************************************************************************/ +    target_ptr = &frame_4kHz[ silk_LSHIFT( sf_length_4kHz, 2 ) ]; +    for( k = 0; k < nb_subfr >> 1; k++ ) { +        /* Check that we are within range of the array */ +        silk_assert( target_ptr >= frame_4kHz ); +        silk_assert( target_ptr + sf_length_8kHz <= frame_4kHz + frame_length_4kHz ); + +        basis_ptr = target_ptr - min_lag_4kHz; + +        /* Check that we are within range of the array */ +        silk_assert( basis_ptr >= frame_4kHz ); +        silk_assert( basis_ptr + sf_length_8kHz <= frame_4kHz + frame_length_4kHz ); + +        /* Calculate first vector products before loop */ +        cross_corr = silk_inner_prod_aligned( target_ptr, basis_ptr, sf_length_8kHz ); +        normalizer = silk_inner_prod_aligned( basis_ptr,  basis_ptr, sf_length_8kHz ); +        normalizer = silk_ADD_SAT32( normalizer, silk_SMULBB( sf_length_8kHz, 4000 ) ); + +        temp32 = silk_DIV32( cross_corr, silk_SQRT_APPROX( normalizer ) + 1 ); +        C[ k ][ min_lag_4kHz ] = (opus_int16)silk_SAT16( temp32 );        /* Q0 */ + +        /* From now on normalizer is computed recursively */ +        for( d = min_lag_4kHz + 1; d <= max_lag_4kHz; d++ ) { +            basis_ptr--; + +            /* Check that we are within range of the array */ +            silk_assert( basis_ptr >= frame_4kHz ); +            silk_assert( basis_ptr + sf_length_8kHz <= frame_4kHz + frame_length_4kHz ); + +            cross_corr = silk_inner_prod_aligned( target_ptr, basis_ptr, sf_length_8kHz ); + +            /* Add contribution of new sample and remove contribution from oldest sample */ +            normalizer += +                silk_SMULBB( basis_ptr[ 0 ], basis_ptr[ 0 ] ) - +                silk_SMULBB( basis_ptr[ sf_length_8kHz ], basis_ptr[ sf_length_8kHz ] ); + +            temp32 = silk_DIV32( cross_corr, silk_SQRT_APPROX( normalizer ) + 1 ); +            C[ k ][ d ] = (opus_int16)silk_SAT16( temp32 );                        /* Q0 */ +        } +        /* Update target pointer */ +        target_ptr += sf_length_8kHz; +    } + +    /* Combine two subframes into single correlation measure and apply short-lag bias */ +    if( nb_subfr == PE_MAX_NB_SUBFR ) { +        for( i = max_lag_4kHz; i >= min_lag_4kHz; i-- ) { +            sum = (opus_int32)C[ 0 ][ i ] + (opus_int32)C[ 1 ][ i ];                /* Q0 */ +            silk_assert( silk_RSHIFT( sum, 1 ) == silk_SAT16( silk_RSHIFT( sum, 1 ) ) ); +            sum = silk_RSHIFT( sum, 1 );                                           /* Q-1 */ +            silk_assert( silk_LSHIFT( (opus_int32)-i, 4 ) == silk_SAT16( silk_LSHIFT( (opus_int32)-i, 4 ) ) ); +            sum = silk_SMLAWB( sum, sum, silk_LSHIFT( -i, 4 ) );                    /* Q-1 */ +            silk_assert( sum == silk_SAT16( sum ) ); +            C[ 0 ][ i ] = (opus_int16)sum;                                         /* Q-1 */ +        } +    } else { +        /* Only short-lag bias */ +        for( i = max_lag_4kHz; i >= min_lag_4kHz; i-- ) { +            sum = (opus_int32)C[ 0 ][ i ]; +            sum = silk_SMLAWB( sum, sum, silk_LSHIFT( -i, 4 ) );                    /* Q-1 */ +            C[ 0 ][ i ] = (opus_int16)sum;                                         /* Q-1 */ +        } +    } + +    /* Sort */ +    length_d_srch = silk_ADD_LSHIFT32( 4, complexity, 1 ); +    silk_assert( 3 * length_d_srch <= PE_D_SRCH_LENGTH ); +    silk_insertion_sort_decreasing_int16( &C[ 0 ][ min_lag_4kHz ], d_srch, max_lag_4kHz - min_lag_4kHz + 1, length_d_srch ); + +    /* Escape if correlation is very low already here */ +    target_ptr = &frame_4kHz[ silk_SMULBB( sf_length_4kHz, nb_subfr ) ]; +    energy = silk_inner_prod_aligned( target_ptr, target_ptr, silk_LSHIFT( sf_length_4kHz, 2 ) ); +    energy = silk_ADD_SAT32( energy, 1000 );                                  /* Q0 */ +    Cmax = (opus_int)C[ 0 ][ min_lag_4kHz ];                                  /* Q-1 */ +    threshold = silk_SMULBB( Cmax, Cmax );                                    /* Q-2 */ + +    /* Compare in Q-2 domain */ +    if( silk_RSHIFT( energy, 4 + 2 ) > threshold ) { +        silk_memset( pitch_out, 0, nb_subfr * sizeof( opus_int ) ); +        *LTPCorr_Q15  = 0; +        *lagIndex     = 0; +        *contourIndex = 0; +        return 1; +    } + +    threshold = silk_SMULWB( search_thres1_Q16, Cmax ); +    for( i = 0; i < length_d_srch; i++ ) { +        /* Convert to 8 kHz indices for the sorted correlation that exceeds the threshold */ +        if( C[ 0 ][ min_lag_4kHz + i ] > threshold ) { +            d_srch[ i ] = silk_LSHIFT( d_srch[ i ] + min_lag_4kHz, 1 ); +        } else { +            length_d_srch = i; +            break; +        } +    } +    silk_assert( length_d_srch > 0 ); + +    for( i = min_lag_8kHz - 5; i < max_lag_8kHz + 5; i++ ) { +        d_comp[ i ] = 0; +    } +    for( i = 0; i < length_d_srch; i++ ) { +        d_comp[ d_srch[ i ] ] = 1; +    } + +    /* Convolution */ +    for( i = max_lag_8kHz + 3; i >= min_lag_8kHz; i-- ) { +        d_comp[ i ] += d_comp[ i - 1 ] + d_comp[ i - 2 ]; +    } + +    length_d_srch = 0; +    for( i = min_lag_8kHz; i < max_lag_8kHz + 1; i++ ) { +        if( d_comp[ i + 1 ] > 0 ) { +            d_srch[ length_d_srch ] = i; +            length_d_srch++; +        } +    } + +    /* Convolution */ +    for( i = max_lag_8kHz + 3; i >= min_lag_8kHz; i-- ) { +        d_comp[ i ] += d_comp[ i - 1 ] + d_comp[ i - 2 ] + d_comp[ i - 3 ]; +    } + +    length_d_comp = 0; +    for( i = min_lag_8kHz; i < max_lag_8kHz + 4; i++ ) { +        if( d_comp[ i ] > 0 ) { +            d_comp[ length_d_comp ] = i - 2; +            length_d_comp++; +        } +    } + +    /********************************************************************************** +    ** SECOND STAGE, operating at 8 kHz, on lag sections with high correlation +    *************************************************************************************/ + +    /****************************************************************************** +    ** Scale signal down to avoid correlations measures from overflowing +    *******************************************************************************/ +    /* find scaling as max scaling for each subframe */ +    shift = silk_P_Ana_find_scaling( frame_8kHz, frame_length_8kHz, sf_length_8kHz ); +    if( shift > 0 ) { +        for( i = 0; i < frame_length_8kHz; i++ ) { +            frame_8kHz[ i ] = silk_RSHIFT( frame_8kHz[ i ], shift ); +        } +    } + +    /********************************************************************************* +    * Find energy of each subframe projected onto its history, for a range of delays +    *********************************************************************************/ +    silk_memset( C, 0, PE_MAX_NB_SUBFR * ( ( PE_MAX_LAG >> 1 ) + 5 ) * sizeof( opus_int16 ) ); + +    target_ptr = &frame_8kHz[ PE_LTP_MEM_LENGTH_MS * 8 ]; +    for( k = 0; k < nb_subfr; k++ ) { + +        /* Check that we are within range of the array */ +        silk_assert( target_ptr >= frame_8kHz ); +        silk_assert( target_ptr + sf_length_8kHz <= frame_8kHz + frame_length_8kHz ); + +        energy_target = silk_inner_prod_aligned( target_ptr, target_ptr, sf_length_8kHz ); +        for( j = 0; j < length_d_comp; j++ ) { +            d = d_comp[ j ]; +            basis_ptr = target_ptr - d; + +            /* Check that we are within range of the array */ +            silk_assert( basis_ptr >= frame_8kHz ); +            silk_assert( basis_ptr + sf_length_8kHz <= frame_8kHz + frame_length_8kHz ); + +            cross_corr   = silk_inner_prod_aligned( target_ptr, basis_ptr, sf_length_8kHz ); +            energy_basis = silk_inner_prod_aligned( basis_ptr,  basis_ptr, sf_length_8kHz ); +            if( cross_corr > 0 ) { +                energy = silk_max( energy_target, energy_basis ); /* Find max to make sure first division < 1.0 */ +                lz = silk_CLZ32( cross_corr ); +                lshift = silk_LIMIT_32( lz - 1, 0, 15 ); +                temp32 = silk_DIV32( silk_LSHIFT( cross_corr, lshift ), silk_RSHIFT( energy, 15 - lshift ) + 1 ); /* Q15 */ +                silk_assert( temp32 == silk_SAT16( temp32 ) ); +                temp32 = silk_SMULWB( cross_corr, temp32 ); /* Q(-1), cc * ( cc / max(b, t) ) */ +                temp32 = silk_ADD_SAT32( temp32, temp32 );  /* Q(0) */ +                lz = silk_CLZ32( temp32 ); +                lshift = silk_LIMIT_32( lz - 1, 0, 15 ); +                energy = silk_min( energy_target, energy_basis ); +                C[ k ][ d ] = silk_DIV32( silk_LSHIFT( temp32, lshift ), silk_RSHIFT( energy, 15 - lshift ) + 1 ); /* Q15*/ +            } else { +                C[ k ][ d ] = 0; +            } +        } +        target_ptr += sf_length_8kHz; +    } + +    /* search over lag range and lags codebook */ +    /* scale factor for lag codebook, as a function of center lag */ + +    CCmax   = silk_int32_MIN; +    CCmax_b = silk_int32_MIN; + +    CBimax = 0; /* To avoid returning undefined lag values */ +    lag = -1;   /* To check if lag with strong enough correlation has been found */ + +    if( prevLag > 0 ) { +        if( Fs_kHz == 12 ) { +            prevLag = silk_DIV32_16( silk_LSHIFT( prevLag, 1 ), 3 ); +        } else if( Fs_kHz == 16 ) { +            prevLag = silk_RSHIFT( prevLag, 1 ); +        } +        prevLag_log2_Q7 = silk_lin2log( (opus_int32)prevLag ); +    } else { +        prevLag_log2_Q7 = 0; +    } +    silk_assert( search_thres2_Q15 == silk_SAT16( search_thres2_Q15 ) ); +    /* Set up stage 2 codebook based on number of subframes */ +    if( nb_subfr == PE_MAX_NB_SUBFR ) { +        cbk_size   = PE_NB_CBKS_STAGE2_EXT; +        Lag_CB_ptr = &silk_CB_lags_stage2[ 0 ][ 0 ]; +        if( Fs_kHz == 8 && complexity > SILK_PE_MIN_COMPLEX ) { +            /* If input is 8 khz use a larger codebook here because it is last stage */ +            nb_cbk_search = PE_NB_CBKS_STAGE2_EXT; +        } else { +            nb_cbk_search = PE_NB_CBKS_STAGE2; +        } +        corr_thres_Q15 = silk_RSHIFT( silk_SMULBB( search_thres2_Q15, search_thres2_Q15 ), 13 ); +    } else { +        cbk_size       = PE_NB_CBKS_STAGE2_10MS; +        Lag_CB_ptr     = &silk_CB_lags_stage2_10_ms[ 0 ][ 0 ]; +        nb_cbk_search  = PE_NB_CBKS_STAGE2_10MS; +        corr_thres_Q15 = silk_RSHIFT( silk_SMULBB( search_thres2_Q15, search_thres2_Q15 ), 14 ); +    } + +    for( k = 0; k < length_d_srch; k++ ) { +        d = d_srch[ k ]; +        for( j = 0; j < nb_cbk_search; j++ ) { +            CC[ j ] = 0; +            for( i = 0; i < nb_subfr; i++ ) { +                /* Try all codebooks */ +                CC[ j ] = CC[ j ] + (opus_int32)C[ i ][ d + matrix_ptr( Lag_CB_ptr, i, j, cbk_size )]; +            } +        } +        /* Find best codebook */ +        CCmax_new = silk_int32_MIN; +        CBimax_new = 0; +        for( i = 0; i < nb_cbk_search; i++ ) { +            if( CC[ i ] > CCmax_new ) { +                CCmax_new = CC[ i ]; +                CBimax_new = i; +            } +        } + +        /* Bias towards shorter lags */ +        lag_log2_Q7 = silk_lin2log( (opus_int32)d ); /* Q7 */ +        silk_assert( lag_log2_Q7 == silk_SAT16( lag_log2_Q7 ) ); +        silk_assert( nb_subfr * SILK_FIX_CONST( PE_SHORTLAG_BIAS, 15 ) == silk_SAT16( nb_subfr * SILK_FIX_CONST( PE_SHORTLAG_BIAS, 15 ) ) ); +        CCmax_new_b = CCmax_new - silk_RSHIFT( silk_SMULBB( nb_subfr * SILK_FIX_CONST( PE_SHORTLAG_BIAS, 15 ), lag_log2_Q7 ), 7 ); /* Q15 */ + +        /* Bias towards previous lag */ +        silk_assert( nb_subfr * SILK_FIX_CONST( PE_PREVLAG_BIAS, 15 ) == silk_SAT16( nb_subfr * SILK_FIX_CONST( PE_PREVLAG_BIAS, 15 ) ) ); +        if( prevLag > 0 ) { +            delta_lag_log2_sqr_Q7 = lag_log2_Q7 - prevLag_log2_Q7; +            silk_assert( delta_lag_log2_sqr_Q7 == silk_SAT16( delta_lag_log2_sqr_Q7 ) ); +            delta_lag_log2_sqr_Q7 = silk_RSHIFT( silk_SMULBB( delta_lag_log2_sqr_Q7, delta_lag_log2_sqr_Q7 ), 7 ); +            prev_lag_bias_Q15 = silk_RSHIFT( silk_SMULBB( nb_subfr * SILK_FIX_CONST( PE_PREVLAG_BIAS, 15 ), *LTPCorr_Q15 ), 15 ); /* Q15 */ +            prev_lag_bias_Q15 = silk_DIV32( silk_MUL( prev_lag_bias_Q15, delta_lag_log2_sqr_Q7 ), delta_lag_log2_sqr_Q7 + ( 1 << 6 ) ); +            CCmax_new_b -= prev_lag_bias_Q15; /* Q15 */ +        } + +        if( CCmax_new_b > CCmax_b                                   &&  /* Find maximum biased correlation                  */ +            CCmax_new > corr_thres_Q15                              &&  /* Correlation needs to be high enough to be voiced */ +            silk_CB_lags_stage2[ 0 ][ CBimax_new ] <= min_lag_8kHz      /* Lag must be in range                             */ +         ) { +            CCmax_b = CCmax_new_b; +            CCmax   = CCmax_new; +            lag     = d; +            CBimax  = CBimax_new; +        } +    } + +    if( lag == -1 ) { +        /* No suitable candidate found */ +        silk_memset( pitch_out, 0, nb_subfr * sizeof( opus_int ) ); +        *LTPCorr_Q15  = 0; +        *lagIndex     = 0; +        *contourIndex = 0; +        return 1; +    } + +    if( Fs_kHz > 8 ) { +        /***************************************************************************/ +        /* Scale input signal down to avoid correlations measures from overflowing */ +        /***************************************************************************/ +        /* find scaling as max scaling for each subframe */ +        shift = silk_P_Ana_find_scaling( frame, frame_length, sf_length ); +        if( shift > 0 ) { +            /* Move signal to scratch mem because the input signal should be unchanged */ +            /* Reuse the 32 bit scratch mem vector, use a 16 bit pointer from now */ +            input_frame_ptr = (opus_int16*)scratch_mem; +            for( i = 0; i < frame_length; i++ ) { +                input_frame_ptr[ i ] = silk_RSHIFT( frame[ i ], shift ); +            } +        } else { +            input_frame_ptr = (opus_int16*)frame; +        } + +        /* Search in original signal */ + +        CBimax_old = CBimax; +        /* Compensate for decimation */ +        silk_assert( lag == silk_SAT16( lag ) ); +        if( Fs_kHz == 12 ) { +            lag = silk_RSHIFT( silk_SMULBB( lag, 3 ), 1 ); +        } else if( Fs_kHz == 16 ) { +            lag = silk_LSHIFT( lag, 1 ); +        } else { +            lag = silk_SMULBB( lag, 3 ); +        } + +        lag = silk_LIMIT_int( lag, min_lag, max_lag ); +        start_lag = silk_max_int( lag - 2, min_lag ); +        end_lag   = silk_min_int( lag + 2, max_lag ); +        lag_new   = lag;                                    /* to avoid undefined lag */ +        CBimax    = 0;                                        /* to avoid undefined lag */ +        silk_assert( silk_LSHIFT( CCmax, 13 ) >= 0 ); +        *LTPCorr_Q15 = (opus_int)silk_SQRT_APPROX( silk_LSHIFT( CCmax, 13 ) ); /* Output normalized correlation */ + +        CCmax = silk_int32_MIN; +        /* pitch lags according to second stage */ +        for( k = 0; k < nb_subfr; k++ ) { +            pitch_out[ k ] = lag + 2 * silk_CB_lags_stage2[ k ][ CBimax_old ]; +        } +        /* Calculate the correlations and energies needed in stage 3 */ +        silk_P_Ana_calc_corr_st3(  crosscorr_st3, input_frame_ptr, start_lag, sf_length, nb_subfr, complexity ); +        silk_P_Ana_calc_energy_st3( energies_st3, input_frame_ptr, start_lag, sf_length, nb_subfr, complexity ); + +        lag_counter = 0; +        silk_assert( lag == silk_SAT16( lag ) ); +        contour_bias_Q20 = silk_DIV32_16( SILK_FIX_CONST( PE_FLATCONTOUR_BIAS, 20 ), lag ); + +        /* Set up codebook parameters according to complexity setting and frame length */ +        if( nb_subfr == PE_MAX_NB_SUBFR ) { +            nb_cbk_search   = (opus_int)silk_nb_cbk_searchs_stage3[ complexity ]; +            cbk_size        = PE_NB_CBKS_STAGE3_MAX; +            Lag_CB_ptr      = &silk_CB_lags_stage3[ 0 ][ 0 ]; +        } else { +            nb_cbk_search   = PE_NB_CBKS_STAGE3_10MS; +            cbk_size        = PE_NB_CBKS_STAGE3_10MS; +            Lag_CB_ptr      = &silk_CB_lags_stage3_10_ms[ 0 ][ 0 ]; +        } +        for( d = start_lag; d <= end_lag; d++ ) { +            for( j = 0; j < nb_cbk_search; j++ ) { +                cross_corr = 0; +                energy     = 0; +                for( k = 0; k < nb_subfr; k++ ) { +                    silk_assert( PE_MAX_NB_SUBFR == 4 ); +                    energy     += silk_RSHIFT( energies_st3[  k ][ j ][ lag_counter ], 2 ); /* use mean, to avoid overflow */ +                    silk_assert( energy >= 0 ); +                    cross_corr += silk_RSHIFT( crosscorr_st3[ k ][ j ][ lag_counter ], 2 ); /* use mean, to avoid overflow */ +                } +                if( cross_corr > 0 ) { +                    /* Divide cross_corr / energy and get result in Q15 */ +                    lz = silk_CLZ32( cross_corr ); +                    /* Divide with result in Q13, cross_corr could be larger than energy */ +                    lshift = silk_LIMIT_32( lz - 1, 0, 13 ); +                    CCmax_new = silk_DIV32( silk_LSHIFT( cross_corr, lshift ), silk_RSHIFT( energy, 13 - lshift ) + 1 ); +                    CCmax_new = silk_SAT16( CCmax_new ); +                    CCmax_new = silk_SMULWB( cross_corr, CCmax_new ); +                    /* Saturate */ +                    if( CCmax_new > silk_RSHIFT( silk_int32_MAX, 3 ) ) { +                        CCmax_new = silk_int32_MAX; +                    } else { +                        CCmax_new = silk_LSHIFT( CCmax_new, 3 ); +                    } +                    /* Reduce depending on flatness of contour */ +                    diff = silk_int16_MAX - silk_RSHIFT( silk_MUL( contour_bias_Q20, j ), 5 ); /* Q20 -> Q15 */ +                    silk_assert( diff == silk_SAT16( diff ) ); +                    CCmax_new = silk_LSHIFT( silk_SMULWB( CCmax_new, diff ), 1 ); +                } else { +                    CCmax_new = 0; +                } + +                if( CCmax_new > CCmax                                               && +                   ( d + silk_CB_lags_stage3[ 0 ][ j ] ) <= max_lag +                   ) { +                    CCmax   = CCmax_new; +                    lag_new = d; +                    CBimax  = j; +                } +            } +            lag_counter++; +        } + +        for( k = 0; k < nb_subfr; k++ ) { +            pitch_out[ k ] = lag_new + matrix_ptr( Lag_CB_ptr, k, CBimax, cbk_size ); +            pitch_out[ k ] = silk_LIMIT( pitch_out[ k ], min_lag, PE_MAX_LAG_MS * Fs_kHz ); +        } +        *lagIndex = (opus_int16)( lag_new - min_lag); +        *contourIndex = (opus_int8)CBimax; +    } else {        /* Fs_kHz == 8 */ +        /* Save Lags and correlation */ +        CCmax = silk_max( CCmax, 0 ); +        *LTPCorr_Q15 = (opus_int)silk_SQRT_APPROX( silk_LSHIFT( CCmax, 13 ) ); /* Output normalized correlation */ +        for( k = 0; k < nb_subfr; k++ ) { +            pitch_out[ k ] = lag + matrix_ptr( Lag_CB_ptr, k, CBimax, cbk_size ); +            pitch_out[ k ] = silk_LIMIT( pitch_out[ k ], min_lag_8kHz, PE_MAX_LAG_MS * Fs_kHz ); +        } +        *lagIndex = (opus_int16)( lag - min_lag_8kHz ); +        *contourIndex = (opus_int8)CBimax; +    } +    silk_assert( *lagIndex >= 0 ); +    /* return as voiced */ +    return 0; +} + +/*************************************************************************/ +/* Calculates the correlations used in stage 3 search. In order to cover */ +/* the whole lag codebook for all the searched offset lags (lag +- 2),   */ +/*************************************************************************/ +void silk_P_Ana_calc_corr_st3( +    opus_int32        cross_corr_st3[ PE_MAX_NB_SUBFR ][ PE_NB_CBKS_STAGE3_MAX ][ PE_NB_STAGE3_LAGS ],/* (O) 3 DIM correlation array */ +    const opus_int16  frame[],                         /* I vector to correlate         */ +    opus_int          start_lag,                       /* I lag offset to search around */ +    opus_int          sf_length,                       /* I length of a 5 ms subframe   */ +    opus_int          nb_subfr,                        /* I number of subframes         */ +    opus_int          complexity                       /* I Complexity setting          */ +) +{ +    const opus_int16 *target_ptr, *basis_ptr; +    opus_int32 cross_corr; +    opus_int   i, j, k, lag_counter, lag_low, lag_high; +    opus_int   nb_cbk_search, delta, idx, cbk_size; +    opus_int32 scratch_mem[ SCRATCH_SIZE ]; +    const opus_int8 *Lag_range_ptr, *Lag_CB_ptr; + +    silk_assert( complexity >= SILK_PE_MIN_COMPLEX ); +    silk_assert( complexity <= SILK_PE_MAX_COMPLEX ); + +    if( nb_subfr == PE_MAX_NB_SUBFR ) { +        Lag_range_ptr = &silk_Lag_range_stage3[ complexity ][ 0 ][ 0 ]; +        Lag_CB_ptr    = &silk_CB_lags_stage3[ 0 ][ 0 ]; +        nb_cbk_search = silk_nb_cbk_searchs_stage3[ complexity ]; +        cbk_size      = PE_NB_CBKS_STAGE3_MAX; +    } else { +        silk_assert( nb_subfr == PE_MAX_NB_SUBFR >> 1); +        Lag_range_ptr = &silk_Lag_range_stage3_10_ms[ 0 ][ 0 ]; +        Lag_CB_ptr    = &silk_CB_lags_stage3_10_ms[ 0 ][ 0 ]; +        nb_cbk_search = PE_NB_CBKS_STAGE3_10MS; +        cbk_size      = PE_NB_CBKS_STAGE3_10MS; +    } + +    target_ptr = &frame[ silk_LSHIFT( sf_length, 2 ) ]; /* Pointer to middle of frame */ +    for( k = 0; k < nb_subfr; k++ ) { +        lag_counter = 0; + +        /* Calculate the correlations for each subframe */ +        lag_low  = matrix_ptr( Lag_range_ptr, k, 0, 2 ); +        lag_high = matrix_ptr( Lag_range_ptr, k, 1, 2 ); +        for( j = lag_low; j <= lag_high; j++ ) { +            basis_ptr = target_ptr - ( start_lag + j ); +            cross_corr = silk_inner_prod_aligned( (opus_int16*)target_ptr, (opus_int16*)basis_ptr, sf_length ); +            silk_assert( lag_counter < SCRATCH_SIZE ); +            scratch_mem[ lag_counter ] = cross_corr; +            lag_counter++; +        } + +        delta = matrix_ptr( Lag_range_ptr, k, 0, 2 ); +        for( i = 0; i < nb_cbk_search; i++ ) { +            /* Fill out the 3 dim array that stores the correlations for */ +            /* each code_book vector for each start lag */ +            idx = matrix_ptr( Lag_CB_ptr, k, i, cbk_size ) - delta; +            for( j = 0; j < PE_NB_STAGE3_LAGS; j++ ) { +                silk_assert( idx + j < SCRATCH_SIZE ); +                silk_assert( idx + j < lag_counter ); +                cross_corr_st3[ k ][ i ][ j ] = scratch_mem[ idx + j ]; +            } +        } +        target_ptr += sf_length; +    } +} + +/********************************************************************/ +/* Calculate the energies for first two subframes. The energies are */ +/* calculated recursively.                                          */ +/********************************************************************/ +void silk_P_Ana_calc_energy_st3( +    opus_int32        energies_st3[ PE_MAX_NB_SUBFR ][ PE_NB_CBKS_STAGE3_MAX ][ PE_NB_STAGE3_LAGS ],/* (O) 3 DIM energy array */ +    const opus_int16  frame[],                         /* I vector to calc energy in    */ +    opus_int          start_lag,                       /* I lag offset to search around */ +    opus_int          sf_length,                       /* I length of one 5 ms subframe */ +    opus_int          nb_subfr,                     /* I number of subframes         */ +    opus_int          complexity                       /* I Complexity setting          */ +) +{ +    const opus_int16 *target_ptr, *basis_ptr; +    opus_int32 energy; +    opus_int   k, i, j, lag_counter; +    opus_int   nb_cbk_search, delta, idx, cbk_size, lag_diff; +    opus_int32 scratch_mem[ SCRATCH_SIZE ]; +    const opus_int8 *Lag_range_ptr, *Lag_CB_ptr; + +    silk_assert( complexity >= SILK_PE_MIN_COMPLEX ); +    silk_assert( complexity <= SILK_PE_MAX_COMPLEX ); + +    if( nb_subfr == PE_MAX_NB_SUBFR ) { +        Lag_range_ptr = &silk_Lag_range_stage3[ complexity ][ 0 ][ 0 ]; +        Lag_CB_ptr    = &silk_CB_lags_stage3[ 0 ][ 0 ]; +        nb_cbk_search = silk_nb_cbk_searchs_stage3[ complexity ]; +        cbk_size      = PE_NB_CBKS_STAGE3_MAX; +    } else { +        silk_assert( nb_subfr == PE_MAX_NB_SUBFR >> 1); +        Lag_range_ptr = &silk_Lag_range_stage3_10_ms[ 0 ][ 0 ]; +        Lag_CB_ptr    = &silk_CB_lags_stage3_10_ms[ 0 ][ 0 ]; +        nb_cbk_search = PE_NB_CBKS_STAGE3_10MS; +        cbk_size      = PE_NB_CBKS_STAGE3_10MS; +    } +    target_ptr = &frame[ silk_LSHIFT( sf_length, 2 ) ]; +    for( k = 0; k < nb_subfr; k++ ) { +        lag_counter = 0; + +        /* Calculate the energy for first lag */ +        basis_ptr = target_ptr - ( start_lag + matrix_ptr( Lag_range_ptr, k, 0, 2 ) ); +        energy = silk_inner_prod_aligned( basis_ptr, basis_ptr, sf_length ); +        silk_assert( energy >= 0 ); +        scratch_mem[ lag_counter ] = energy; +        lag_counter++; + +        lag_diff = ( matrix_ptr( Lag_range_ptr, k, 1, 2 ) -  matrix_ptr( Lag_range_ptr, k, 0, 2 ) + 1 ); +        for( i = 1; i < lag_diff; i++ ) { +            /* remove part outside new window */ +            energy -= silk_SMULBB( basis_ptr[ sf_length - i ], basis_ptr[ sf_length - i ] ); +            silk_assert( energy >= 0 ); + +            /* add part that comes into window */ +            energy = silk_ADD_SAT32( energy, silk_SMULBB( basis_ptr[ -i ], basis_ptr[ -i ] ) ); +            silk_assert( energy >= 0 ); +            silk_assert( lag_counter < SCRATCH_SIZE ); +            scratch_mem[ lag_counter ] = energy; +            lag_counter++; +        } + +        delta = matrix_ptr( Lag_range_ptr, k, 0, 2 ); +        for( i = 0; i < nb_cbk_search; i++ ) { +            /* Fill out the 3 dim array that stores the correlations for    */ +            /* each code_book vector for each start lag                     */ +            idx = matrix_ptr( Lag_CB_ptr, k, i, cbk_size ) - delta; +            for( j = 0; j < PE_NB_STAGE3_LAGS; j++ ) { +                silk_assert( idx + j < SCRATCH_SIZE ); +                silk_assert( idx + j < lag_counter ); +                energies_st3[ k ][ i ][ j ] = scratch_mem[ idx + j ]; +                silk_assert( energies_st3[ k ][ i ][ j ] >= 0 ); +            } +        } +        target_ptr += sf_length; +    } +} + +opus_int32 silk_P_Ana_find_scaling( +    const opus_int16  *frame, +    const opus_int    frame_length, +    const opus_int    sum_sqr_len +) +{ +    opus_int32 nbits, x_max; + +    x_max = silk_int16_array_maxabs( frame, frame_length ); + +    if( x_max < silk_int16_MAX ) { +        /* Number of bits needed for the sum of the squares */ +        nbits = 32 - silk_CLZ32( silk_SMULBB( x_max, x_max ) ); +    } else { +        /* Here we don't know if x_max should have been silk_int16_MAX + 1, so we expect the worst case */ +        nbits = 30; +    } +    nbits += 17 - silk_CLZ16( sum_sqr_len ); + +    /* Without a guarantee of saturation, we need to keep the 31st bit free */ +    if( nbits < 31 ) { +        return 0; +    } else { +        return( nbits - 30 ); +    } +} diff --git a/src/opus-1.0.2/silk/fixed/prefilter_FIX.c b/src/opus-1.0.2/silk/fixed/prefilter_FIX.c new file mode 100644 index 00000000..a96f5118 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/prefilter_FIX.c @@ -0,0 +1,204 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" +#include "tuning_parameters.h" + +/* Prefilter for finding Quantizer input signal */ +static inline void silk_prefilt_FIX( +    silk_prefilter_state_FIX    *P,                         /* I/O  state                               */ +    opus_int32                  st_res_Q12[],               /* I    short term residual signal          */ +    opus_int32                  xw_Q3[],                    /* O    prefiltered signal                  */ +    opus_int32                  HarmShapeFIRPacked_Q12,     /* I    Harmonic shaping coeficients        */ +    opus_int                    Tilt_Q14,                   /* I    Tilt shaping coeficient             */ +    opus_int32                  LF_shp_Q14,                 /* I    Low-frequancy shaping coeficients   */ +    opus_int                    lag,                        /* I    Lag for harmonic shaping            */ +    opus_int                    length                      /* I    Length of signals                   */ +); + +void silk_warped_LPC_analysis_filter_FIX( +          opus_int32            state[],                    /* I/O  State [order + 1]                   */ +          opus_int32            res_Q2[],                   /* O    Residual signal [length]            */ +    const opus_int16            coef_Q13[],                 /* I    Coefficients [order]                */ +    const opus_int16            input[],                    /* I    Input signal [length]               */ +    const opus_int16            lambda_Q16,                 /* I    Warping factor                      */ +    const opus_int              length,                     /* I    Length of input signal              */ +    const opus_int              order                       /* I    Filter order (even)                 */ +) +{ +    opus_int     n, i; +    opus_int32   acc_Q11, tmp1, tmp2; + +    /* Order must be even */ +    silk_assert( ( order & 1 ) == 0 ); + +    for( n = 0; n < length; n++ ) { +        /* Output of lowpass section */ +        tmp2 = silk_SMLAWB( state[ 0 ], state[ 1 ], lambda_Q16 ); +        state[ 0 ] = silk_LSHIFT( input[ n ], 14 ); +        /* Output of allpass section */ +        tmp1 = silk_SMLAWB( state[ 1 ], state[ 2 ] - tmp2, lambda_Q16 ); +        state[ 1 ] = tmp2; +        acc_Q11 = silk_RSHIFT( order, 1 ); +        acc_Q11 = silk_SMLAWB( acc_Q11, tmp2, coef_Q13[ 0 ] ); +        /* Loop over allpass sections */ +        for( i = 2; i < order; i += 2 ) { +            /* Output of allpass section */ +            tmp2 = silk_SMLAWB( state[ i ], state[ i + 1 ] - tmp1, lambda_Q16 ); +            state[ i ] = tmp1; +            acc_Q11 = silk_SMLAWB( acc_Q11, tmp1, coef_Q13[ i - 1 ] ); +            /* Output of allpass section */ +            tmp1 = silk_SMLAWB( state[ i + 1 ], state[ i + 2 ] - tmp2, lambda_Q16 ); +            state[ i + 1 ] = tmp2; +            acc_Q11 = silk_SMLAWB( acc_Q11, tmp2, coef_Q13[ i ] ); +        } +        state[ order ] = tmp1; +        acc_Q11 = silk_SMLAWB( acc_Q11, tmp1, coef_Q13[ order - 1 ] ); +        res_Q2[ n ] = silk_LSHIFT( (opus_int32)input[ n ], 2 ) - silk_RSHIFT_ROUND( acc_Q11, 9 ); +    } +} + +void silk_prefilter_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Encoder state                                                               */ +    const silk_encoder_control_FIX  *psEncCtrl,                             /* I    Encoder control                                                             */ +    opus_int32                      xw_Q3[],                                /* O    Weighted signal                                                             */ +    const opus_int16                x[]                                     /* I    Speech signal                                                               */ +) +{ +    silk_prefilter_state_FIX *P = &psEnc->sPrefilt; +    opus_int   j, k, lag; +    opus_int32 tmp_32; +    const opus_int16 *AR1_shp_Q13; +    const opus_int16 *px; +    opus_int32 *pxw_Q3; +    opus_int   HarmShapeGain_Q12, Tilt_Q14; +    opus_int32 HarmShapeFIRPacked_Q12, LF_shp_Q14; +    opus_int32 x_filt_Q12[ MAX_SUB_FRAME_LENGTH ]; +    opus_int32 st_res_Q2[ MAX_SUB_FRAME_LENGTH + MAX_LPC_ORDER ]; +    opus_int16 B_Q10[ 2 ]; + +    /* Set up pointers */ +    px  = x; +    pxw_Q3 = xw_Q3; +    lag = P->lagPrev; +    for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) { +        /* Update Variables that change per sub frame */ +        if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) { +            lag = psEncCtrl->pitchL[ k ]; +        } + +        /* Noise shape parameters */ +        HarmShapeGain_Q12 = silk_SMULWB( (opus_int32)psEncCtrl->HarmShapeGain_Q14[ k ], 16384 - psEncCtrl->HarmBoost_Q14[ k ] ); +        silk_assert( HarmShapeGain_Q12 >= 0 ); +        HarmShapeFIRPacked_Q12  =                          silk_RSHIFT( HarmShapeGain_Q12, 2 ); +        HarmShapeFIRPacked_Q12 |= silk_LSHIFT( (opus_int32)silk_RSHIFT( HarmShapeGain_Q12, 1 ), 16 ); +        Tilt_Q14    = psEncCtrl->Tilt_Q14[   k ]; +        LF_shp_Q14  = psEncCtrl->LF_shp_Q14[ k ]; +        AR1_shp_Q13 = &psEncCtrl->AR1_Q13[   k * MAX_SHAPE_LPC_ORDER ]; + +        /* Short term FIR filtering*/ +        silk_warped_LPC_analysis_filter_FIX( P->sAR_shp, st_res_Q2, AR1_shp_Q13, px, +            psEnc->sCmn.warping_Q16, psEnc->sCmn.subfr_length, psEnc->sCmn.shapingLPCOrder ); + +        /* Reduce (mainly) low frequencies during harmonic emphasis */ +        B_Q10[ 0 ] = silk_RSHIFT_ROUND( psEncCtrl->GainsPre_Q14[ k ], 4 ); +        tmp_32 = silk_SMLABB( SILK_FIX_CONST( INPUT_TILT, 26 ), psEncCtrl->HarmBoost_Q14[ k ], HarmShapeGain_Q12 );   /* Q26 */ +        tmp_32 = silk_SMLABB( tmp_32, psEncCtrl->coding_quality_Q14, SILK_FIX_CONST( HIGH_RATE_INPUT_TILT, 12 ) );    /* Q26 */ +        tmp_32 = silk_SMULWB( tmp_32, -psEncCtrl->GainsPre_Q14[ k ] );                                                /* Q24 */ +        tmp_32 = silk_RSHIFT_ROUND( tmp_32, 14 );                                                                     /* Q10 */ +        B_Q10[ 1 ]= silk_SAT16( tmp_32 ); +        x_filt_Q12[ 0 ] = silk_MLA( silk_MUL( st_res_Q2[ 0 ], B_Q10[ 0 ] ), P->sHarmHP_Q2, B_Q10[ 1 ] ); +        for( j = 1; j < psEnc->sCmn.subfr_length; j++ ) { +            x_filt_Q12[ j ] = silk_MLA( silk_MUL( st_res_Q2[ j ], B_Q10[ 0 ] ), st_res_Q2[ j - 1 ], B_Q10[ 1 ] ); +        } +        P->sHarmHP_Q2 = st_res_Q2[ psEnc->sCmn.subfr_length - 1 ]; + +        silk_prefilt_FIX( P, x_filt_Q12, pxw_Q3, HarmShapeFIRPacked_Q12, Tilt_Q14, LF_shp_Q14, lag, psEnc->sCmn.subfr_length ); + +        px  += psEnc->sCmn.subfr_length; +        pxw_Q3 += psEnc->sCmn.subfr_length; +    } + +    P->lagPrev = psEncCtrl->pitchL[ psEnc->sCmn.nb_subfr - 1 ]; +} + +/* Prefilter for finding Quantizer input signal */ +static inline void silk_prefilt_FIX( +    silk_prefilter_state_FIX    *P,                         /* I/O  state                               */ +    opus_int32                  st_res_Q12[],               /* I    short term residual signal          */ +    opus_int32                  xw_Q3[],                    /* O    prefiltered signal                  */ +    opus_int32                  HarmShapeFIRPacked_Q12,     /* I    Harmonic shaping coeficients        */ +    opus_int                    Tilt_Q14,                   /* I    Tilt shaping coeficient             */ +    opus_int32                  LF_shp_Q14,                 /* I    Low-frequancy shaping coeficients   */ +    opus_int                    lag,                        /* I    Lag for harmonic shaping            */ +    opus_int                    length                      /* I    Length of signals                   */ +) +{ +    opus_int   i, idx, LTP_shp_buf_idx; +    opus_int32 n_LTP_Q12, n_Tilt_Q10, n_LF_Q10; +    opus_int32 sLF_MA_shp_Q12, sLF_AR_shp_Q12; +    opus_int16 *LTP_shp_buf; + +    /* To speed up use temp variables instead of using the struct */ +    LTP_shp_buf     = P->sLTP_shp; +    LTP_shp_buf_idx = P->sLTP_shp_buf_idx; +    sLF_AR_shp_Q12  = P->sLF_AR_shp_Q12; +    sLF_MA_shp_Q12  = P->sLF_MA_shp_Q12; + +    for( i = 0; i < length; i++ ) { +        if( lag > 0 ) { +            /* unrolled loop */ +            silk_assert( HARM_SHAPE_FIR_TAPS == 3 ); +            idx = lag + LTP_shp_buf_idx; +            n_LTP_Q12 = silk_SMULBB(            LTP_shp_buf[ ( idx - HARM_SHAPE_FIR_TAPS / 2 - 1) & LTP_MASK ], HarmShapeFIRPacked_Q12 ); +            n_LTP_Q12 = silk_SMLABT( n_LTP_Q12, LTP_shp_buf[ ( idx - HARM_SHAPE_FIR_TAPS / 2    ) & LTP_MASK ], HarmShapeFIRPacked_Q12 ); +            n_LTP_Q12 = silk_SMLABB( n_LTP_Q12, LTP_shp_buf[ ( idx - HARM_SHAPE_FIR_TAPS / 2 + 1) & LTP_MASK ], HarmShapeFIRPacked_Q12 ); +        } else { +            n_LTP_Q12 = 0; +        } + +        n_Tilt_Q10 = silk_SMULWB( sLF_AR_shp_Q12, Tilt_Q14 ); +        n_LF_Q10   = silk_SMLAWB( silk_SMULWT( sLF_AR_shp_Q12, LF_shp_Q14 ), sLF_MA_shp_Q12, LF_shp_Q14 ); + +        sLF_AR_shp_Q12 = silk_SUB32( st_res_Q12[ i ], silk_LSHIFT( n_Tilt_Q10, 2 ) ); +        sLF_MA_shp_Q12 = silk_SUB32( sLF_AR_shp_Q12,  silk_LSHIFT( n_LF_Q10,   2 ) ); + +        LTP_shp_buf_idx = ( LTP_shp_buf_idx - 1 ) & LTP_MASK; +        LTP_shp_buf[ LTP_shp_buf_idx ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( sLF_MA_shp_Q12, 12 ) ); + +        xw_Q3[i] = silk_RSHIFT_ROUND( silk_SUB32( sLF_MA_shp_Q12, n_LTP_Q12 ), 9 ); +    } + +    /* Copy temp variable back to state */ +    P->sLF_AR_shp_Q12   = sLF_AR_shp_Q12; +    P->sLF_MA_shp_Q12   = sLF_MA_shp_Q12; +    P->sLTP_shp_buf_idx = LTP_shp_buf_idx; +} diff --git a/src/opus-1.0.2/silk/fixed/process_gains_FIX.c b/src/opus-1.0.2/silk/fixed/process_gains_FIX.c new file mode 100644 index 00000000..22d3a71a --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/process_gains_FIX.c @@ -0,0 +1,117 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" +#include "tuning_parameters.h" + +/* Processing of gains */ +void silk_process_gains_FIX( +    silk_encoder_state_FIX          *psEnc,                                 /* I/O  Encoder state                                                               */ +    silk_encoder_control_FIX        *psEncCtrl,                             /* I/O  Encoder control                                                             */ +    opus_int                        condCoding                              /* I    The type of conditional coding to use                                       */ +) +{ +    silk_shape_state_FIX *psShapeSt = &psEnc->sShape; +    opus_int     k; +    opus_int32   s_Q16, InvMaxSqrVal_Q16, gain, gain_squared, ResNrg, ResNrgPart, quant_offset_Q10; + +    /* Gain reduction when LTP coding gain is high */ +    if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) { +        /*s = -0.5f * silk_sigmoid( 0.25f * ( psEncCtrl->LTPredCodGain - 12.0f ) ); */ +        s_Q16 = -silk_sigm_Q15( silk_RSHIFT_ROUND( psEncCtrl->LTPredCodGain_Q7 - SILK_FIX_CONST( 12.0, 7 ), 4 ) ); +        for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) { +            psEncCtrl->Gains_Q16[ k ] = silk_SMLAWB( psEncCtrl->Gains_Q16[ k ], psEncCtrl->Gains_Q16[ k ], s_Q16 ); +        } +    } + +    /* Limit the quantized signal */ +    /* InvMaxSqrVal = pow( 2.0f, 0.33f * ( 21.0f - SNR_dB ) ) / subfr_length; */ +    InvMaxSqrVal_Q16 = silk_DIV32_16( silk_log2lin( +        silk_SMULWB( SILK_FIX_CONST( 21 + 16 / 0.33, 7 ) - psEnc->sCmn.SNR_dB_Q7, SILK_FIX_CONST( 0.33, 16 ) ) ), psEnc->sCmn.subfr_length ); + +    for( k = 0; k < psEnc->sCmn.nb_subfr; k++ ) { +        /* Soft limit on ratio residual energy and squared gains */ +        ResNrg     = psEncCtrl->ResNrg[ k ]; +        ResNrgPart = silk_SMULWW( ResNrg, InvMaxSqrVal_Q16 ); +        if( psEncCtrl->ResNrgQ[ k ] > 0 ) { +            ResNrgPart = silk_RSHIFT_ROUND( ResNrgPart, psEncCtrl->ResNrgQ[ k ] ); +        } else { +            if( ResNrgPart >= silk_RSHIFT( silk_int32_MAX, -psEncCtrl->ResNrgQ[ k ] ) ) { +                ResNrgPart = silk_int32_MAX; +            } else { +                ResNrgPart = silk_LSHIFT( ResNrgPart, -psEncCtrl->ResNrgQ[ k ] ); +            } +        } +        gain = psEncCtrl->Gains_Q16[ k ]; +        gain_squared = silk_ADD_SAT32( ResNrgPart, silk_SMMUL( gain, gain ) ); +        if( gain_squared < silk_int16_MAX ) { +            /* recalculate with higher precision */ +            gain_squared = silk_SMLAWW( silk_LSHIFT( ResNrgPart, 16 ), gain, gain ); +            silk_assert( gain_squared > 0 ); +            gain = silk_SQRT_APPROX( gain_squared );                    /* Q8   */ +            gain = silk_min( gain, silk_int32_MAX >> 8 ); +            psEncCtrl->Gains_Q16[ k ] = silk_LSHIFT_SAT32( gain, 8 );   /* Q16  */ +        } else { +            gain = silk_SQRT_APPROX( gain_squared );                    /* Q0   */ +            gain = silk_min( gain, silk_int32_MAX >> 16 ); +            psEncCtrl->Gains_Q16[ k ] = silk_LSHIFT_SAT32( gain, 16 );  /* Q16  */ +        } +    } + +    /* Save unquantized gains and gain Index */ +    silk_memcpy( psEncCtrl->GainsUnq_Q16, psEncCtrl->Gains_Q16, psEnc->sCmn.nb_subfr * sizeof( opus_int32 ) ); +    psEncCtrl->lastGainIndexPrev = psShapeSt->LastGainIndex; + +    /* Quantize gains */ +    silk_gains_quant( psEnc->sCmn.indices.GainsIndices, psEncCtrl->Gains_Q16, +        &psShapeSt->LastGainIndex, condCoding == CODE_CONDITIONALLY, psEnc->sCmn.nb_subfr ); + +    /* Set quantizer offset for voiced signals. Larger offset when LTP coding gain is low or tilt is high (ie low-pass) */ +    if( psEnc->sCmn.indices.signalType == TYPE_VOICED ) { +        if( psEncCtrl->LTPredCodGain_Q7 + silk_RSHIFT( psEnc->sCmn.input_tilt_Q15, 8 ) > SILK_FIX_CONST( 1.0, 7 ) ) { +            psEnc->sCmn.indices.quantOffsetType = 0; +        } else { +            psEnc->sCmn.indices.quantOffsetType = 1; +        } +    } + +    /* Quantizer boundary adjustment */ +    quant_offset_Q10 = silk_Quantization_Offsets_Q10[ psEnc->sCmn.indices.signalType >> 1 ][ psEnc->sCmn.indices.quantOffsetType ]; +    psEncCtrl->Lambda_Q10 = SILK_FIX_CONST( LAMBDA_OFFSET, 10 ) +                          + silk_SMULBB( SILK_FIX_CONST( LAMBDA_DELAYED_DECISIONS, 10 ), psEnc->sCmn.nStatesDelayedDecision ) +                          + silk_SMULWB( SILK_FIX_CONST( LAMBDA_SPEECH_ACT,        18 ), psEnc->sCmn.speech_activity_Q8     ) +                          + silk_SMULWB( SILK_FIX_CONST( LAMBDA_INPUT_QUALITY,     12 ), psEncCtrl->input_quality_Q14       ) +                          + silk_SMULWB( SILK_FIX_CONST( LAMBDA_CODING_QUALITY,    12 ), psEncCtrl->coding_quality_Q14      ) +                          + silk_SMULWB( SILK_FIX_CONST( LAMBDA_QUANT_OFFSET,      16 ), quant_offset_Q10                   ); + +    silk_assert( psEncCtrl->Lambda_Q10 > 0 ); +    silk_assert( psEncCtrl->Lambda_Q10 < SILK_FIX_CONST( 2, 10 ) ); +} diff --git a/src/opus-1.0.2/silk/fixed/regularize_correlations_FIX.c b/src/opus-1.0.2/silk/fixed/regularize_correlations_FIX.c new file mode 100644 index 00000000..098c1509 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/regularize_correlations_FIX.c @@ -0,0 +1,47 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" + +/* Add noise to matrix diagonal */ +void silk_regularize_correlations_FIX( +    opus_int32                      *XX,                                    /* I/O  Correlation matrices                                                        */ +    opus_int32                      *xx,                                    /* I/O  Correlation values                                                          */ +    opus_int32                      noise,                                  /* I    Noise to add                                                                */ +    opus_int                        D                                       /* I    Dimension of XX                                                             */ +) +{ +    opus_int i; +    for( i = 0; i < D; i++ ) { +        matrix_ptr( &XX[ 0 ], i, i, D ) = silk_ADD32( matrix_ptr( &XX[ 0 ], i, i, D ), noise ); +    } +    xx[ 0 ] += noise; +} diff --git a/src/opus-1.0.2/silk/fixed/residual_energy16_FIX.c b/src/opus-1.0.2/silk/fixed/residual_energy16_FIX.c new file mode 100644 index 00000000..d61e8493 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/residual_energy16_FIX.c @@ -0,0 +1,103 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" + +/* Residual energy: nrg = wxx - 2 * wXx * c + c' * wXX * c */ +opus_int32 silk_residual_energy16_covar_FIX( +    const opus_int16                *c,                                     /* I    Prediction vector                                                           */ +    const opus_int32                *wXX,                                   /* I    Correlation matrix                                                          */ +    const opus_int32                *wXx,                                   /* I    Correlation vector                                                          */ +    opus_int32                      wxx,                                    /* I    Signal energy                                                               */ +    opus_int                        D,                                      /* I    Dimension                                                                   */ +    opus_int                        cQ                                      /* I    Q value for c vector 0 - 15                                                 */ +) +{ +    opus_int   i, j, lshifts, Qxtra; +    opus_int32 c_max, w_max, tmp, tmp2, nrg; +    opus_int   cn[ MAX_MATRIX_SIZE ]; +    const opus_int32 *pRow; + +    /* Safety checks */ +    silk_assert( D >=  0 ); +    silk_assert( D <= 16 ); +    silk_assert( cQ >  0 ); +    silk_assert( cQ < 16 ); + +    lshifts = 16 - cQ; +    Qxtra = lshifts; + +    c_max = 0; +    for( i = 0; i < D; i++ ) { +        c_max = silk_max_32( c_max, silk_abs( (opus_int32)c[ i ] ) ); +    } +    Qxtra = silk_min_int( Qxtra, silk_CLZ32( c_max ) - 17 ); + +    w_max = silk_max_32( wXX[ 0 ], wXX[ D * D - 1 ] ); +    Qxtra = silk_min_int( Qxtra, silk_CLZ32( silk_MUL( D, silk_RSHIFT( silk_SMULWB( w_max, c_max ), 4 ) ) ) - 5 ); +    Qxtra = silk_max_int( Qxtra, 0 ); +    for( i = 0; i < D; i++ ) { +        cn[ i ] = silk_LSHIFT( ( opus_int )c[ i ], Qxtra ); +        silk_assert( silk_abs(cn[i]) <= ( silk_int16_MAX + 1 ) ); /* Check that silk_SMLAWB can be used */ +    } +    lshifts -= Qxtra; + +    /* Compute wxx - 2 * wXx * c */ +    tmp = 0; +    for( i = 0; i < D; i++ ) { +        tmp = silk_SMLAWB( tmp, wXx[ i ], cn[ i ] ); +    } +    nrg = silk_RSHIFT( wxx, 1 + lshifts ) - tmp;                         /* Q: -lshifts - 1 */ + +    /* Add c' * wXX * c, assuming wXX is symmetric */ +    tmp2 = 0; +    for( i = 0; i < D; i++ ) { +        tmp = 0; +        pRow = &wXX[ i * D ]; +        for( j = i + 1; j < D; j++ ) { +            tmp = silk_SMLAWB( tmp, pRow[ j ], cn[ j ] ); +        } +        tmp  = silk_SMLAWB( tmp,  silk_RSHIFT( pRow[ i ], 1 ), cn[ i ] ); +        tmp2 = silk_SMLAWB( tmp2, tmp,                        cn[ i ] ); +    } +    nrg = silk_ADD_LSHIFT32( nrg, tmp2, lshifts );                       /* Q: -lshifts - 1 */ + +    /* Keep one bit free always, because we add them for LSF interpolation */ +    if( nrg < 1 ) { +        nrg = 1; +    } else if( nrg > silk_RSHIFT( silk_int32_MAX, lshifts + 2 ) ) { +        nrg = silk_int32_MAX >> 1; +    } else { +        nrg = silk_LSHIFT( nrg, lshifts + 1 );                           /* Q0 */ +    } +    return nrg; + +} diff --git a/src/opus-1.0.2/silk/fixed/residual_energy_FIX.c b/src/opus-1.0.2/silk/fixed/residual_energy_FIX.c new file mode 100644 index 00000000..f284e51f --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/residual_energy_FIX.c @@ -0,0 +1,91 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" + +/* Calculates residual energies of input subframes where all subframes have LPC_order   */ +/* of preceding samples                                                                 */ +void silk_residual_energy_FIX( +          opus_int32                nrgs[ MAX_NB_SUBFR ],                   /* O    Residual energy per subframe                                                */ +          opus_int                  nrgsQ[ MAX_NB_SUBFR ],                  /* O    Q value per subframe                                                        */ +    const opus_int16                x[],                                    /* I    Input signal                                                                */ +          opus_int16                a_Q12[ 2 ][ MAX_LPC_ORDER ],            /* I    AR coefs for each frame half                                                */ +    const opus_int32                gains[ MAX_NB_SUBFR ],                  /* I    Quantization gains                                                          */ +    const opus_int                  subfr_length,                           /* I    Subframe length                                                             */ +    const opus_int                  nb_subfr,                               /* I    Number of subframes                                                         */ +    const opus_int                  LPC_order                               /* I    LPC order                                                                   */ +) +{ +    opus_int         offset, i, j, rshift, lz1, lz2; +    opus_int16       *LPC_res_ptr, LPC_res[ ( MAX_FRAME_LENGTH + MAX_NB_SUBFR * MAX_LPC_ORDER ) / 2 ]; +    const opus_int16 *x_ptr; +    opus_int32       tmp32; + +    x_ptr  = x; +    offset = LPC_order + subfr_length; + +    /* Filter input to create the LPC residual for each frame half, and measure subframe energies */ +    for( i = 0; i < nb_subfr >> 1; i++ ) { +        /* Calculate half frame LPC residual signal including preceding samples */ +        silk_LPC_analysis_filter( LPC_res, x_ptr, a_Q12[ i ], ( MAX_NB_SUBFR >> 1 ) * offset, LPC_order ); + +        /* Point to first subframe of the just calculated LPC residual signal */ +        LPC_res_ptr = LPC_res + LPC_order; +        for( j = 0; j < ( MAX_NB_SUBFR >> 1 ); j++ ) { +            /* Measure subframe energy */ +            silk_sum_sqr_shift( &nrgs[ i * ( MAX_NB_SUBFR >> 1 ) + j ], &rshift, LPC_res_ptr, subfr_length ); + +            /* Set Q values for the measured energy */ +            nrgsQ[ i * ( MAX_NB_SUBFR >> 1 ) + j ] = -rshift; + +            /* Move to next subframe */ +            LPC_res_ptr += offset; +        } +        /* Move to next frame half */ +        x_ptr += ( MAX_NB_SUBFR >> 1 ) * offset; +    } + +    /* Apply the squared subframe gains */ +    for( i = 0; i < nb_subfr; i++ ) { +        /* Fully upscale gains and energies */ +        lz1 = silk_CLZ32( nrgs[  i ] ) - 1; +        lz2 = silk_CLZ32( gains[ i ] ) - 1; + +        tmp32 = silk_LSHIFT32( gains[ i ], lz2 ); + +        /* Find squared gains */ +        tmp32 = silk_SMMUL( tmp32, tmp32 ); /* Q( 2 * lz2 - 32 )*/ + +        /* Scale energies */ +        nrgs[ i ] = silk_SMMUL( tmp32, silk_LSHIFT32( nrgs[ i ], lz1 ) ); /* Q( nrgsQ[ i ] + lz1 + 2 * lz2 - 32 - 32 )*/ +        nrgsQ[ i ] += lz1 + 2 * lz2 - 32 - 32; +    } +} diff --git a/src/opus-1.0.2/silk/fixed/schur64_FIX.c b/src/opus-1.0.2/silk/fixed/schur64_FIX.c new file mode 100644 index 00000000..5ff27567 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/schur64_FIX.c @@ -0,0 +1,77 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "SigProc_FIX.h" + +/* Slower than schur(), but more accurate.                              */ +/* Uses SMULL(), available on armv4                                     */ +opus_int32 silk_schur64(                            /* O    returns residual energy                                     */ +    opus_int32                  rc_Q16[],           /* O    Reflection coefficients [order] Q16                         */ +    const opus_int32            c[],                /* I    Correlations [order+1]                                      */ +    opus_int32                  order               /* I    Prediction order                                            */ +) +{ +    opus_int   k, n; +    opus_int32 C[ SILK_MAX_ORDER_LPC + 1 ][ 2 ]; +    opus_int32 Ctmp1_Q30, Ctmp2_Q30, rc_tmp_Q31; + +    silk_assert( order==6||order==8||order==10||order==12||order==14||order==16 ); + +    /* Check for invalid input */ +    if( c[ 0 ] <= 0 ) { +        silk_memset( rc_Q16, 0, order * sizeof( opus_int32 ) ); +        return 0; +    } + +    for( k = 0; k < order + 1; k++ ) { +        C[ k ][ 0 ] = C[ k ][ 1 ] = c[ k ]; +    } + +    for( k = 0; k < order; k++ ) { +        /* Get reflection coefficient: divide two Q30 values and get result in Q31 */ +        rc_tmp_Q31 = silk_DIV32_varQ( -C[ k + 1 ][ 0 ], C[ 0 ][ 1 ], 31 ); + +        /* Save the output */ +        rc_Q16[ k ] = silk_RSHIFT_ROUND( rc_tmp_Q31, 15 ); + +        /* Update correlations */ +        for( n = 0; n < order - k; n++ ) { +            Ctmp1_Q30 = C[ n + k + 1 ][ 0 ]; +            Ctmp2_Q30 = C[ n ][ 1 ]; + +            /* Multiply and add the highest int32 */ +            C[ n + k + 1 ][ 0 ] = Ctmp1_Q30 + silk_SMMUL( silk_LSHIFT( Ctmp2_Q30, 1 ), rc_tmp_Q31 ); +            C[ n ][ 1 ]         = Ctmp2_Q30 + silk_SMMUL( silk_LSHIFT( Ctmp1_Q30, 1 ), rc_tmp_Q31 ); +        } +    } + +    return( C[ 0 ][ 1 ] ); +} diff --git a/src/opus-1.0.2/silk/fixed/schur_FIX.c b/src/opus-1.0.2/silk/fixed/schur_FIX.c new file mode 100644 index 00000000..43db5018 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/schur_FIX.c @@ -0,0 +1,92 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "SigProc_FIX.h" + +/* Faster than schur64(), but much less accurate.                       */ +/* uses SMLAWB(), requiring armv5E and higher.                          */ +opus_int32 silk_schur(                              /* O    Returns residual energy                                     */ +    opus_int16                  *rc_Q15,            /* O    reflection coefficients [order] Q15                         */ +    const opus_int32            *c,                 /* I    correlations [order+1]                                      */ +    const opus_int32            order               /* I    prediction order                                            */ +) +{ +    opus_int        k, n, lz; +    opus_int32    C[ SILK_MAX_ORDER_LPC + 1 ][ 2 ]; +    opus_int32    Ctmp1, Ctmp2, rc_tmp_Q15; + +    silk_assert( order==6||order==8||order==10||order==12||order==14||order==16 ); + +    /* Get number of leading zeros */ +    lz = silk_CLZ32( c[ 0 ] ); + +    /* Copy correlations and adjust level to Q30 */ +    if( lz < 2 ) { +        /* lz must be 1, so shift one to the right */ +        for( k = 0; k < order + 1; k++ ) { +            C[ k ][ 0 ] = C[ k ][ 1 ] = silk_RSHIFT( c[ k ], 1 ); +        } +    } else if( lz > 2 ) { +        /* Shift to the left */ +        lz -= 2; +        for( k = 0; k < order + 1; k++ ) { +            C[ k ][ 0 ] = C[ k ][ 1 ] = silk_LSHIFT( c[ k ], lz ); +        } +    } else { +        /* No need to shift */ +        for( k = 0; k < order + 1; k++ ) { +            C[ k ][ 0 ] = C[ k ][ 1 ] = c[ k ]; +        } +    } + +    for( k = 0; k < order; k++ ) { + +        /* Get reflection coefficient */ +        rc_tmp_Q15 = -silk_DIV32_16( C[ k + 1 ][ 0 ], silk_max_32( silk_RSHIFT( C[ 0 ][ 1 ], 15 ), 1 ) ); + +        /* Clip (shouldn't happen for properly conditioned inputs) */ +        rc_tmp_Q15 = silk_SAT16( rc_tmp_Q15 ); + +        /* Store */ +        rc_Q15[ k ] = (opus_int16)rc_tmp_Q15; + +        /* Update correlations */ +        for( n = 0; n < order - k; n++ ) { +            Ctmp1 = C[ n + k + 1 ][ 0 ]; +            Ctmp2 = C[ n ][ 1 ]; +            C[ n + k + 1 ][ 0 ] = silk_SMLAWB( Ctmp1, silk_LSHIFT( Ctmp2, 1 ), rc_tmp_Q15 ); +            C[ n ][ 1 ]         = silk_SMLAWB( Ctmp2, silk_LSHIFT( Ctmp1, 1 ), rc_tmp_Q15 ); +        } +    } + +    /* return residual energy */ +    return C[ 0 ][ 1 ]; +} diff --git a/src/opus-1.0.2/silk/fixed/solve_LS_FIX.c b/src/opus-1.0.2/silk/fixed/solve_LS_FIX.c new file mode 100644 index 00000000..fb913abe --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/solve_LS_FIX.c @@ -0,0 +1,245 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" +#include "tuning_parameters.h" + +/*****************************/ +/* Internal function headers */ +/*****************************/ + +typedef struct { +    opus_int32 Q36_part; +    opus_int32 Q48_part; +} inv_D_t; + +/* Factorize square matrix A into LDL form */ +static inline void silk_LDL_factorize_FIX( +    opus_int32          *A,         /* I/O Pointer to Symetric Square Matrix                            */ +    opus_int            M,          /* I   Size of Matrix                                               */ +    opus_int32          *L_Q16,     /* I/O Pointer to Square Upper triangular Matrix                    */ +    inv_D_t             *inv_D      /* I/O Pointer to vector holding inverted diagonal elements of D    */ +); + +/* Solve Lx = b, when L is lower triangular and has ones on the diagonal */ +static inline void silk_LS_SolveFirst_FIX( +    const opus_int32    *L_Q16,     /* I    Pointer to Lower Triangular Matrix                          */ +    opus_int            M,          /* I    Dim of Matrix equation                                      */ +    const opus_int32    *b,         /* I    b Vector                                                    */ +    opus_int32          *x_Q16      /* O    x Vector                                                    */ +); + +/* Solve L^t*x = b, where L is lower triangular with ones on the diagonal */ +static inline void silk_LS_SolveLast_FIX( +    const opus_int32    *L_Q16,     /* I    Pointer to Lower Triangular Matrix                          */ +    const opus_int      M,          /* I    Dim of Matrix equation                                      */ +    const opus_int32    *b,         /* I    b Vector                                                    */ +    opus_int32          *x_Q16      /* O    x Vector                                                    */ +); + +static inline void silk_LS_divide_Q16_FIX( +    opus_int32          T[],        /* I/O  Numenator vector                                            */ +    inv_D_t             *inv_D,     /* I    1 / D vector                                                */ +    opus_int            M           /* I    dimension                                                   */ +); + +/* Solves Ax = b, assuming A is symmetric */ +void silk_solve_LDL_FIX( +    opus_int32                      *A,                                     /* I    Pointer to symetric square matrix A                                         */ +    opus_int                        M,                                      /* I    Size of matrix                                                              */ +    const opus_int32                *b,                                     /* I    Pointer to b vector                                                         */ +    opus_int32                      *x_Q16                                  /* O    Pointer to x solution vector                                                */ +) +{ +    opus_int32 L_Q16[  MAX_MATRIX_SIZE * MAX_MATRIX_SIZE ]; +    opus_int32 Y[      MAX_MATRIX_SIZE ]; +    inv_D_t   inv_D[  MAX_MATRIX_SIZE ]; + +    silk_assert( M <= MAX_MATRIX_SIZE ); + +    /*************************************************** +    Factorize A by LDL such that A = L*D*L', +    where L is lower triangular with ones on diagonal +    ****************************************************/ +    silk_LDL_factorize_FIX( A, M, L_Q16, inv_D ); + +    /**************************************************** +    * substitute D*L'*x = Y. ie: +    L*D*L'*x = b => L*Y = b <=> Y = inv(L)*b +    ******************************************************/ +    silk_LS_SolveFirst_FIX( L_Q16, M, b, Y ); + +    /**************************************************** +    D*L'*x = Y <=> L'*x = inv(D)*Y, because D is +    diagonal just multiply with 1/d_i +    ****************************************************/ +    silk_LS_divide_Q16_FIX( Y, inv_D, M ); + +    /**************************************************** +    x = inv(L') * inv(D) * Y +    *****************************************************/ +    silk_LS_SolveLast_FIX( L_Q16, M, Y, x_Q16 ); +} + +static inline void silk_LDL_factorize_FIX( +    opus_int32          *A,         /* I/O Pointer to Symetric Square Matrix                            */ +    opus_int            M,          /* I   Size of Matrix                                               */ +    opus_int32          *L_Q16,     /* I/O Pointer to Square Upper triangular Matrix                    */ +    inv_D_t             *inv_D      /* I/O Pointer to vector holding inverted diagonal elements of D    */ +) +{ +    opus_int   i, j, k, status, loop_count; +    const opus_int32 *ptr1, *ptr2; +    opus_int32 diag_min_value, tmp_32, err; +    opus_int32 v_Q0[ MAX_MATRIX_SIZE ], D_Q0[ MAX_MATRIX_SIZE ]; +    opus_int32 one_div_diag_Q36, one_div_diag_Q40, one_div_diag_Q48; + +    silk_assert( M <= MAX_MATRIX_SIZE ); + +    status = 1; +    diag_min_value = silk_max_32( silk_SMMUL( silk_ADD_SAT32( A[ 0 ], A[ silk_SMULBB( M, M ) - 1 ] ), SILK_FIX_CONST( FIND_LTP_COND_FAC, 31 ) ), 1 << 9 ); +    for( loop_count = 0; loop_count < M && status == 1; loop_count++ ) { +        status = 0; +        for( j = 0; j < M; j++ ) { +            ptr1 = matrix_adr( L_Q16, j, 0, M ); +            tmp_32 = 0; +            for( i = 0; i < j; i++ ) { +                v_Q0[ i ] = silk_SMULWW(         D_Q0[ i ], ptr1[ i ] ); /* Q0 */ +                tmp_32    = silk_SMLAWW( tmp_32, v_Q0[ i ], ptr1[ i ] ); /* Q0 */ +            } +            tmp_32 = silk_SUB32( matrix_ptr( A, j, j, M ), tmp_32 ); + +            if( tmp_32 < diag_min_value ) { +                tmp_32 = silk_SUB32( silk_SMULBB( loop_count + 1, diag_min_value ), tmp_32 ); +                /* Matrix not positive semi-definite, or ill conditioned */ +                for( i = 0; i < M; i++ ) { +                    matrix_ptr( A, i, i, M ) = silk_ADD32( matrix_ptr( A, i, i, M ), tmp_32 ); +                } +                status = 1; +                break; +            } +            D_Q0[ j ] = tmp_32;                         /* always < max(Correlation) */ + +            /* two-step division */ +            one_div_diag_Q36 = silk_INVERSE32_varQ( tmp_32, 36 );                    /* Q36 */ +            one_div_diag_Q40 = silk_LSHIFT( one_div_diag_Q36, 4 );                   /* Q40 */ +            err = silk_SUB32( (opus_int32)1 << 24, silk_SMULWW( tmp_32, one_div_diag_Q40 ) );     /* Q24 */ +            one_div_diag_Q48 = silk_SMULWW( err, one_div_diag_Q40 );                 /* Q48 */ + +            /* Save 1/Ds */ +            inv_D[ j ].Q36_part = one_div_diag_Q36; +            inv_D[ j ].Q48_part = one_div_diag_Q48; + +            matrix_ptr( L_Q16, j, j, M ) = 65536; /* 1.0 in Q16 */ +            ptr1 = matrix_adr( A, j, 0, M ); +            ptr2 = matrix_adr( L_Q16, j + 1, 0, M ); +            for( i = j + 1; i < M; i++ ) { +                tmp_32 = 0; +                for( k = 0; k < j; k++ ) { +                    tmp_32 = silk_SMLAWW( tmp_32, v_Q0[ k ], ptr2[ k ] ); /* Q0 */ +                } +                tmp_32 = silk_SUB32( ptr1[ i ], tmp_32 ); /* always < max(Correlation) */ + +                /* tmp_32 / D_Q0[j] : Divide to Q16 */ +                matrix_ptr( L_Q16, i, j, M ) = silk_ADD32( silk_SMMUL( tmp_32, one_div_diag_Q48 ), +                    silk_RSHIFT( silk_SMULWW( tmp_32, one_div_diag_Q36 ), 4 ) ); + +                /* go to next column */ +                ptr2 += M; +            } +        } +    } + +    silk_assert( status == 0 ); +} + +static inline void silk_LS_divide_Q16_FIX( +    opus_int32          T[],        /* I/O  Numenator vector                                            */ +    inv_D_t             *inv_D,     /* I    1 / D vector                                                */ +    opus_int            M           /* I    dimension                                                   */ +) +{ +    opus_int   i; +    opus_int32 tmp_32; +    opus_int32 one_div_diag_Q36, one_div_diag_Q48; + +    for( i = 0; i < M; i++ ) { +        one_div_diag_Q36 = inv_D[ i ].Q36_part; +        one_div_diag_Q48 = inv_D[ i ].Q48_part; + +        tmp_32 = T[ i ]; +        T[ i ] = silk_ADD32( silk_SMMUL( tmp_32, one_div_diag_Q48 ), silk_RSHIFT( silk_SMULWW( tmp_32, one_div_diag_Q36 ), 4 ) ); +    } +} + +/* Solve Lx = b, when L is lower triangular and has ones on the diagonal */ +static inline void silk_LS_SolveFirst_FIX( +    const opus_int32    *L_Q16,     /* I    Pointer to Lower Triangular Matrix                          */ +    opus_int            M,          /* I    Dim of Matrix equation                                      */ +    const opus_int32    *b,         /* I    b Vector                                                    */ +    opus_int32          *x_Q16      /* O    x Vector                                                    */ +) +{ +    opus_int i, j; +    const opus_int32 *ptr32; +    opus_int32 tmp_32; + +    for( i = 0; i < M; i++ ) { +        ptr32 = matrix_adr( L_Q16, i, 0, M ); +        tmp_32 = 0; +        for( j = 0; j < i; j++ ) { +            tmp_32 = silk_SMLAWW( tmp_32, ptr32[ j ], x_Q16[ j ] ); +        } +        x_Q16[ i ] = silk_SUB32( b[ i ], tmp_32 ); +    } +} + +/* Solve L^t*x = b, where L is lower triangular with ones on the diagonal */ +static inline void silk_LS_SolveLast_FIX( +    const opus_int32    *L_Q16,     /* I    Pointer to Lower Triangular Matrix                          */ +    const opus_int      M,          /* I    Dim of Matrix equation                                      */ +    const opus_int32    *b,         /* I    b Vector                                                    */ +    opus_int32          *x_Q16      /* O    x Vector                                                    */ +) +{ +    opus_int i, j; +    const opus_int32 *ptr32; +    opus_int32 tmp_32; + +    for( i = M - 1; i >= 0; i-- ) { +        ptr32 = matrix_adr( L_Q16, 0, i, M ); +        tmp_32 = 0; +        for( j = M - 1; j > i; j-- ) { +            tmp_32 = silk_SMLAWW( tmp_32, ptr32[ silk_SMULBB( j, M ) ], x_Q16[ j ] ); +        } +        x_Q16[ i ] = silk_SUB32( b[ i ], tmp_32 ); +    } +} diff --git a/src/opus-1.0.2/silk/fixed/structs_FIX.h b/src/opus-1.0.2/silk/fixed/structs_FIX.h new file mode 100644 index 00000000..4162608b --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/structs_FIX.h @@ -0,0 +1,133 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifndef SILK_STRUCTS_FIX_H +#define SILK_STRUCTS_FIX_H + +#include "typedef.h" +#include "main.h" +#include "structs.h" + +#ifdef __cplusplus +extern "C" +{ +#endif + +/********************************/ +/* Noise shaping analysis state */ +/********************************/ +typedef struct { +    opus_int8                   LastGainIndex; +    opus_int32                  HarmBoost_smth_Q16; +    opus_int32                  HarmShapeGain_smth_Q16; +    opus_int32                  Tilt_smth_Q16; +} silk_shape_state_FIX; + +/********************************/ +/* Prefilter state              */ +/********************************/ +typedef struct { +    opus_int16                  sLTP_shp[ LTP_BUF_LENGTH ]; +    opus_int32                  sAR_shp[ MAX_SHAPE_LPC_ORDER + 1 ]; +    opus_int                    sLTP_shp_buf_idx; +    opus_int32                  sLF_AR_shp_Q12; +    opus_int32                  sLF_MA_shp_Q12; +    opus_int32                  sHarmHP_Q2; +    opus_int32                  rand_seed; +    opus_int                    lagPrev; +} silk_prefilter_state_FIX; + +/********************************/ +/* Encoder state FIX            */ +/********************************/ +typedef struct { +    silk_encoder_state          sCmn;                                   /* Common struct, shared with floating-point code       */ +    silk_shape_state_FIX        sShape;                                 /* Shape state                                          */ +    silk_prefilter_state_FIX    sPrefilt;                               /* Prefilter State                                      */ + +    /* Buffer for find pitch and noise shape analysis */ +    silk_DWORD_ALIGN opus_int16 x_buf[ 2 * MAX_FRAME_LENGTH + LA_SHAPE_MAX ];/* Buffer for find pitch and noise shape analysis  */ +    opus_int                    LTPCorr_Q15;                            /* Normalized correlation from pitch lag estimator      */ +} silk_encoder_state_FIX; + +/************************/ +/* Encoder control FIX  */ +/************************/ +typedef struct { +    /* Prediction and coding parameters */ +    opus_int32                  Gains_Q16[ MAX_NB_SUBFR ]; +    silk_DWORD_ALIGN opus_int16 PredCoef_Q12[ 2 ][ MAX_LPC_ORDER ]; +    opus_int16                  LTPCoef_Q14[ LTP_ORDER * MAX_NB_SUBFR ]; +    opus_int                    LTP_scale_Q14; +    opus_int                    pitchL[ MAX_NB_SUBFR ]; + +    /* Noise shaping parameters */ +    /* Testing */ +    silk_DWORD_ALIGN opus_int16 AR1_Q13[ MAX_NB_SUBFR * MAX_SHAPE_LPC_ORDER ]; +    silk_DWORD_ALIGN opus_int16 AR2_Q13[ MAX_NB_SUBFR * MAX_SHAPE_LPC_ORDER ]; +    opus_int32                  LF_shp_Q14[        MAX_NB_SUBFR ];      /* Packs two int16 coefficients per int32 value         */ +    opus_int                    GainsPre_Q14[      MAX_NB_SUBFR ]; +    opus_int                    HarmBoost_Q14[     MAX_NB_SUBFR ]; +    opus_int                    Tilt_Q14[          MAX_NB_SUBFR ]; +    opus_int                    HarmShapeGain_Q14[ MAX_NB_SUBFR ]; +    opus_int                    Lambda_Q10; +    opus_int                    input_quality_Q14; +    opus_int                    coding_quality_Q14; + +    /* measures */ +    opus_int                    sparseness_Q8; +    opus_int32                  predGain_Q16; +    opus_int                    LTPredCodGain_Q7; +    opus_int32                  ResNrg[ MAX_NB_SUBFR ];                 /* Residual energy per subframe                         */ +    opus_int                    ResNrgQ[ MAX_NB_SUBFR ];                /* Q domain for the residual energy > 0                 */ + +    /* Parameters for CBR mode */ +    opus_int32                  GainsUnq_Q16[ MAX_NB_SUBFR ]; +    opus_int8                   lastGainIndexPrev; +} silk_encoder_control_FIX; + +/************************/ +/* Encoder Super Struct */ +/************************/ +typedef struct { +    silk_encoder_state_FIX      state_Fxx[ ENCODER_NUM_CHANNELS ]; +    stereo_enc_state            sStereo; +    opus_int32                  nBitsExceeded; +    opus_int                    nChannelsAPI; +    opus_int                    nChannelsInternal; +    opus_int                    nPrevChannelsInternal; +    opus_int                    timeSinceSwitchAllowed_ms; +    opus_int                    allowBandwidthSwitch; +    opus_int                    prev_decode_only_middle; +} silk_encoder; + + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/src/opus-1.0.2/silk/fixed/vector_ops_FIX.c b/src/opus-1.0.2/silk/fixed/vector_ops_FIX.c new file mode 100644 index 00000000..d6206024 --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/vector_ops_FIX.c @@ -0,0 +1,127 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "SigProc_FIX.h" + +/* Copy and multiply a vector by a constant */ +void silk_scale_copy_vector16( +    opus_int16                  *data_out, +    const opus_int16            *data_in, +    opus_int32                  gain_Q16,           /* I    Gain in Q16                                                 */ +    const opus_int              dataSize            /* I    Length                                                      */ +) +{ +    opus_int  i; +    opus_int32 tmp32; + +    for( i = 0; i < dataSize; i++ ) { +        tmp32 = silk_SMULWB( gain_Q16, data_in[ i ] ); +        data_out[ i ] = (opus_int16)silk_CHECK_FIT16( tmp32 ); +    } +} + +/* Multiply a vector by a constant */ +void silk_scale_vector32_Q26_lshift_18( +    opus_int32                  *data1,             /* I/O  Q0/Q18                                                      */ +    opus_int32                  gain_Q26,           /* I    Q26                                                         */ +    opus_int                    dataSize            /* I    length                                                      */ +) +{ +    opus_int  i; + +    for( i = 0; i < dataSize; i++ ) { +        data1[ i ] = (opus_int32)silk_CHECK_FIT32( silk_RSHIFT64( silk_SMULL( data1[ i ], gain_Q26 ), 8 ) );    /* OUTPUT: Q18 */ +    } +} + +/* sum = for(i=0;i<len;i++)inVec1[i]*inVec2[i];      ---        inner product   */ +/* Note for ARM asm:                                                            */ +/*        * inVec1 and inVec2 should be at least 2 byte aligned.                */ +/*        * len should be positive 16bit integer.                               */ +/*        * only when len>6, memory access can be reduced by half.              */ +opus_int32 silk_inner_prod_aligned( +    const opus_int16 *const     inVec1,             /*    I input vector 1                                              */ +    const opus_int16 *const     inVec2,             /*    I input vector 2                                              */ +    const opus_int              len                 /*    I vector lengths                                              */ +) +{ +    opus_int   i; +    opus_int32 sum = 0; +    for( i = 0; i < len; i++ ) { +        sum = silk_SMLABB( sum, inVec1[ i ], inVec2[ i ] ); +    } +    return sum; +} + +opus_int64 silk_inner_prod16_aligned_64( +    const opus_int16            *inVec1,            /*    I input vector 1                                              */ +    const opus_int16            *inVec2,            /*    I input vector 2                                              */ +    const opus_int              len                 /*    I vector lengths                                              */ +) +{ +    opus_int   i; +    opus_int64 sum = 0; +    for( i = 0; i < len; i++ ) { +        sum = silk_SMLALBB( sum, inVec1[ i ], inVec2[ i ] ); +    } +    return sum; +} + +/* Function that returns the maximum absolut value of the input vector */ +opus_int16 silk_int16_array_maxabs(                 /* O   Maximum absolute value, max: 2^15-1                          */ +    const opus_int16            *vec,               /* I   Input vector  [len]                                          */ +    const opus_int32            len                 /* I   Length of input vector                                       */ +) +{ +    opus_int32 max = 0, i, lvl = 0, ind; +    if( len == 0 ) return 0; + +    ind = len - 1; +    max = silk_SMULBB( vec[ ind ], vec[ ind ] ); +    for( i = len - 2; i >= 0; i-- ) { +        lvl = silk_SMULBB( vec[ i ], vec[ i ] ); +        if( lvl > max ) { +            max = lvl; +            ind = i; +        } +    } + +    /* Do not return 32768, as it will not fit in an int16 so may lead to problems later on */ +    if( max >= 1073676289 ) {           /* (2^15-1)^2 = 1073676289 */ +        return( silk_int16_MAX ); +    } else { +        if( vec[ ind ] < 0 ) { +            return( -vec[ ind ] ); +        } else { +            return(  vec[ ind ] ); +        } +    } +} diff --git a/src/opus-1.0.2/silk/fixed/warped_autocorrelation_FIX.c b/src/opus-1.0.2/silk/fixed/warped_autocorrelation_FIX.c new file mode 100644 index 00000000..d7a3944b --- /dev/null +++ b/src/opus-1.0.2/silk/fixed/warped_autocorrelation_FIX.c @@ -0,0 +1,88 @@ +/*********************************************************************** +Copyright (c) 2006-2011, Skype Limited. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, 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 Internet Society, IETF or IETF Trust, nor the  +names of specific contributors, may be used to endorse or promote +products derived from this software without specific prior written +permission. +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. +***********************************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "main_FIX.h" + +#define QC  10 +#define QS  14 + +/* Autocorrelations for a warped frequency axis */ +void silk_warped_autocorrelation_FIX( +          opus_int32                *corr,                                  /* O    Result [order + 1]                                                          */ +          opus_int                  *scale,                                 /* O    Scaling of the correlation vector                                           */ +    const opus_int16                *input,                                 /* I    Input data to correlate                                                     */ +    const opus_int                  warping_Q16,                            /* I    Warping coefficient                                                         */ +    const opus_int                  length,                                 /* I    Length of input                                                             */ +    const opus_int                  order                                   /* I    Correlation order (even)                                                    */ +) +{ +    opus_int   n, i, lsh; +    opus_int32 tmp1_QS, tmp2_QS; +    opus_int32 state_QS[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 }; +    opus_int64 corr_QC[  MAX_SHAPE_LPC_ORDER + 1 ] = { 0 }; + +    /* Order must be even */ +    silk_assert( ( order & 1 ) == 0 ); +    silk_assert( 2 * QS - QC >= 0 ); + +    /* Loop over samples */ +    for( n = 0; n < length; n++ ) { +        tmp1_QS = silk_LSHIFT32( (opus_int32)input[ n ], QS ); +        /* Loop over allpass sections */ +        for( i = 0; i < order; i += 2 ) { +            /* Output of allpass section */ +            tmp2_QS = silk_SMLAWB( state_QS[ i ], state_QS[ i + 1 ] - tmp1_QS, warping_Q16 ); +            state_QS[ i ]  = tmp1_QS; +            corr_QC[  i ] += silk_RSHIFT64( silk_SMULL( tmp1_QS, state_QS[ 0 ] ), 2 * QS - QC ); +            /* Output of allpass section */ +            tmp1_QS = silk_SMLAWB( state_QS[ i + 1 ], state_QS[ i + 2 ] - tmp2_QS, warping_Q16 ); +            state_QS[ i + 1 ]  = tmp2_QS; +            corr_QC[  i + 1 ] += silk_RSHIFT64( silk_SMULL( tmp2_QS, state_QS[ 0 ] ), 2 * QS - QC ); +        } +        state_QS[ order ] = tmp1_QS; +        corr_QC[  order ] += silk_RSHIFT64( silk_SMULL( tmp1_QS, state_QS[ 0 ] ), 2 * QS - QC ); +    } + +    lsh = silk_CLZ64( corr_QC[ 0 ] ) - 35; +    lsh = silk_LIMIT( lsh, -12 - QC, 30 - QC ); +    *scale = -( QC + lsh ); +    silk_assert( *scale >= -30 && *scale <= 12 ); +    if( lsh >= 0 ) { +        for( i = 0; i < order + 1; i++ ) { +            corr[ i ] = (opus_int32)silk_CHECK_FIT32( silk_LSHIFT64( corr_QC[ i ], lsh ) ); +        } +    } else { +        for( i = 0; i < order + 1; i++ ) { +            corr[ i ] = (opus_int32)silk_CHECK_FIT32( silk_RSHIFT64( corr_QC[ i ], -lsh ) ); +        } +    } +    silk_assert( corr_QC[ 0 ] >= 0 ); /* If breaking, decrease QC*/ +}  | 
