annotate src/opus-1.3/silk/float/burg_modified_FLP.c @ 81:7029a4916348

Merge build update
author Chris Cannam
date Thu, 31 Oct 2019 13:36:58 +0000
parents 7aeed7906520
children
rev   line source
Chris@69 1 /***********************************************************************
Chris@69 2 Copyright (c) 2006-2011, Skype Limited. All rights reserved.
Chris@69 3 Redistribution and use in source and binary forms, with or without
Chris@69 4 modification, are permitted provided that the following conditions
Chris@69 5 are met:
Chris@69 6 - Redistributions of source code must retain the above copyright notice,
Chris@69 7 this list of conditions and the following disclaimer.
Chris@69 8 - Redistributions in binary form must reproduce the above copyright
Chris@69 9 notice, this list of conditions and the following disclaimer in the
Chris@69 10 documentation and/or other materials provided with the distribution.
Chris@69 11 - Neither the name of Internet Society, IETF or IETF Trust, nor the
Chris@69 12 names of specific contributors, may be used to endorse or promote
Chris@69 13 products derived from this software without specific prior written
Chris@69 14 permission.
Chris@69 15 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Chris@69 16 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Chris@69 17 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Chris@69 18 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
Chris@69 19 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Chris@69 20 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Chris@69 21 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Chris@69 22 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Chris@69 23 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Chris@69 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Chris@69 25 POSSIBILITY OF SUCH DAMAGE.
Chris@69 26 ***********************************************************************/
Chris@69 27
Chris@69 28 #ifdef HAVE_CONFIG_H
Chris@69 29 #include "config.h"
Chris@69 30 #endif
Chris@69 31
Chris@69 32 #include "SigProc_FLP.h"
Chris@69 33 #include "tuning_parameters.h"
Chris@69 34 #include "define.h"
Chris@69 35
Chris@69 36 #define MAX_FRAME_SIZE 384 /* subfr_length * nb_subfr = ( 0.005 * 16000 + 16 ) * 4 = 384*/
Chris@69 37
Chris@69 38 /* Compute reflection coefficients from input signal */
Chris@69 39 silk_float silk_burg_modified_FLP( /* O returns residual energy */
Chris@69 40 silk_float A[], /* O prediction coefficients (length order) */
Chris@69 41 const silk_float x[], /* I input signal, length: nb_subfr*(D+L_sub) */
Chris@69 42 const silk_float minInvGain, /* I minimum inverse prediction gain */
Chris@69 43 const opus_int subfr_length, /* I input signal subframe length (incl. D preceding samples) */
Chris@69 44 const opus_int nb_subfr, /* I number of subframes stacked in x */
Chris@69 45 const opus_int D /* I order */
Chris@69 46 )
Chris@69 47 {
Chris@69 48 opus_int k, n, s, reached_max_gain;
Chris@69 49 double C0, invGain, num, nrg_f, nrg_b, rc, Atmp, tmp1, tmp2;
Chris@69 50 const silk_float *x_ptr;
Chris@69 51 double C_first_row[ SILK_MAX_ORDER_LPC ], C_last_row[ SILK_MAX_ORDER_LPC ];
Chris@69 52 double CAf[ SILK_MAX_ORDER_LPC + 1 ], CAb[ SILK_MAX_ORDER_LPC + 1 ];
Chris@69 53 double Af[ SILK_MAX_ORDER_LPC ];
Chris@69 54
Chris@69 55 celt_assert( subfr_length * nb_subfr <= MAX_FRAME_SIZE );
Chris@69 56
Chris@69 57 /* Compute autocorrelations, added over subframes */
Chris@69 58 C0 = silk_energy_FLP( x, nb_subfr * subfr_length );
Chris@69 59 silk_memset( C_first_row, 0, SILK_MAX_ORDER_LPC * sizeof( double ) );
Chris@69 60 for( s = 0; s < nb_subfr; s++ ) {
Chris@69 61 x_ptr = x + s * subfr_length;
Chris@69 62 for( n = 1; n < D + 1; n++ ) {
Chris@69 63 C_first_row[ n - 1 ] += silk_inner_product_FLP( x_ptr, x_ptr + n, subfr_length - n );
Chris@69 64 }
Chris@69 65 }
Chris@69 66 silk_memcpy( C_last_row, C_first_row, SILK_MAX_ORDER_LPC * sizeof( double ) );
Chris@69 67
Chris@69 68 /* Initialize */
Chris@69 69 CAb[ 0 ] = CAf[ 0 ] = C0 + FIND_LPC_COND_FAC * C0 + 1e-9f;
Chris@69 70 invGain = 1.0f;
Chris@69 71 reached_max_gain = 0;
Chris@69 72 for( n = 0; n < D; n++ ) {
Chris@69 73 /* Update first row of correlation matrix (without first element) */
Chris@69 74 /* Update last row of correlation matrix (without last element, stored in reversed order) */
Chris@69 75 /* Update C * Af */
Chris@69 76 /* Update C * flipud(Af) (stored in reversed order) */
Chris@69 77 for( s = 0; s < nb_subfr; s++ ) {
Chris@69 78 x_ptr = x + s * subfr_length;
Chris@69 79 tmp1 = x_ptr[ n ];
Chris@69 80 tmp2 = x_ptr[ subfr_length - n - 1 ];
Chris@69 81 for( k = 0; k < n; k++ ) {
Chris@69 82 C_first_row[ k ] -= x_ptr[ n ] * x_ptr[ n - k - 1 ];
Chris@69 83 C_last_row[ k ] -= x_ptr[ subfr_length - n - 1 ] * x_ptr[ subfr_length - n + k ];
Chris@69 84 Atmp = Af[ k ];
Chris@69 85 tmp1 += x_ptr[ n - k - 1 ] * Atmp;
Chris@69 86 tmp2 += x_ptr[ subfr_length - n + k ] * Atmp;
Chris@69 87 }
Chris@69 88 for( k = 0; k <= n; k++ ) {
Chris@69 89 CAf[ k ] -= tmp1 * x_ptr[ n - k ];
Chris@69 90 CAb[ k ] -= tmp2 * x_ptr[ subfr_length - n + k - 1 ];
Chris@69 91 }
Chris@69 92 }
Chris@69 93 tmp1 = C_first_row[ n ];
Chris@69 94 tmp2 = C_last_row[ n ];
Chris@69 95 for( k = 0; k < n; k++ ) {
Chris@69 96 Atmp = Af[ k ];
Chris@69 97 tmp1 += C_last_row[ n - k - 1 ] * Atmp;
Chris@69 98 tmp2 += C_first_row[ n - k - 1 ] * Atmp;
Chris@69 99 }
Chris@69 100 CAf[ n + 1 ] = tmp1;
Chris@69 101 CAb[ n + 1 ] = tmp2;
Chris@69 102
Chris@69 103 /* Calculate nominator and denominator for the next order reflection (parcor) coefficient */
Chris@69 104 num = CAb[ n + 1 ];
Chris@69 105 nrg_b = CAb[ 0 ];
Chris@69 106 nrg_f = CAf[ 0 ];
Chris@69 107 for( k = 0; k < n; k++ ) {
Chris@69 108 Atmp = Af[ k ];
Chris@69 109 num += CAb[ n - k ] * Atmp;
Chris@69 110 nrg_b += CAb[ k + 1 ] * Atmp;
Chris@69 111 nrg_f += CAf[ k + 1 ] * Atmp;
Chris@69 112 }
Chris@69 113 silk_assert( nrg_f > 0.0 );
Chris@69 114 silk_assert( nrg_b > 0.0 );
Chris@69 115
Chris@69 116 /* Calculate the next order reflection (parcor) coefficient */
Chris@69 117 rc = -2.0 * num / ( nrg_f + nrg_b );
Chris@69 118 silk_assert( rc > -1.0 && rc < 1.0 );
Chris@69 119
Chris@69 120 /* Update inverse prediction gain */
Chris@69 121 tmp1 = invGain * ( 1.0 - rc * rc );
Chris@69 122 if( tmp1 <= minInvGain ) {
Chris@69 123 /* Max prediction gain exceeded; set reflection coefficient such that max prediction gain is exactly hit */
Chris@69 124 rc = sqrt( 1.0 - minInvGain / invGain );
Chris@69 125 if( num > 0 ) {
Chris@69 126 /* Ensure adjusted reflection coefficients has the original sign */
Chris@69 127 rc = -rc;
Chris@69 128 }
Chris@69 129 invGain = minInvGain;
Chris@69 130 reached_max_gain = 1;
Chris@69 131 } else {
Chris@69 132 invGain = tmp1;
Chris@69 133 }
Chris@69 134
Chris@69 135 /* Update the AR coefficients */
Chris@69 136 for( k = 0; k < (n + 1) >> 1; k++ ) {
Chris@69 137 tmp1 = Af[ k ];
Chris@69 138 tmp2 = Af[ n - k - 1 ];
Chris@69 139 Af[ k ] = tmp1 + rc * tmp2;
Chris@69 140 Af[ n - k - 1 ] = tmp2 + rc * tmp1;
Chris@69 141 }
Chris@69 142 Af[ n ] = rc;
Chris@69 143
Chris@69 144 if( reached_max_gain ) {
Chris@69 145 /* Reached max prediction gain; set remaining coefficients to zero and exit loop */
Chris@69 146 for( k = n + 1; k < D; k++ ) {
Chris@69 147 Af[ k ] = 0.0;
Chris@69 148 }
Chris@69 149 break;
Chris@69 150 }
Chris@69 151
Chris@69 152 /* Update C * Af and C * Ab */
Chris@69 153 for( k = 0; k <= n + 1; k++ ) {
Chris@69 154 tmp1 = CAf[ k ];
Chris@69 155 CAf[ k ] += rc * CAb[ n - k + 1 ];
Chris@69 156 CAb[ n - k + 1 ] += rc * tmp1;
Chris@69 157 }
Chris@69 158 }
Chris@69 159
Chris@69 160 if( reached_max_gain ) {
Chris@69 161 /* Convert to silk_float */
Chris@69 162 for( k = 0; k < D; k++ ) {
Chris@69 163 A[ k ] = (silk_float)( -Af[ k ] );
Chris@69 164 }
Chris@69 165 /* Subtract energy of preceding samples from C0 */
Chris@69 166 for( s = 0; s < nb_subfr; s++ ) {
Chris@69 167 C0 -= silk_energy_FLP( x + s * subfr_length, D );
Chris@69 168 }
Chris@69 169 /* Approximate residual energy */
Chris@69 170 nrg_f = C0 * invGain;
Chris@69 171 } else {
Chris@69 172 /* Compute residual energy and store coefficients as silk_float */
Chris@69 173 nrg_f = CAf[ 0 ];
Chris@69 174 tmp1 = 1.0;
Chris@69 175 for( k = 0; k < D; k++ ) {
Chris@69 176 Atmp = Af[ k ];
Chris@69 177 nrg_f += CAf[ k + 1 ] * Atmp;
Chris@69 178 tmp1 += Atmp * Atmp;
Chris@69 179 A[ k ] = (silk_float)(-Atmp);
Chris@69 180 }
Chris@69 181 nrg_f -= FIND_LPC_COND_FAC * C0 * tmp1;
Chris@69 182 }
Chris@69 183
Chris@69 184 /* Return residual energy */
Chris@69 185 return (silk_float)nrg_f;
Chris@69 186 }