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

Commit b2fe60bd authored by Ray Essick's avatar Ray Essick
Browse files

Remove misleading diagnostic

Remove a noisy diagnostic that improperly implied an error condition.

Bug: 64022743
Test: video playback w/o diagnostic
Change-Id: I8fe7ae36c67550dccbdf0312f3a01adf10536db1
parent b0d44131
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -764,7 +764,7 @@ void MediaCodec::statsBufferReceived(int64_t presentationUs) {

    // ignore stuff with no presentation time
    if (presentationUs <= 0) {
        ALOGD("-- returned buffer has bad timestamp %" PRId64 ", ignore it", presentationUs);
        ALOGV("-- returned buffer timestamp %" PRId64 " <= 0, ignore it", presentationUs);
        mLatencyUnknown++;
        return;
    }