We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems like there is a bug in the function (line 685)
static AS3_Val envelope(void *self, AS3_Val args)
Instead of (line 695)
expandSpline(&modPoint, scratch1, frames); // draws spline segment into scratch1
it should be
expandSpline(&modPoint, scratch1, frames*channels); // draws spline segment into scratch1
A workaround if people don't wan't to compile Alchemy is to change line 535 of "Sample.as" to
Sample._awave.envelope(getSamplePointer(offset), 1 /*_descriptor.channels*/, numFrames * 2, mp);
To trick Alchemy to do the right calculation, otherwise half of the sample don't get the envelope.
The text was updated successfully, but these errors were encountered:
Also, very good library, I love it! Good work!
Sorry, something went wrong.
No branches or pull requests
Seems like there is a bug in the function (line 685)
Instead of (line 695)
it should be
A workaround if people don't wan't to compile Alchemy is to change line 535 of "Sample.as" to
To trick Alchemy to do the right calculation, otherwise half of the sample don't get the envelope.
The text was updated successfully, but these errors were encountered: