src/: change c header identifiers (see #35)
authorPaul Brossier <piem@piem.org>
Fri, 22 Apr 2016 19:15:29 +0000 (21:15 +0200)
committerPaul Brossier <piem@piem.org>
Fri, 22 Apr 2016 19:15:29 +0000 (21:15 +0200)
48 files changed:
python/ext/py-musicutils.h
src/aubio_priv.h
src/cvec.h
src/fmat.h
src/fvec.h
src/io/audio_unit.h
src/io/sink.h
src/io/sink_apple_audio.h
src/io/sink_sndfile.h
src/io/sink_wavwrite.h
src/io/source.h
src/io/source_apple_audio.h
src/io/source_avcodec.h
src/io/source_sndfile.h
src/io/source_wavread.h
src/lvec.h
src/mathutils.h
src/musicutils.h
src/onset/onset.h
src/onset/peakpicker.h
src/pitch/pitch.h
src/pitch/pitchfcomb.h
src/pitch/pitchmcomb.h
src/pitch/pitchschmitt.h
src/pitch/pitchspecacf.h
src/pitch/pitchyin.h
src/pitch/pitchyinfft.h
src/spectral/fft.h
src/spectral/filterbank.h
src/spectral/filterbank_mel.h
src/spectral/mfcc.h
src/spectral/phasevoc.h
src/spectral/specdesc.h
src/spectral/tss.h
src/synth/sampler.h
src/synth/wavetable.h
src/tempo/beattracking.h
src/tempo/tempo.h
src/temporal/a_weighting.h
src/temporal/biquad.h
src/temporal/c_weighting.h
src/temporal/filter.h
src/temporal/resampler.h
src/types.h
src/utils/hist.h
src/utils/parameter.h
src/utils/scale.h
src/vecutils.h

index f6d509f..54ee230 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef _PY_AUBIO_MUSICUTILS_H_
-#define _PY_AUBIO_MUSICUTILS_H_
+#ifndef PY_AUBIO_MUSICUTILS_H
+#define PY_AUBIO_MUSICUTILS_H
 
 static char Py_aubio_window_doc[] = ""
 "window(string, integer) -> fvec\n"
@@ -71,4 +71,4 @@ static char Py_aubio_level_detection_doc[] = ""
 
 PyObject * Py_aubio_level_detection(PyObject *self, PyObject *args);
 
-#endif /* _PY_AUBIO_MUSICUTILS_H_ */
+#endif /* PY_AUBIO_MUSICUTILS_H */
index b25c934..396a711 100644 (file)
@@ -24,8 +24,8 @@
  * This file is for inclusion from _within_ the library only.
  */
 
-#ifndef _AUBIO__PRIV_H
-#define _AUBIO__PRIV_H
+#ifndef AUBIO_PRIV_H
+#define AUBIO_PRIV_H
 
 /*********************
  *
@@ -285,4 +285,4 @@ typedef enum {
 #define UNUSED
 #endif
 
-#endif /* _AUBIO__PRIV_H */
+#endif /* AUBIO_PRIV_H */
index e13ca63..d0a9c2b 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO__CVEC_H
-#define _AUBIO__CVEC_H
+#ifndef AUBIO_CVEC_H
+#define AUBIO_CVEC_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -234,4 +234,4 @@ void cvec_zeros(cvec_t *s);
 }
 #endif
 
-#endif /* _AUBIO__CVEC_H */
+#endif /* AUBIO_CVEC_H */
index 05d0975..955a8d5 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO__FMAT_H
-#define _AUBIO__FMAT_H
+#ifndef AUBIO_FMAT_H
+#define AUBIO_FMAT_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -169,4 +169,4 @@ void fmat_vecmul(const fmat_t *s, const fvec_t *scale, fvec_t *output);
 }
 #endif
 
-#endif /* _AUBIO__FMAT_H */
+#endif /* AUBIO_FMAT_H */
index ee732a4..bd8c5a6 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO__FVEC_H
-#define _AUBIO__FVEC_H
+#ifndef AUBIO_FVEC_H
+#define AUBIO_FVEC_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -175,4 +175,4 @@ void fvec_weighted_copy(const fvec_t *in, const fvec_t *weight, fvec_t *out);
 }
 #endif
 
