From: Paul Brossier Date: Tue, 3 Nov 2009 15:07:17 +0000 (+0100) Subject: src/pitch/pitchschmitt.h: indent X-Git-Tag: bzr2git~54 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=63f3c70e15951dd1bf7caa8d0d2e6cc18d69e3c0;p=aubio.git src/pitch/pitchschmitt.h: indent --- diff --git a/src/pitch/pitchschmitt.h b/src/pitch/pitchschmitt.h index 94bc56d8..8f5f2c9d 100644 --- a/src/pitch/pitchschmitt.h +++ b/src/pitch/pitchschmitt.h @@ -49,20 +49,22 @@ typedef struct _aubio_pitchschmitt_t aubio_pitchschmitt_t; \param output pitch period estimates, in samples */ -void aubio_pitchschmitt_do (aubio_pitchschmitt_t *p, fvec_t * in, fvec_t * out); +void aubio_pitchschmitt_do (aubio_pitchschmitt_t * p, fvec_t * in, + fvec_t * out); + /** creation of the pitch detection object \param size size of the input buffer to analyse */ -aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t bufsize); +aubio_pitchschmitt_t *new_aubio_pitchschmitt (uint_t bufsize); + /** deletion of the pitch detection object \param p pitch detection object as returned by new_aubio_pitchschmitt */ -void del_aubio_pitchschmitt (aubio_pitchschmitt_t *p); - +void del_aubio_pitchschmitt (aubio_pitchschmitt_t * p); #ifdef __cplusplus }