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

Commit fd0daeb3 authored by Marco Nelissen's avatar Marco Nelissen Committed by Android Git Automerger
Browse files

am 4cc47940: Merge "Fix compile error in NuPlayerRenderer debug print"

* commit '4cc47940':
  Fix compile error in NuPlayerRenderer debug print
parents cbf9e91a 4cc47940
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);
        }