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

Commit 695cfe1e authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by android code review
Browse files

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

parents f7f1280e ab014985
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));
}