I'm trying to find any resources online for programming a delay line in c.

I tried implementing this one here

https://ccrma.stanford.edu/~jos/doppler/Variable_Delay_Line_Software.html.

The problem with this is where it says

A[wptr++] = x; 

The compiler throws an error because wptr is a pointer and not an integer.

Could somebody point me toward an example of a compiler friendly example?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Replace:

    A[wptr++] = x; 
y = A[rptr++];

with:

    *(wptr++) = x;
y = *(rptr++);
link|improve this answer
feedback

this should be:

*(wptr++) = x;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.