summaryrefslogtreecommitdiff
path: root/libs/gui/BufferQueue.cpp
diff options
context:
space:
mode:
author Eino-Ville Talvala <etalvala@google.com> 2012-04-18 14:46:24 -0700
committer Eino-Ville Talvala <etalvala@google.com> 2012-04-18 14:47:12 -0700
commit6c47034f5ec30041c54d8f0479b01bce566440df (patch)
tree84916f91e93ac1be14d4754cd6265aae56aad35c /libs/gui/BufferQueue.cpp
parent85b217668d6840c8e6a109adfb99461313676f8d (diff)
Fix BufferQueue verbose log
Change-Id: Id80742b5c1fd2960cc2eda3a9ba2db1078df5320
Diffstat (limited to 'libs/gui/BufferQueue.cpp')
-rw-r--r--libs/gui/BufferQueue.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/libs/gui/BufferQueue.cpp b/libs/gui/BufferQueue.cpp
index c851e86566..a6403d4ea5 100644
--- a/libs/gui/BufferQueue.cpp
+++ b/libs/gui/BufferQueue.cpp
@@ -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;