Merge changes I903353c5,I822dcc74
* changes: stagefright amrnb: Properly negate all values stagefright amrnb: Fix a bug on architectures where long is 64 bit
This commit is contained in:
@ -299,7 +299,7 @@ static Word16 Chebps(Word16 x,
|
||||
t0 += (Word32) * (p_f) << 13;
|
||||
|
||||
|
||||
if ((UWord32)(t0 - 0xfe000000L) < 0x01ffffffL - 0xfe000000L)
|
||||
if ((UWord32)(t0 - 0xfe000000L) < (UWord32)0x03ffffffL)
|
||||
{
|
||||
cheb = (Word16)(t0 >> 10);
|
||||
}
|
||||
|
@ -552,10 +552,10 @@ void set_sign12k2(
|
||||
else
|
||||
{
|
||||
*(p_sign--) = -32767; /* sign = -1 */
|
||||
cor = - (cor);
|
||||
cor = negate(cor);
|
||||
|
||||
/* modify dn[] according to the fixed sign */
|
||||
dn[i] = - val;
|
||||
dn[i] = negate(val);
|
||||
}
|
||||
|
||||
*(p_en--) = cor;
|
||||
|
Reference in New Issue
Block a user