Page 1 of 1
overload detector (mono to mono4)
Posted: Tue Jun 25, 2013 5:27 pm
by tester
How to convert this overload detector (peak detection) into something that accepts mono4 input (first 2 channels), and outputs two mono streams? I noticed that I always have many of them running, so I thought that I could save some CPU by converting them into mono4 singularities. Original design from Trogz Tools.
Re: overload detector (mono to mono4)
Posted: Tue Jun 25, 2013 5:38 pm
by MyCo
Just use unpack
Re: overload detector (mono to mono4)
Posted: Tue Jun 25, 2013 5:46 pm
by tester
Thanks.
Funny thing. I'm watching at these little asm things, and - on one hand I start to see how it works. But when it comes to some action - I'm getting dumb again, as if I was switching into "uninhabited" part of my brain.

//edit:
Ah, I see what you mean. I thought about putting this unpack part (2 channels) into the ASM code.
Re: overload detector (mono to mono4)
Posted: Tue Jun 25, 2013 6:27 pm
by MyCo
You can do the unpack in the code, but there is no benefit in doing this.
Re: overload detector (mono to mono4)
Posted: Tue Jun 25, 2013 6:37 pm
by tester
That's what I wanted to know, thanks.