-#endif /* _AUBIO__FVEC_H */
+#endif /* AUBIO_FVEC_H */
index c518bc6..46f86b1 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_AUDIO_UNIT_H
-#define _AUBIO_AUDIO_UNIT_H
+#ifndef AUBIO_AUDIO_UNIT_H
+#define AUBIO_AUDIO_UNIT_H
 
 /** \file
 
@@ -58,4 +58,4 @@ uint_t del_aubio_audio_unit(aubio_audio_unit_t *o);
 }
 #endif
 
-#endif /* _AUBIO_AUDIO_UNIT_H */
+#endif /* AUBIO_AUDIO_UNIT_H */
index c196ef6..ee0f5cf 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SINK_H
-#define _AUBIO_SINK_H
+#ifndef AUBIO_SINK_H
+#define AUBIO_SINK_H
 
 /** \file
 
@@ -178,4 +178,4 @@ void del_aubio_sink(aubio_sink_t * s);
 }
 #endif
 
-#endif /* _AUBIO_SINK_H */
+#endif /* AUBIO_SINK_H */
index bd64b2c..14d6a8a 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SINK_APPLE_AUDIO_H
-#define _AUBIO_SINK_APPLE_AUDIO_H
+#ifndef AUBIO_SINK_APPLE_AUDIO_H
+#define AUBIO_SINK_APPLE_AUDIO_H
 
 /** \file
 
@@ -160,4 +160,4 @@ void del_aubio_sink_apple_audio(aubio_sink_apple_audio_t * s);
 }
 #endif
 
-#endif /* _AUBIO_SINK_APPLE_AUDIO_H */
+#endif /* AUBIO_SINK_APPLE_AUDIO_H */
index 977ff1d..083c4ca 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SINK_SNDFILE_H
-#define _AUBIO_SINK_SNDFILE_H
+#ifndef AUBIO_SINK_SNDFILE_H
+#define AUBIO_SINK_SNDFILE_H
 
 /** \file
 
@@ -159,4 +159,4 @@ void del_aubio_sink_sndfile(aubio_sink_sndfile_t * s);
 }
 #endif
 
-#endif /* _AUBIO_SINK_SNDFILE_H */
+#endif /* AUBIO_SINK_SNDFILE_H */
index a84d03f..bb479e4 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SINK_WAVWRITE_H
-#define _AUBIO_SINK_WAVWRITE_H
+#ifndef AUBIO_SINK_WAVWRITE_H
+#define AUBIO_SINK_WAVWRITE_H
 
 /** \file
 
@@ -159,4 +159,4 @@ void del_aubio_sink_wavwrite(aubio_sink_wavwrite_t * s);
 }
 #endif
 
-#endif /* _AUBIO_SINK_WAVWRITE_H */
+#endif /* AUBIO_SINK_WAVWRITE_H */
index 18722b6..8d49b01 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SOURCE_H
-#define _AUBIO_SOURCE_H
+#ifndef AUBIO_SOURCE_H
+#define AUBIO_SOURCE_H
 
 /** \file
 
@@ -171,4 +171,4 @@ void del_aubio_source(aubio_source_t * s);
 }
 #endif
 
-#endif /* _AUBIO_SOURCE_H */
+#endif /* AUBIO_SOURCE_H */
index 24cc46c..bfd315c 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SOURCE_APPLE_AUDIO_H
-#define _AUBIO_SOURCE_APPLE_AUDIO_H
+#ifndef AUBIO_SOURCE_APPLE_AUDIO_H
+#define AUBIO_SOURCE_APPLE_AUDIO_H
 
 /** \file
 
@@ -143,4 +143,4 @@ void del_aubio_source_apple_audio(aubio_source_apple_audio_t * s);
 }
 #endif
 
-#endif /* _AUBIO_SOURCE_APPLE_AUDIO_H */
+#endif /* AUBIO_SOURCE_APPLE_AUDIO_H */
index 7925591..71c98f6 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SOURCE_AVCODEC_H
-#define _AUBIO_SOURCE_AVCODEC_H
+#ifndef AUBIO_SOURCE_AVCODEC_H
+#define AUBIO_SOURCE_AVCODEC_H
 
 /** \file
 
@@ -142,4 +142,4 @@ void del_aubio_source_avcodec(aubio_source_avcodec_t * s);
 }
 #endif
 
-#endif /* _AUBIO_SOURCE_AVCODEC_H */
+#endif /* AUBIO_SOURCE_AVCODEC_H */
index 1ca8fbc..e382c3b 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SOURCE_SNDFILE_H
-#define _AUBIO_SOURCE_SNDFILE_H
+#ifndef AUBIO_SOURCE_SNDFILE_H
+#define AUBIO_SOURCE_SNDFILE_H
 
 /** \file
 
@@ -142,4 +142,4 @@ void del_aubio_source_sndfile(aubio_source_sndfile_t * s);
 }
 #endif
 
-#endif /* _AUBIO_SOURCE_SNDFILE_H */
+#endif /* AUBIO_SOURCE_SNDFILE_H */
index 3eee3da..a0ec141 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SOURCE_WAVREAD_H
-#define _AUBIO_SOURCE_WAVREAD_H
+#ifndef AUBIO_SOURCE_WAVREAD_H
+#define AUBIO_SOURCE_WAVREAD_H
 
 /** \file
 
@@ -147,4 +147,4 @@ void del_aubio_source_wavread(aubio_source_wavread_t * s);
 }
 #endif
 
-#endif /* _AUBIO_SOURCE_WAVREAD_H */
+#endif /* AUBIO_SOURCE_WAVREAD_H */
index bdcf497..402ba0f 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO__LVEC_H
-#define _AUBIO__LVEC_H
+#ifndef AUBIO_LVEC_H
+#define AUBIO_LVEC_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -115,4 +115,4 @@ void lvec_ones(lvec_t *s);
 }
 #endif
 
