diff options
author | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
commit | ce65c30264be9683dd3a59b35730d2f31e02d37f (patch) | |
tree | 90aaf2e77526af9ba099e76175956d0dd6a37633 /sndobj/IFAdd.h | |
parent | b46b988f164f983fc889c7bc0c96953e4609d27a (diff) | |
download | simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.gz simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.bz2 simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.zip |
Changed from floats to doubles in the C/C++ code, makes Python integration a bit easier. Fixed a bug that would cause SndObjSynthesis to crash if peak values were floats.
Diffstat (limited to 'sndobj/IFAdd.h')
-rw-r--r-- | sndobj/IFAdd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sndobj/IFAdd.h b/sndobj/IFAdd.h index b8d7cbd..57a0ec6 100644 --- a/sndobj/IFAdd.h +++ b/sndobj/IFAdd.h @@ -35,8 +35,8 @@ class IFAdd : public ReSyn { public: IFAdd(); - IFAdd(IFGram* input, int bins, Table* table, float pitch=1.f, float scale=1.f, - float tscal=1.f, int vecsize=DEF_VECSIZE, float sr=DEF_SR); + IFAdd(IFGram* input, int bins, Table* table, double pitch=1.f, double scale=1.f, + double tscal=1.f, int vecsize=DEF_VECSIZE, double sr=DEF_SR); ~IFAdd(); short DoProcess(); |