Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0f7f115a authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am 78fc0c0b: am 428ece23: am c4aa19a5: am ea227787: Merge changes I903353c5,I822dcc74

* commit '78fc0c0b':
  stagefright amrnb: Properly negate all values
  stagefright amrnb: Fix a bug on architectures where long is 64 bit
parents 88c6d6e1 78fc0c0b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
    }
+2 −2
Original line number Diff line number Diff line
@@ -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;