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: Please Help, Explain MPEG-2 AAC Huffman Codebook (Read 4617 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Please Help, Explain MPEG-2 AAC Huffman Codebook

This link is a picture of MPEG-2 AAC Codebook :
https://lh5.googleusercontent.com/-Wn3Y5gn3...24_18-43-57.png

Can someone explain what is signed and unsigned values?? How can it be signed and and unsigned??
If can, please also help explain about codebook index, n-tuple size, and maximum absolute values too...
please help me.... Thanks in advance...

I'm a newbie and interested in audio coding.

Please Help, Explain MPEG-2 AAC Huffman Codebook

Reply #1
IIRC, the unsigned values simply transmit the values separately from the sign bits.

Maximum absolute value is just the biggest value in the codebook.

n-tuple: how many spectral values are represented by 1 codebook value

Please Help, Explain MPEG-2 AAC Huffman Codebook

Reply #2
IIRC, the unsigned values simply transmit the values separately from the sign bits.

Maximum absolute value is just the biggest value in the codebook.

n-tuple: how many spectral values are represented by 1 codebook value


but, what make the bits become signed or unsigned value??
thank you... 

Please Help, Explain MPEG-2 AAC Huffman Codebook

Reply #3
The table you posted tells you which of the two it is depending on the codebook index.

i.e. the signed codebooks will have tuples like [0, -1, 0, +1].
the unsigned one will have tuples like [0, 1, 0, 2] followed (or preceded, check the AAC standard) by [-, +] giving you [0, -1, 0, +2]

Please Help, Explain MPEG-2 AAC Huffman Codebook

Reply #4
Ooh I see now...

Thank you very much, mr. Garf... ^^