diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2003-03-21 04:36:07 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2003-03-21 04:36:07 +0000 |
commit | 5697ebe98e16f1438d6feba09cb075b6a0f2a653 (patch) | |
tree | caf213e0ce7a992096d10246878fd56c7eda9793 /externals/grill/flext | |
parent | 9056179fcd52793c16112471d1d7fed45722194c (diff) |
""
svn path=/trunk/; revision=488
Diffstat (limited to 'externals/grill/flext')
-rw-r--r-- | externals/grill/flext/flext.cw | bin | 506677 -> 506677 bytes | |||
-rw-r--r-- | externals/grill/flext/readme.txt | 1 | ||||
-rw-r--r-- | externals/grill/flext/source/flbuf.cpp | 4 |
3 files changed, 3 insertions, 2 deletions
diff --git a/externals/grill/flext/flext.cw b/externals/grill/flext/flext.cw Binary files differindex d331bede..1f46feea 100644 --- a/externals/grill/flext/flext.cw +++ b/externals/grill/flext/flext.cw diff --git a/externals/grill/flext/readme.txt b/externals/grill/flext/readme.txt index bc043c33..388945fc 100644 --- a/externals/grill/flext/readme.txt +++ b/externals/grill/flext/readme.txt @@ -121,6 +121,7 @@ Version history: - fixed race condition when using LaunchThread in a setup function (now waiting for thread helper to initialize) - added flext::Forward function to send messages to bound symbols - added "zero" flag to flext::buffer resize operation +- fixed bug for Max/MSP buffer resize with preservation of contents 0.4.2: - started port for jMax diff --git a/externals/grill/flext/source/flbuf.cpp b/externals/grill/flext/source/flbuf.cpp index f7672b75..6c6edb2e 100644 --- a/externals/grill/flext/source/flbuf.cpp +++ b/externals/grill/flext/source/flbuf.cpp @@ -191,7 +191,7 @@ void flext::buffer::Frames(int fr,bool keep,bool zero) // copy buffer data to tmp storage tmp = new t_sample[sz]; if(tmp) - CopySamples(data,tmp,sz); + CopySamples(tmp,data,sz); else error("flext::buffer - not enough memory for keeping buffer~ contents"); } @@ -209,7 +209,7 @@ void flext::buffer::Frames(int fr,bool keep,bool zero) if(tmp) { // copy data back - CopySamples(tmp,data,sz); + CopySamples(data,tmp,sz); delete[] tmp; if(zero && sz < fr) ZeroSamples(data+sz,fr-sz); } |