ref: cd7d733968b73ddb4117a6ea1a5fcaf590b0988f
parent: 5c411dcfae7a18946effb745fedbe6dce13327ef
author: Paul Brossier <piem@piem.org>
date: Thu Sep 24 14:16:02 EDT 2009
src/spectral/phasevoc.c: do no reset hop size, just leave a commented warning
--- a/src/spectral/phasevoc.c
+++ b/src/spectral/phasevoc.c
@@ -76,11 +76,9 @@
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");