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

Commit 4cc47940 authored by Marco Nelissen's avatar Marco Nelissen Committed by Gerrit Code Review
Browse files

Merge "Fix compile error in NuPlayerRenderer debug print"

parents 1e8a57c2 d6074f08
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -422,7 +422,9 @@ void NuPlayer::Renderer::onDrainVideoQueue() {
        ALOGV("video late by %lld us (%.2f secs)",
             mVideoLateByUs, mVideoLateByUs / 1E6);
    } else {
        ALOGV("rendering video at media time %.2f secs", mediaTimeUs / 1E6);
        ALOGV("rendering video at media time %.2f secs",
                (mFlags & FLAG_REAL_TIME ? realTimeUs :
                (realTimeUs + mAnchorTimeMediaUs - mAnchorTimeRealUs)) / 1E6);
        if (mSoftRenderer != NULL) {
            mSoftRenderer->render(entry->mBuffer->data(), entry->mBuffer->size(), NULL);
        }