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

Commit eb72c556 authored by Oliver Woodman's avatar Oliver Woodman
Browse files

Fix lat/long rounding error

Use of Math.round fixes incorrect rounding of negative
lat/long values.

Bug: 232327925
Test: atest CtsMediaTestCases
Change-Id: I9e1fd3ec9d64461f0ec223ca091bb8aeb737c952
parent f9bcc6f6
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -430,8 +430,8 @@ final public class MediaMuxer {
     * @throws IllegalStateException If this method is called after {@link #start}.
     * @throws IllegalStateException If this method is called after {@link #start}.
     */
     */
    public void setLocation(float latitude, float longitude) {
    public void setLocation(float latitude, float longitude) {
        int latitudex10000  = (int) (latitude * 10000 + 0.5);
        int latitudex10000  = Math.round(latitude * 10000);
        int longitudex10000 = (int) (longitude * 10000 + 0.5);
        int longitudex10000 = Math.round(longitude * 10000);


        if (latitudex10000 > 900000 || latitudex10000 < -900000) {
        if (latitudex10000 > 900000 || latitudex10000 < -900000) {
            String msg = "Latitude: " + latitude + " out of range.";
            String msg = "Latitude: " + latitude + " out of range.";