src/spectral/phasevoc.c: do no reset hop size, just leave a commented warning
authorPaul Brossier <piem@piem.org>
Thu, 24 Sep 2009 16:16:02 +0000 (18:16 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 24 Sep 2009 16:16:02 +0000 (18:16 +0200)
src/spectral/phasevoc.c

index d7ee16892619e9cda5b3377c013607f65fa312fc..0801951913c05aacabe4b8330abba19569140706 100644 (file)
@@ -76,11 +76,9 @@ void aubio_pvoc_rdo(aubio_pvoc_t *pv,cvec_t * fftgrain, fvec_t * synthnew) {
 aubio_pvoc_t * new_aubio_pvoc (uint_t win_s, uint_t hop_s, uint_t channels) {
   aubio_pvoc_t * pv = AUBIO_NEW(aubio_pvoc_t);
 
-  if (win_s < 2*hop_s) {
-    AUBIO_ERR("Hop size bigger than half the window size!\n");
-    AUBIO_ERR("Resetting hop size to half the window size.\n");
-    hop_s = win_s / 2;
-  }
+  /* if (win_s < 2*hop_s) {
+    AUBIO_WRN("Hop size bigger than half the window size!\n");
+  } */
 
   if (hop_s < 1) {
     AUBIO_ERR("Hop size is smaller than 1!\n");