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

Commit 5c9054bc authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Fix print format error.

Change-Id: Ie3b754e22a4f858a35159abc8eaf00aa4949ab24
parent 88b45664
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -483,7 +483,7 @@ int64_t ATSParser::Program::recoverPTS(uint64_t PTS_33bit) {
        // Clamp it to 0 as rest of the pipeline doesn't take negative pts.
        // (eg. video is read first and starts at 0, but audio starts at 0xfffffff0)
        if (mLastRecoveredPTS < 0ll) {
            ALOGI("Clamping negative recovered PTS (%lld) to 0", mLastRecoveredPTS);
            ALOGI("Clamping negative recovered PTS (%" PRId64 ") to 0", mLastRecoveredPTS);
            mLastRecoveredPTS = 0ll;
        }
    }