[effects] wrap long lines
authorPaul Brossier <piem@piem.org>
Wed, 24 Oct 2018 16:48:25 +0000 (18:48 +0200)
committerPaul Brossier <piem@piem.org>
Fri, 7 Dec 2018 00:28:56 +0000 (01:28 +0100)
src/effects/pitchshift.h
src/effects/timestretch.h

index 8abf058..808ac60 100644 (file)
@@ -45,7 +45,8 @@ typedef struct _aubio_pitchshift_t aubio_pitchshift_t;
   \param out output pitch candidates of size [1]
 
 */
-void aubio_pitchshift_do (aubio_pitchshift_t * o, const fvec_t * in, fvec_t * out);
+void aubio_pitchshift_do (aubio_pitchshift_t * o, const fvec_t * in,
+        fvec_t * out);
 
 /** deletion of the pitch shifting object
 
@@ -86,7 +87,8 @@ uint_t aubio_pitchshift_get_latency (aubio_pitchshift_t * o);
   \return 0 if successfull, non-zero otherwise
 
 */
-uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o, smpl_t pitchscale);
+uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o,
+        smpl_t pitchscale);
 
 /** get the pitchscale of the pitch shifting object
 
@@ -100,13 +102,14 @@ smpl_t aubio_pitchshift_get_pitchscale (aubio_pitchshift_t * o);
 /** set the transposition of the pitch shifting object, in semitones
 
   \param o pitch shifting object as returned by new_aubio_pitchshift()
-  \param transpose new pitch transposition of the pitch shifting object, expressed
-  in semitones (should be in the range [-24;+24])
+  \param transpose new pitch transposition of the pitch shifting object,
+  expressed in semitones (should be in the range [-24;+24])
 
   \return 0 if successfull, non-zero otherwise
 
 */
-uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o, smpl_t transpose);
+uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o,
+        smpl_t transpose);
 
 /** get the transposition of the pitch shifting object, in semitones
 
index 8320b53..b1454d0 100644 (file)
@@ -52,7 +52,8 @@ typedef struct _aubio_timestretch_t aubio_timestretch_t;
   \param read number of frames actually wrote out
 
 */
-void aubio_timestretch_do (aubio_timestretch_t * o, fvec_t * out, uint_t * read);
+void aubio_timestretch_do (aubio_timestretch_t * o, fvec_t * out,
+   uint_t * read);
 
 /** deletion of the time stretching object
 
@@ -83,7 +84,8 @@ aubio_timestretch_t *new_aubio_timestretch (const char_t * method,
   \return number of currently available samples
 
  */
-sint_t aubio_timestretch_push(aubio_timestretch_t * o, fvec_t *in, uint_t length);
+sint_t aubio_timestretch_push(aubio_timestretch_t * o, fvec_t *in,
+    uint_t length);
 
 /** get number of currently available samples from time stretching object
 
@@ -146,7 +148,8 @@ smpl_t aubio_timestretch_get_stretch (aubio_timestretch_t * o);
   \return 0 if successfull, non-zero otherwise
 
 */
-uint_t aubio_timestretch_set_pitchscale (aubio_timestretch_t * o, smpl_t pitchscale);
+uint_t aubio_timestretch_set_pitchscale (aubio_timestretch_t * o,
+        smpl_t pitchscale);
 
 /** get the pitchscale of the time stretching object
 
@@ -160,13 +163,15 @@ smpl_t aubio_timestretch_get_pitchscale (aubio_timestretch_t * o);
 /** set the transposition of the time stretching object, in semitones
 
   \param o time stretching object as returned by new_aubio_timestretch()
-  \param transpose new pitch transposition of the time stretching object, expressed
-  in semitones (should be in the range [-24;+24])
+
+  \param transpose new pitch transposition of the time stretching object,
+  expressed in semitones (should be in the range [-24;+24])
 
   \return 0 if successfull, non-zero otherwise
 
 */
-uint_t aubio_timestretch_set_transpose (aubio_timestretch_t * o, smpl_t transpose);
+uint_t aubio_timestretch_set_transpose (aubio_timestretch_t * o,
+        smpl_t transpose);
 
 /** get the transposition of the time stretching object, in semitones