Support

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

For general discussion related FlowStone

This is weird

Postby Father » Thu Jun 25, 2015 4:33 pm

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? :lol:
straing.jpg
straing.jpg (89.06 KiB) Viewed 8830 times
Father
 
Posts: 177
Joined: Thu Jan 09, 2014 5:48 pm

Re: This is weird

Postby KG_is_back » Thu Jun 25, 2015 5:50 pm

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

Postby Father » Thu Jun 25, 2015 7:09 pm

See for yourself... :?
mix.fsm
(193.55 KiB) Downloaded 737 times
Father
 
Posts: 177
Joined: Thu Jan 09, 2014 5:48 pm

Re: This is weird

Postby MyCo » Thu Jun 25, 2015 7:24 pm

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... :mrgreen:
User avatar
MyCo
 
Posts: 718
Joined: Tue Jul 13, 2010 12:33 pm
Location: Germany

Re: This is weird

Postby Father » Thu Jun 25, 2015 9:29 pm

MyCo wrote:You are writing to an input... basically you're messing up memory here, so there has to be an unexpected result... :mrgreen:

Oh man you know your stuff huh? 8-) 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


Return to General

Who is online

Users browsing this forum: No registered users and 99 guests