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

Commit 6c47034f authored by Eino-Ville Talvala's avatar Eino-Ville Talvala
Browse files

Fix BufferQueue verbose log

Change-Id: Id80742b5c1fd2960cc2eda3a9ba2db1078df5320
parent 85b21766
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -533,8 +533,12 @@ status_t BufferQueue::queueBuffer(int buf,
    ATRACE_CALL();
    ATRACE_BUFFER_INDEX(buf);

    ST_LOGV("queueBuffer: slot=%d time=%lld crop=[%d,%d,%d,%d]", buf, timestamp,
        crop.left, crop.top, crop.right, crop.bottom);
    ST_LOGV("queueBuffer: slot=%d time=%lld crop=[%d,%d,%d,%d]", buf,
            mSlots[buf].mTimestamp,
            mSlots[buf].mCrop.left,
            mSlots[buf].mCrop.top,
            mSlots[buf].mCrop.right,
            mSlots[buf].mCrop.bottom);

    sp<ConsumerListener> listener;