Displaying 1 result from an estimated 1 matches for "handelc".
Did you mean:
handel
2002 Aug 29
0
yet another MDCT question
...oX2+=4;
iX += 8;
T += 8;
}while(iX<oX1);
<p>A couple of questions:
(1) why the opening brace for a new code block, the variables iX, oX and T
from the previous lines are not being used
(2) assuming n2+n4 is the initial offset to out (oX1 and oX2) you can write
HandelC code like
{
int oX1, oX2, iX, T;
par
{
oX1 = n2 + n4;
oX2 = n2 + n4;
iX = 0;
T = n2;
}
do{
oX1 -= 4;
par
{
out[oX1 + 3] = MULT_NORM (out[iX+0] * trig[T+1] - out[iX+1] *
trig_256[T+0] );...