vowel filter and modulation problems

For general discussion related FlowStone
tester
Posts: 1786
Joined: Wed Jan 18, 2012 10:52 pm
Location: Poland, internet

vowel filter and modulation problems

Post by tester »

I borrowed vowel filter from SM forum and trying to adjust it for slow modulation purposes.

But for some reason - this thing is dying when I connect modulator pushed through mono4, while normal oscillator does the job.... Values are kept in ranges. Mono's and mono4's are adjusted to fit I/O. Readouts show one thing, headphones other thing.

I'm lucky with dying modules recently :mrgreen:
Attachments
vowel-error.fsm
(53.14 KiB) Downloaded 1152 times
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
User avatar
Nubeat7
Posts: 1347
Joined: Sat Apr 14, 2012 9:59 am
Location: Vienna
Contact:

Re: vowel filter and modulation problems

Post by Nubeat7 »

oh man how do you always find that strange things? :lol:

it works with this "get mono" module, i think it from one of trogs toolboxes? but not shure from where..
Attachments
vowel-error_getmono.fsm
(53.64 KiB) Downloaded 1111 times
tester
Posts: 1786
Joined: Wed Jan 18, 2012 10:52 pm
Location: Poland, internet

Re: vowel filter and modulation problems

Post by tester »

I work in beta tests from time to time.
Now you know why :mrgreen:

Did some digging and it looks, that it dies only when oscillator is pushed through mono4 unpacking. After redesigning the original osc to standard mono - it worked. So - sending the bug to devs... :-)

Thanks for reminding me Troggies works. They bring some light on the problem I guess.
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
tester
Posts: 1786
Joined: Wed Jan 18, 2012 10:52 pm
Location: Poland, internet

Re: vowel filter and modulation problems

Post by tester »

Nubeat7 - do you have mono4 unpacker that would work correctly? I can't find that version of Trogz tools with "get mono fixed" (have in older version 3.5a, which isn't working too).
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
User avatar
Nubeat7
Posts: 1347
Joined: Sat Apr 14, 2012 9:59 am
Location: Vienna
Contact:

Re: vowel filter and modulation problems

Post by Nubeat7 »

just the one from the example i posted above, isnt it working on your machine? it is working here..
tester
Posts: 1786
Joined: Wed Jan 18, 2012 10:52 pm
Location: Poland, internet

Re: vowel filter and modulation problems

Post by tester »

The "get mono" above works, and I think i found where it's placed on SM; I was rather thinking about replacement for "mono4 -> 4x mono" extractor. Otherwise - 4 copies per 1 extraction needed.
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
User avatar
TrojakEW
Posts: 111
Joined: Sat Dec 25, 2010 10:12 am
Location: Slovakia

Re: vowel filter and modulation problems

Post by TrojakEW »

Something like this?

Code: Select all

streamin in;
monoout one;
monoout two;
monoout three;
monoout four;

push eax;
fld in[0]; fstp one[0];
fld in[1]; fstp two[0];
fld in[2]; fstp three[0];
fld in[3]; fstp four[0];
pop eax;
User avatar
Nubeat7
Posts: 1347
Joined: Sat Apr 14, 2012 9:59 am
Location: Vienna
Contact:

Re: vowel filter and modulation problems

Post by Nubeat7 »

TrojakEW wrote:Something like this?

Code: Select all

streamin in;
monoout one;
monoout two;
monoout three;
monoout four;

push eax;
fld in[0]; fstp one[0];
fld in[1]; fstp two[0];
fld in[2]; fstp three[0];
fld in[3]; fstp four[0];
pop eax;


also dont works in this example!?
tester
Posts: 1786
Joined: Wed Jan 18, 2012 10:52 pm
Location: Poland, internet

Re: vowel filter and modulation problems

Post by tester »

TrojakEW wrote:Something like this?

Code: Select all

streamin in;
monoout one;
monoout two;
monoout three;
monoout four;

push eax;
fld in[0]; fstp one[0];
fld in[1]; fstp two[0];
fld in[2]; fstp three[0];
fld in[3]; fstp four[0];
pop eax;


This one dies. From what I can see - it may have to do with some additional instructions in ASM code (shufps and some difference in numbers). So either is the formant filter from SM somewhat buggy, or the pack/unpack is missing some security. To my limited understanding it would look as if somethig was sharing the same memory, thus readouts show one thing, and schematics do the other thing.
Attachments
get.fsm
(797 Bytes) Downloaded 1160 times
Need to take a break? I have something right for you.
Feel free to donate. Thank you for your contribution.
User avatar
TrojakEW
Posts: 111
Joined: Sat Dec 25, 2010 10:12 am
Location: Slovakia

Re: vowel filter and modulation problems

Post by TrojakEW »

Doesn't shufps only change channel routing? Mask 94 in original code output channel in order 3,4,2,2 while 78 sets 3,4,1,2.
Post Reply