-#endif /* _AUBIO__LVEC_H */
+#endif /* AUBIO_LVEC_H */
index 7ed5ed1..6638f69 100644 (file)
@@ -27,8 +27,8 @@
 
  */
 
-#ifndef _AUBIO_MATHUTILS_H
-#define _AUBIO_MATHUTILS_H
+#ifndef AUBIO_MATHUTILS_H
+#define AUBIO_MATHUTILS_H
 
 #include "fvec.h"
 #include "musicutils.h"
@@ -313,4 +313,4 @@ void aubio_autocorr (const fvec_t * input, fvec_t * output);
 }
 #endif
 
-#endif /* _AUBIO_MATHUTILS_H */
+#endif /* AUBIO_MATHUTILS_H */
index 0e317fb..29d0efa 100644 (file)
@@ -22,8 +22,8 @@
  *  various functions useful in audio signal processing
  */
 
-#ifndef _AUBIO__MUSICUTILS_H
-#define _AUBIO__MUSICUTILS_H
+#ifndef AUBIO_MUSICUTILS_H
+#define AUBIO_MUSICUTILS_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -160,4 +160,4 @@ smpl_t aubio_level_detection (fvec_t * v, smpl_t threshold);
 }
 #endif
 
-#endif /* _AUBIO__MUSICUTILS_H */
+#endif /* AUBIO_MUSICUTILS_H */
index 6dae36f..e788603 100644 (file)
@@ -39,8 +39,8 @@
 */
 
 
-#ifndef _AUBIO_ONSET_H
-#define _AUBIO_ONSET_H
+#ifndef AUBIO_ONSET_H
+#define AUBIO_ONSET_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -285,4 +285,4 @@ void del_aubio_onset(aubio_onset_t * o);
 }
 #endif
 
-#endif /* _AUBIO_ONSET_H */
+#endif /* AUBIO_ONSET_H */
index c137cc8..dafaf91 100644 (file)
@@ -26,8 +26,8 @@
 
 */
 
