From: Paul Brossier Date: Thu, 5 Nov 2009 23:06:27 +0000 (+0100) Subject: src/: rename peakpick.h to peakpicker.h, make public again X-Git-Tag: bzr2git~22 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=3e17aed37ad2b2c7b1d5b7e4e0900b183416e058;p=aubio.git src/: rename peakpick.h to peakpicker.h, make public again --- diff --git a/src/aubio.h b/src/aubio.h index 3079e75b..269e88be 100644 --- a/src/aubio.h +++ b/src/aubio.h @@ -169,6 +169,7 @@ extern "C" #include "spectral/specdesc.h" #include "pitch/pitch.h" #include "onset/onset.h" +#include "onset/peakpicker.h" #include "tempo/tempo.h" #if AUBIO_UNSTABLE @@ -184,7 +185,6 @@ extern "C" #include "pitch/pitchyinfft.h" #include "pitch/pitchschmitt.h" #include "pitch/pitchfcomb.h" -#include "onset/peakpick.h" #include "tempo/beattracking.h" #endif diff --git a/src/onset/onset.c b/src/onset/onset.c index e9c0a4cc..fee33747 100644 --- a/src/onset/onset.c +++ b/src/onset/onset.c @@ -23,7 +23,7 @@ #include "cvec.h" #include "spectral/specdesc.h" #include "spectral/phasevoc.h" -#include "onset/peakpick.h" +#include "onset/peakpicker.h" #include "mathutils.h" #include "onset/onset.h" diff --git a/src/onset/peakpick.c b/src/onset/peakpicker.c similarity index 99% rename from src/onset/peakpick.c rename to src/onset/peakpicker.c index 43081b93..71985de8 100644 --- a/src/onset/peakpick.c +++ b/src/onset/peakpicker.c @@ -24,7 +24,7 @@ #include "lvec.h" #include "temporal/filter.h" #include "temporal/biquad.h" -#include "onset/peakpick.h" +#include "onset/peakpicker.h" /** function pointer to thresholding function */ typedef smpl_t (*aubio_thresholdfn_t)(fvec_t *input, uint_t channel); diff --git a/src/onset/peakpick.h b/src/onset/peakpicker.h similarity index 100% rename from src/onset/peakpick.h rename to src/onset/peakpicker.h diff --git a/src/tempo/tempo.c b/src/tempo/tempo.c index 469ff691..1bbe62c1 100644 --- a/src/tempo/tempo.c +++ b/src/tempo/tempo.c @@ -24,7 +24,7 @@ #include "spectral/specdesc.h" #include "tempo/beattracking.h" #include "spectral/phasevoc.h" -#include "onset/peakpick.h" +#include "onset/peakpicker.h" #include "mathutils.h" #include "tempo/tempo.h"