projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b67e715
)
src/synth/wavetable.c: always clamp wavetable
author
Paul Brossier
<piem@piem.org>
Sun, 26 Mar 2017 13:58:41 +0000
(15:58 +0200)
committer
Paul Brossier
<piem@piem.org>
Sun, 26 Mar 2017 13:58:41 +0000
(15:58 +0200)
src/synth/wavetable.c
patch
|
blob
|
history
diff --git
a/src/synth/wavetable.c
b/src/synth/wavetable.c
index
ea08568
..
04d1dd4
100644
(file)
--- a/
src/synth/wavetable.c
+++ b/
src/synth/wavetable.c
@@
-103,7
+103,7
@@
void aubio_wavetable_do ( aubio_wavetable_t * s, const fvec_t * input, fvec_t *
for (i = 0; i < output->length; i++) {
output->data[i] += input->data[i];
}
- fvec_clamp(o
buf
, 1.);
+ fvec_clamp(o
utput
, 1.);
}
}