[pitchscale] wrap long lines
authorPaul Brossier <piem@piem.org>
Fri, 26 Oct 2018 08:56:48 +0000 (10:56 +0200)
committerPaul Brossier <piem@piem.org>
Fri, 7 Dec 2018 00:28:57 +0000 (01:28 +0100)
src/effects/pitchshift_rubberband.c

index 4acbf6f..9941eee 100644 (file)
@@ -78,7 +78,8 @@ new_aubio_pitchshift (const char_t * mode,
   int available = rubberband_available(p->rb);
   fvec_t *zeros = new_fvec(p->hopsize);
   while (available <= (int)latency) {
-    rubberband_process(p->rb, (const float* const*)&(zeros->data), p->hopsize, 0);
+    rubberband_process(p->rb,
+        (const float* const*)&(zeros->data), p->hopsize, 0);
     available = rubberband_available(p->rb);
   }
   del_fvec(zeros);
@@ -149,8 +150,8 @@ aubio_pitchshift_do (aubio_pitchshift_t * p, const fvec_t * in, fvec_t * out)
   if (rubberband_available(p->rb) >= (int)p->hopsize) {
     rubberband_retrieve(p->rb, (float* const*)&(out->data), p->hopsize);
   } else {
-    AUBIO_WRN("pitchshift: catching up with zeros, only %d available, needed: %d, "
-        "current pitchscale: %f\n",
+    AUBIO_WRN("pitchshift: catching up with zeros"
+        ", only %d available, needed: %d, current pitchscale: %f\n",
         rubberband_available(p->rb), p->hopsize, p->pitchscale);
     fvec_zeros(out);
   }