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

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

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

* commit '695cfe1e1e189f176fdf994f72d05a0129a66394':
  stagefright amrwb: Change a C++ style cast into a C style cast
parents c6531cfd 9d0e88ca
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));
}