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

Commit 9d0e88ca 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 fbaf72b7 ffa34edd
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line 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 */
    L_sum = shl_int32(L_sum, 2);               /* saturation can occur here */


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