-#ifndef _AUBIO_PEAKPICK_H
-#define _AUBIO_PEAKPICK_H
+#ifndef AUBIO_PEAKPICK_H
+#define AUBIO_PEAKPICK_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -54,4 +54,4 @@ smpl_t aubio_peakpicker_get_threshold(aubio_peakpicker_t * p);
 }
 #endif
 
-#endif /* _AUBIO_PEAKPICK_H */
+#endif /* AUBIO_PEAKPICK_H */
index 18fc13c..e0ae545 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_PITCH_H
-#define _AUBIO_PITCH_H
+#ifndef AUBIO_PITCH_H
+#define AUBIO_PITCH_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -179,4 +179,4 @@ smpl_t aubio_pitch_get_confidence (aubio_pitch_t * o);
 }
 #endif
 
-#endif /* _AUBIO_PITCH_H */
+#endif /* AUBIO_PITCH_H */
index f872744..5016708 100644 (file)
@@ -34,8 +34,8 @@
 
 */
 
-#ifndef _AUBIO_PITCHFCOMB_H
-#define _AUBIO_PITCHFCOMB_H
+#ifndef AUBIO_PITCHFCOMB_H
+#define AUBIO_PITCHFCOMB_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -73,4 +73,4 @@ void del_aubio_pitchfcomb (aubio_pitchfcomb_t * p);
 }
 #endif
 
-#endif /* _AUBIO_PITCHFCOMB_H */
+#endif /* AUBIO_PITCHFCOMB_H */
index b9fbcbd..88f117f 100644 (file)
@@ -35,8 +35,8 @@
 
 */
 
-#ifndef _AUBIO_PITCHMCOMB_H
-#define _AUBIO_PITCHMCOMB_H
+#ifndef AUBIO_PITCHMCOMB_H
+#define AUBIO_PITCHMCOMB_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -74,4 +74,4 @@ void del_aubio_pitchmcomb (aubio_pitchmcomb_t * p);
 }
 #endif
 
-#endif /* _AUBIO_PITCHMCOMB_H */
+#endif /* AUBIO_PITCHMCOMB_H */
index f7e7760..db952c3 100644 (file)
@@ -34,8 +34,8 @@
 
 */
 
-#ifndef _AUBIO_PITCHSCHMITT_H
-#define _AUBIO_PITCHSCHMITT_H
+#ifndef AUBIO_PITCHSCHMITT_H
+#define AUBIO_PITCHSCHMITT_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -72,5 +72,4 @@ void del_aubio_pitchschmitt (aubio_pitchschmitt_t * p);
 }
 #endif
 
-#endif /* _AUBIO_PITCHSCHMITT_H */
-
+#endif /* AUBIO_PITCHSCHMITT_H */
index 3c53974..e3c9c4c 100644 (file)
@@ -38,8 +38,8 @@
 
 */
 
-#ifndef _AUBIO_PITCHSPECACF_H
-#define _AUBIO_PITCHSPECACF_H
+#ifndef AUBIO_PITCHSPECACF_H
+#define AUBIO_PITCHSPECACF_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -100,4 +100,4 @@ smpl_t aubio_pitchspecacf_get_confidence (const aubio_pitchspecacf_t * o);
 }
 #endif
 
-#endif /* _AUBIO_PITCHSPECACF_H */
+#endif /* AUBIO_PITCHSPECACF_H */
index acb9afe..fa32b8d 100644 (file)
@@ -35,8 +35,8 @@
 
 */
 
-#ifndef _AUBIO_PITCHYIN_H
-#define _AUBIO_PITCHYIN_H
+#ifndef AUBIO_PITCHYIN_H
+#define AUBIO_PITCHYIN_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -97,4 +97,4 @@ smpl_t aubio_pitchyin_get_confidence (aubio_pitchyin_t * o);
 }
 #endif
 
-#endif /* _AUBIO_PITCHYIN_H */
+#endif /* AUBIO_PITCHYIN_H */
index a23927c..ccd4e51 100644 (file)
@@ -35,8 +35,8 @@
 
 */
 
