| Index: silk/fixed/find_LTP_FIX.c
|
| diff --git a/silk/fixed/find_LTP_FIX.c b/silk/fixed/find_LTP_FIX.c
|
| index 8c4d70376cb8bacbc8f316cff04eeed20e4455fd..1314a281375bd69c7270ca25fdd91e88e38c0c76 100644
|
| --- a/silk/fixed/find_LTP_FIX.c
|
| +++ b/silk/fixed/find_LTP_FIX.c
|
| @@ -50,7 +50,8 @@ void silk_find_LTP_FIX(
|
| 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 corr_rshifts[ MAX_NB_SUBFR ], /* O right shifts applied to correlations */
|
| + int arch /* I Run-time architecture */
|
| )
|
| {
|
| opus_int i, k, lshift;
|
| @@ -84,10 +85,10 @@ void silk_find_LTP_FIX(
|
| 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 ] ) */
|
| + silk_corrMatrix_FIX( lag_ptr, subfr_length, LTP_ORDER, LTP_CORRS_HEAD_ROOM, WLTP_ptr, &corr_rshifts[ k ], arch ); /* 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 ] ) */
|
| + silk_corrVector_FIX( lag_ptr, r_ptr, subfr_length, LTP_ORDER, Rr, corr_rshifts[ k ], arch ); /* 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 ] ) */
|
| }
|
|
|