Displaying 1 result from an estimated 1 matches for "target_ptr".
Did you mean:
target_cur
2013 Oct 08
1
[PATCH] 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 <stefanbeller at googlemail.com>
---
silk/float/pitch_analysis_core_FLP.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/silk/float/pitch_analysis_core_FLP.c b/silk/float/pitch_analysis_cor...