[Mp4-tech] RE: Mpeg4 AAC +Linear interpolation in inverse quantization

Kannan GS Nambiar kannan.g.s.nambiar celstream.com
Fri Sep 3 18:45:17 EDT 2004


Hi Shreya,
The best way to get FAAD specific queries answered is to to refer this to
the Forum in www.Audiocoding.com.
Anyway I will try to put some light into this.
==>
500^4/3=3968.5026299204986868792640981808
4000^4/3=63496.042078727978990068225570892=(500*8)^4/3=500^4/3*8^4/3=500^4/3
*16
Here they are trying to interpolate 8192 values from 1025 values. So if you
work
on the above example I think you should be able to crack the remaining
logic.
Regards,
kannan
-----Original Message-----
From: Shreya Pathak [mailto:shreya_pathak rediffmail.com]
Sent: Friday, September 03, 2023 3:08 PM
To: mihir ti.com
Cc: kannan.g.s.nambiar celstream.com; mp4-tech lists.mpegif.org
Subject: Mpeg4 AAC +Linear interpolation in inverse quantization
Hi,
1)   I wanted to know about linear interpolation used in the public source
code FAAD for Mpeg4 AAC.
    x1 = invquant_table[q>>3];
    x2 = invquant_table[(q>>3) + 1];
    return sgn * 16 * ((errcorr[q&7] * (x2-x1)) + x1);
I didn't get why it is multiplied by 16.
    I did inverse quantization using 5th order polynomial.But the problem
was heavy computations due to 5th order polynomial.
2) I wanted to know about how fixed point square root approximation has been
dine in this code.
#define step(shift) \
    if ((0x40000000l >> shift) + root <= value)       \
    {                                                 \
        value -= (0x40000000l >> shift) + root;       \
        root = (root >> 1) | (0x40000000l >> shift);  \
    } else {                                          \
        root = root >> 1;                             \
    }
/* fixed point square root approximation */
/* !!!! ONLY WORKS FOR EVEN %REAL_BITS% !!!! */
int fixed_sqrt(int value)
{
    int root = 0;
    step( 0); step( 2); step( 4); step( 6);
    step( 8); step(10); step(12); step(14);
    step(16); step(18); step(20); step(22);
    step(24); step(26); step(28); step(30);
    if (root < value)
        ++root;
    root <<= (14/2);
    return root;
}   
Thanks and Regards
Shreya
  
This message is free from Virus - IMSS
-------------- next part --------------
An HTML attachment was scrubbed...
URL: /pipermail/mp4-tech/attachments/20040903/670d88c5/attachment.html


More information about the Mp4-tech mailing list