Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: HE-AAC downsampled synthesis filterbank (Read 1878 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

HE-AAC downsampled synthesis filterbank

I read the ISO spec 14496-3:2001/Amd 1:2003 on downsampled complex synthesis QMF
filter. On page 67, it is said the filterbank coefficients are defined
as (1/64)*exp(i*pi*(k+.5)*(2*n-127)/64).
However, when I turn to the ISO reference, in ct_polyphase.c, the code
defines the coefficients like:cos( PI / 64.0 * (k+0.5) * (2*l-127.5)
).

My question is why the spec uses 127 while its reference code
implementation uses 127.5. I don't understand this 0.5 trick. Can any
one explain this for me? Thanks in advance.