Skip to content

Commit

Permalink
Merge "stagefright amrwb: Change a C++ style cast into a C style cast"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Baptiste Queru authored and android code review committed Feb 27, 2012
2 parents f7f1280 + ab01498 commit 695cfe1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}

0 comments on commit 695cfe1

Please sign in to comment.