De-zipper| How does it work?

DSP related issues, mathematics, processing and techniques
Post Reply
Father
Posts: 177
Joined: Thu Jan 09, 2014 5:48 pm

De-zipper| How does it work?

Post by Father »

Hi. I was wondering how De-zipper prime works? Is it a filter like this thats being processed for each sample?

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..
User avatar
martinvicanek
Posts: 1334
Joined: Sat Jun 22, 2013 8:28 pm

Re: De-zipper| How does it work?

Post by martinvicanek »

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;
Post Reply