Skip to content

Commit 695cfe1

Browse files
Jean-Baptiste Queruandroid code review
authored andcommitted
Merge "stagefright amrwb: Change a C++ style cast into a C style cast"
2 parents f7f1280 + ab01498 commit 695cfe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

media/libstagefright/codecs/amrwb/src/oversamp_12k8_to_16k.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,6 @@ int16 AmrWbInterpol( /* return result of interpolation */
337337

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

340-
return ((int16(L_sum >> 16)));
340+
return ((int16)(L_sum >> 16));
341341
}
342342

0 commit comments

Comments
 (0)