-#ifndef _AUBIO_PITCHYINFFT_H
-#define _AUBIO_PITCHYINFFT_H
+#ifndef AUBIO_PITCHYINFFT_H
+#define AUBIO_PITCHYINFFT_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -96,4 +96,4 @@ smpl_t aubio_pitchyinfft_get_confidence (aubio_pitchyinfft_t * o);
 }
 #endif
 
-#endif /* _AUBIO_PITCHYINFFT_H */
+#endif /* AUBIO_PITCHYINFFT_H */
index e55e475..9c8a99c 100644 (file)
@@ -31,8 +31,8 @@
 
 */
 
-#ifndef _AUBIO_FFT_H
-#define _AUBIO_FFT_H
+#ifndef AUBIO_FFT_H
+#define AUBIO_FFT_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -141,4 +141,4 @@ void aubio_fft_get_real(const cvec_t * spectrum, fvec_t * compspec);
 }
 #endif
 
-#endif /* _AUBIO_FFT_H */
+#endif /* AUBIO_FFT_H */
index 8bc1652..769b5e7 100644 (file)
@@ -29,8 +29,8 @@
 
 */
 
-#ifndef _AUBIO_FILTERBANK_H
-#define _AUBIO_FILTERBANK_H
+#ifndef AUBIO_FILTERBANK_H
+#define AUBIO_FILTERBANK_H
 
 #ifdef __cplusplus
 extern "C"
@@ -87,4 +87,4 @@ uint_t aubio_filterbank_set_coeffs (aubio_filterbank_t * f, const fmat_t * filte
 }
 #endif
 
-#endif /* _AUBIO_FILTERBANK_H */
+#endif /* AUBIO_FILTERBANK_H */
index a3e806b..77f0be0 100644 (file)
@@ -31,8 +31,8 @@
 
 */
 
-#ifndef _AUBIO_FILTERBANK_MEL_H
-#define _AUBIO_FILTERBANK_MEL_H
+#ifndef AUBIO_FILTERBANK_MEL_H
+#define AUBIO_FILTERBANK_MEL_H
 
 #ifdef __cplusplus
 extern "C"
@@ -69,4 +69,4 @@ uint_t aubio_filterbank_set_mel_coeffs_slaney (aubio_filterbank_t * fb,
 }
 #endif
 
-#endif /* _AUBIO_FILTERBANK_MEL_H */
+#endif /* AUBIO_FILTERBANK_MEL_H */
index 4adcd22..a170e12 100644 (file)
@@ -34,8 +34,8 @@
 
 */
 
-#ifndef _AUBIO_MFCC_H
-#define _AUBIO_MFCC_H
+#ifndef AUBIO_MFCC_H
+#define AUBIO_MFCC_H
 
 #ifdef __cplusplus
 extern "C"
@@ -76,4 +76,4 @@ void aubio_mfcc_do (aubio_mfcc_t * mf, const cvec_t * in, fvec_t * out);
 }
 #endif
 
-#endif /* _AUBIO_MFCC_H */
+#endif /* AUBIO_MFCC_H */
index b9ff453..d1e440d 100644 (file)
@@ -31,8 +31,8 @@
 
 */
 
-#ifndef _AUBIO_PHASEVOC_H
-#define _AUBIO_PHASEVOC_H
+#ifndef AUBIO_PHASEVOC_H
+#define AUBIO_PHASEVOC_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -99,4 +99,4 @@ uint_t aubio_pvoc_get_hop(aubio_pvoc_t* pv);
 }
 #endif
 
-#endif /* _AUBIO_PHASEVOC_H */
+#endif /* AUBIO_PHASEVOC_H */
index 97c9bee..2cdb87a 100644 (file)
 */
 
 
-#ifndef _AUBIO_SPECDESC_H
-#define _AUBIO_SPECDESC_H
+#ifndef AUBIO_SPECDESC_H
+#define AUBIO_SPECDESC_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -191,4 +191,4 @@ void del_aubio_specdesc (aubio_specdesc_t * o);
 }
 #endif
 
