ref: ad1df9b72ac5a58de978f5d3e8d2bcc0d19d3475
parent: 26a6af7d29e6ec29f66e076b3a26157c2415c8d2
author: Paul Brossier <piem@piem.org>
date: Thu Apr 21 15:03:58 EDT 2016
src/mathutils.*: more const qualifiers
--- a/src/mathutils.c
+++ b/src/mathutils.c
@@ -291,7 +291,7 @@
}
smpl_t
-aubio_level_lin (fvec_t * f)
+aubio_level_lin (const fvec_t * f)
{
smpl_t energy = 0.;
#ifndef HAVE_ATLAS
@@ -440,7 +440,7 @@
}
}
-smpl_t fvec_quadratic_peak_pos (fvec_t * x, uint_t pos) {
+smpl_t fvec_quadratic_peak_pos (const fvec_t * x, uint_t pos) {
smpl_t s0, s1, s2; uint_t x0, x2;
smpl_t half = .5, two = 2.;
if (pos == 0 || pos == x->length - 1) return pos;
@@ -465,7 +465,7 @@
return x1 - .25 * (x0 - x2) * (pos - index);
}
-uint_t fvec_peakpick(fvec_t * onset, uint_t pos) {
+uint_t fvec_peakpick(const fvec_t * onset, uint_t pos) {
uint_t tmp=0;
tmp = (onset->data[pos] > onset->data[pos-1]
&& onset->data[pos] > onset->data[pos+1]
@@ -552,13 +552,13 @@
}
smpl_t
-aubio_db_spl (fvec_t * o)
+aubio_db_spl (const fvec_t * o)
{
return 10. * LOG10 (aubio_level_lin (o));
}
uint_t
-aubio_silence_detection (fvec_t * o, smpl_t threshold)
+aubio_silence_detection (const fvec_t * o, smpl_t threshold)
{
return (aubio_db_spl (o) < threshold);
}
@@ -598,7 +598,7 @@
}
void
-aubio_autocorr (fvec_t * input, fvec_t * output)
+aubio_autocorr (const fvec_t * input, fvec_t * output)
{
uint_t i, j, length = input->length;
smpl_t *data, *acf;
--- a/src/mathutils.h
+++ b/src/mathutils.h
@@ -250,7 +250,7 @@
\return \f$ p + p_{frac} \f$ exact peak position of interpolated maximum or minimum
*/
-smpl_t fvec_quadratic_peak_pos (fvec_t * x, uint_t p);
+smpl_t fvec_quadratic_peak_pos (const fvec_t * x, uint_t p);
/** finds magnitude of peak by quadratic interpolation
@@ -293,7 +293,7 @@
\return 1 if a peak is found, 0 otherwise
*/
-uint_t fvec_peakpick (fvec_t * v, uint_t p);
+uint_t fvec_peakpick (const fvec_t * v, uint_t p);
/** return 1 if a is a power of 2, 0 otherwise */
uint_t aubio_is_power_of_two(uint_t a);
@@ -307,7 +307,7 @@
\param output vector to store autocorrelation function to
*/
-void aubio_autocorr (fvec_t * input, fvec_t * output);
+void aubio_autocorr (const fvec_t * input, fvec_t * output);
#ifdef __cplusplus
}