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

Commit 1884ca1c authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "hal: Fix improper timestamp update for Mmap record path"

parents e4af324d a15d7e97
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5849,7 +5849,7 @@ static int in_get_mmap_position(const struct audio_stream_in *stream,
        ALOGE("%s: %s", __func__, pcm_get_error(in->pcm));
        return ret;
    }
    position->time_nanoseconds = ts.tv_sec*1000000000L + ts.tv_nsec;
    position->time_nanoseconds = ts.tv_sec*1000000000LL + ts.tv_nsec;
    return 0;
}