This is weird

For general discussion related FlowStone
Post Reply
Father
Posts: 177
Joined: Thu Jan 09, 2014 5:48 pm

This is weird

Post by Father »

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 10024 times
KG_is_back
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

Re: This is weird

Post by KG_is_back »

My suspicion is that there might be something in the dezipper module that is not mono4 compatible.
Father
Posts: 177
Joined: Thu Jan 09, 2014 5:48 pm

Re: This is weird

Post by Father »

See for yourself... :?
mix.fsm
(193.55 KiB) Downloaded 793 times
User avatar
MyCo
Posts: 718
Joined: Tue Jul 13, 2010 12:33 pm
Location: Germany
Contact:

Re: This is weird

Post by MyCo »

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:
Father
Posts: 177
Joined: Thu Jan 09, 2014 5:48 pm

Re: This is weird

Post by Father »

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).
Post Reply