ref: 2891d852a38b3acb1810fad9f26ba7e0b181cfb2
parent: d6b56793d84490e78c91afcb3af96071094b7292
author: Stefan Beller <[email protected]>
date: Tue Oct 8 20:01:36 EDT 2013
Remove dead code The compiler warned: silk/float/pitch_analysis_core_FLP.c: In function 'silk_P_Ana_calc_corr_st3': silk/float/pitch_analysis_core_FLP.c:499:36: warning: variable 'basis_ptr' set but not used [-Wunused-but-set-variable] const silk_float *target_ptr, *basis_ptr; This means we can safely remove it. Signed-off-by: Stefan Beller <[email protected]> Signed-off-by: Jean-Marc Valin <[email protected]>
--- a/silk/float/pitch_analysis_core_FLP.c
+++ b/silk/float/pitch_analysis_core_FLP.c
@@ -496,7 +496,7 @@
opus_int complexity /* I Complexity setting */
)
{
- const silk_float *target_ptr, *basis_ptr;
+ const silk_float *target_ptr;
opus_int i, j, k, lag_counter, lag_low, lag_high;
opus_int nb_cbk_search, delta, idx, cbk_size;
silk_float scratch_mem[ SCRATCH_SIZE ];
@@ -529,7 +529,6 @@
silk_assert(lag_high-lag_low+1 <= SCRATCH_SIZE);
celt_pitch_xcorr( target_ptr, target_ptr - start_lag - lag_high, xcorr, sf_length, lag_high - lag_low + 1 );
for( j = lag_low; j <= lag_high; j++ ) {
- basis_ptr = target_ptr - ( start_lag + j );
silk_assert( lag_counter < SCRATCH_SIZE );
scratch_mem[ lag_counter ] = xcorr[ lag_high - j ];
lag_counter++;