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

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

am ded8e681: am 695cfe1e: Merge "stagefright amrwb: Change a C++ style cast into a C style cast"

* commit 'ded8e681':
  stagefright amrwb: Change a C++ style cast into a C style cast
parents 50ee92e9 ded8e681
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -337,6 +337,6 @@ int16 AmrWbInterpol( /* return result of interpolation */

    L_sum = shl_int32(L_sum, 2);               /* saturation can occur here */

    return ((int16(L_sum >> 16)));
    return ((int16)(L_sum >> 16));
}