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
De-zipper| How does it work?
2 posts
• Page 1 of 1
De-zipper| How does it work?
Hi. I was wondering how De-zipper prime works? Is it a filter like this thats being processed for each sample?
We use it a lot, but no significant CPU usage, how is that possible? I guess it only works when the input has been changed..
- Code: Select all
Out = coeff * (Old_In - In) + In;
We use it a lot, but no significant CPU usage, how is that possible? I guess it only works when the input has been changed..
- Father
- Posts: 177
- Joined: Thu Jan 09, 2014 5:48 pm
Re: De-zipper| How does it work?
As far as I can tell, it calculates a new target at hop(128) and then approaches that with linear segments. Something like this, but with configurable slope:
- Code: Select all
streamin in; streamout out;
float step;
hop(128) { step = (in - out)/128; }
out = out + step;
-
martinvicanek - Posts: 1328
- Joined: Sat Jun 22, 2013 8:28 pm
2 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 29 guests