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

Commit 4e577edb authored by Chong Zhang's avatar Chong Zhang Committed by Android (Google) Code Review
Browse files

Merge "Change skip frame to ALOGD"

parents e8198ce2 71f90665
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -767,7 +767,7 @@ bool GraphicBufferSource::calculateCodecTimestamp_l(
            double nFrames = (timeUs - mPrevCaptureUs) * mCaptureFps / 1000000;
            if (nFrames < 0.5 - kTimestampFluctuation) {
                // skip this frame as it's too close to previous capture
                ALOGV("skipping frame, timeUs %lld", static_cast<long long>(timeUs));
                ALOGD("skipping frame, timeUs %lld", static_cast<long long>(timeUs));
                return false;
            }
            if (nFrames <= 1.0) {