-#endif /* _AUBIO_SPECDESC_H */
+#endif /* AUBIO_SPECDESC_H */
index 141eba1..a4f54a1 100644 (file)
@@ -36,8 +36,8 @@
 
 */
 
-#ifndef _AUBIO_TSS_H
-#define _AUBIO_TSS_H
+#ifndef AUBIO_TSS_H
+#define AUBIO_TSS_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -100,4 +100,4 @@ uint_t aubio_tss_set_beta (aubio_tss_t * o, smpl_t beta);
 }
 #endif
 
-#endif /* _AUBIO_TSS_H */
+#endif /* AUBIO_TSS_H */
index 39e974f..fb1304f 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_SAMPLER_H
-#define _AUBIO_SAMPLER_H
+#ifndef AUBIO_SAMPLER_H
+#define AUBIO_SAMPLER_H
 
 /** \file
 
@@ -137,4 +137,4 @@ void del_aubio_sampler( aubio_sampler_t * o );
 }
 #endif
 
-#endif /* _AUBIO_SAMPLER_H */
+#endif /* AUBIO_SAMPLER_H */
index 0798940..b333575 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_WAVETABLE_H
-#define _AUBIO_WAVETABLE_H
+#ifndef AUBIO_WAVETABLE_H
+#define AUBIO_WAVETABLE_H
 
 /** \file
 
@@ -175,4 +175,4 @@ void del_aubio_wavetable( aubio_wavetable_t * o );
 }
 #endif
 
-#endif /* _AUBIO_WAVETABLE_H */
+#endif /* AUBIO_WAVETABLE_H */
index 3747f28..bc57de8 100644 (file)
@@ -36,8 +36,8 @@
   \example tempo/test-beattracking.c
 
 */
-#ifndef _AUBIO_BEATTRACKING_H
-#define _AUBIO_BEATTRACKING_H
+#ifndef AUBIO_BEATTRACKING_H
+#define AUBIO_BEATTRACKING_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -118,4 +118,4 @@ void del_aubio_beattracking(aubio_beattracking_t * p);
 }
 #endif
 
-#endif /* _AUBIO_BEATTRACKING_H */
+#endif /* AUBIO_BEATTRACKING_H */
index 5e220e7..13675ec 100644 (file)
@@ -30,8 +30,8 @@
 
 */
 
-#ifndef _AUBIO_TEMPO_H
-#define _AUBIO_TEMPO_H
+#ifndef AUBIO_TEMPO_H
+#define AUBIO_TEMPO_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -252,4 +252,4 @@ void del_aubio_tempo(aubio_tempo_t * o);
 }
 #endif
 
