If you have a problem or need to report a bug please email : support@dsprobotics.com
There are 3 sections to this support area:
DOWNLOADS: access to product manuals, support files and drivers
HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects
USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here
NEW REGISTRATIONS - please contact us if you wish to register on the forum
Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright
This is weird
5 posts
• Page 1 of 1
This is weird
I was trying to use a Dry/Wet mix module after a down sampling effect, and i was shocked because the stream one i always use didn't work. The output gone crazy. i thought i try to unpack it to mono and it worked as it should!
This shouldn't happen right!? Whats going on?
This shouldn't happen right!? Whats going on?
- Father
- Posts: 177
- Joined: Thu Jan 09, 2014 5:48 pm
Re: This is weird
My suspicion is that there might be something in the dezipper module that is not mono4 compatible.
- KG_is_back
- Posts: 1196
- Joined: Tue Oct 22, 2013 5:43 pm
- Location: Slovakia
Re: This is weird
- Code: Select all
streamin in;
streamin range;
streamout out;
in = in*range;
out = rndint(in) / range;
You are writing to an input... basically you're messing up memory here, so there has to be an unexpected result...
-
MyCo - Posts: 718
- Joined: Tue Jul 13, 2010 12:33 pm
- Location: Germany
Re: This is weird
MyCo wrote:You are writing to an input... basically you're messing up memory here, so there has to be an unexpected result...
Oh man you know your stuff huh? i would have never guessed that one. This solved it:
- Code: Select all
streamin in;
streamin range;
streamout out;
float temp;
temp = in*range;
out = rndint(temp) / range;
Thanks. It was strange though (to me hehe).
- Father
- Posts: 177
- Joined: Thu Jan 09, 2014 5:48 pm
5 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 78 guests