-#endif /* _AUBIO_TEMPO_H */
+#endif /* AUBIO_TEMPO_H */
index 72f02b8..49dd4d5 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_FILTER_A_DESIGN_H
-#define _AUBIO_FILTER_A_DESIGN_H
+#ifndef AUBIO_FILTER_A_DESIGN_H
+#define AUBIO_FILTER_A_DESIGN_H
 
 /** \file
 
@@ -85,4 +85,4 @@ uint_t aubio_filter_set_a_weighting (aubio_filter_t * f, uint_t samplerate);
 }
 #endif
 
-#endif /* _AUBIO_FILTER_A_DESIGN_H */
+#endif /* AUBIO_FILTER_A_DESIGN_H */
index 1b5147a..1d19d94 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_FILTER_BIQUAD_H
-#define _AUBIO_FILTER_BIQUAD_H
+#ifndef AUBIO_FILTER_BIQUAD_H
+#define AUBIO_FILTER_BIQUAD_H
 
 /** \file
 
@@ -72,4 +72,4 @@ aubio_filter_t *new_aubio_filter_biquad (lsmp_t b0, lsmp_t b1, lsmp_t b2,
 }
 #endif
 
-#endif /* _AUBIO_FILTER_BIQUAD_H */
+#endif /* AUBIO_FILTER_BIQUAD_H */
index 5ef3874..d87f61f 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_FILTER_C_DESIGN_H
-#define _AUBIO_FILTER_C_DESIGN_H
+#ifndef AUBIO_FILTER_C_DESIGN_H
+#define AUBIO_FILTER_C_DESIGN_H
 
 /** \file
 
@@ -85,4 +85,4 @@ uint_t aubio_filter_set_c_weighting (aubio_filter_t * f, uint_t samplerate);
 }
 #endif
 
-#endif /* _AUBIO_FILTER_C_DESIGN_H */
+#endif /* AUBIO_FILTER_C_DESIGN_H */
index 3b3a954..b8b678e 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_FILTER_H
-#define _AUBIO_FILTER_H
+#ifndef AUBIO_FILTER_H
+#define AUBIO_FILTER_H
 
 /** \file
 
@@ -173,4 +173,4 @@ void del_aubio_filter (aubio_filter_t * f);
 }
 #endif
 
-#endif /* _AUBIO_FILTER_H */
+#endif /* AUBIO_FILTER_H */
index 4d5e729..7528e8a 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_RESAMPLER_H
-#define _AUBIO_RESAMPLER_H
+#ifndef AUBIO_RESAMPLER_H
+#define AUBIO_RESAMPLER_H
 
 /** \file
 
@@ -62,4 +62,4 @@ void aubio_resampler_do (aubio_resampler_t * s, const fvec_t * input,
 }
 #endif
 
-#endif /* _AUBIO_RESAMPLER_H */
+#endif /* AUBIO_RESAMPLER_H */
index 4200ad2..57df2e0 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO__TYPES_H
-#define _AUBIO__TYPES_H
+#ifndef AUBIO_TYPES_H
+#define AUBIO_TYPES_H
 
 /** \file
 
@@ -67,4 +67,4 @@ typedef char         char_t;
 }
 #endif
 
-#endif /* _AUBIO__TYPES_H */
+#endif /* AUBIO_TYPES_H */
index e0d04ca..d39091a 100644 (file)
@@ -25,8 +25,8 @@
  * Big hacks to implement an histogram
  */
 
-#ifndef _AUBIO_HIST_H
-#define _AUBIO_HIST_H
+#ifndef AUBIO_HIST_H
+#define AUBIO_HIST_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -60,4 +60,4 @@ void aubio_hist_dyn_notnull (aubio_hist_t *s, fvec_t *input);
 }
 #endif
 
-#endif /* _AUBIO_HIST_H */
+#endif /* AUBIO_HIST_H */
index 07a159b..9649eb8 100644 (file)
@@ -18,8 +18,8 @@
 
 */
 
-#ifndef _AUBIO_PARAMETER_H
-#define _AUBIO_PARAMETER_H
+#ifndef AUBIO_PARAMETER_H
+#define AUBIO_PARAMETER_H
 
 /** \file
 
@@ -156,4 +156,4 @@ void del_aubio_parameter( aubio_parameter_t * param );
 }
 #endif
 
-#endif /* _AUBIO_PARAMETER_H */
+#endif /* AUBIO_PARAMETER_H */
index abcf53b..da31114 100644 (file)
@@ -28,8 +28,8 @@
  \f$ y = (x - ilow)*(ohig-olow)/(ihig-ilow) + olow \f$
 
 */
-#ifndef _AUBIO_SCALE_H
-#define _AUBIO_SCALE_H
+#ifndef AUBIO_SCALE_H
+#define AUBIO_SCALE_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -77,4 +77,4 @@ uint_t aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
 }
 #endif
 
-#endif /* _AUBIO_SCALE_H */
+#endif /* AUBIO_SCALE_H */
index d2cb119..f0ed96e 100644 (file)
@@ -24,8 +24,8 @@
 
  */
 
-#ifndef _AUBIO__VECUTILS_H
-#define _AUBIO__VECUTILS_H
+#ifndef AUBIO_VECUTILS_H
+#define AUBIO_VECUTILS_H
 
 #ifdef __cplusplus
 extern "C" {
@@ -113,4 +113,4 @@ void fvec_pow (fvec_t *s, smpl_t pow);
 }
 #endif
 
-#endif /* _AUBIO__VECUTILS_H */
+#endif /* AUBIO_VECUTILS_H */