blob: 7d2dcbaab2de5ed34094eb67b8f0c8f26a19ae2a [file] [log] [blame]
Chia-I Wuf1405182017-11-27 11:29:21 -08001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#undef LOG_TAG
18#define LOG_TAG "BufferLayerConsumer"
19#define ATRACE_TAG ATRACE_TAG_GRAPHICS
20//#define LOG_NDEBUG 0
21
22#include "BufferLayerConsumer.h"
Chia-I Wuc75c44d2017-11-27 14:32:57 -080023#include "Layer.h"
Ana Krulecfefcb582018-08-07 14:22:37 -070024#include "Scheduler/DispSync.h"
Chia-I Wuc75c44d2017-11-27 14:32:57 -080025
Chia-I Wuf1405182017-11-27 11:29:21 -080026#include <inttypes.h>
27
Chia-I Wuf1405182017-11-27 11:29:21 -080028#include <cutils/compiler.h>
29
30#include <hardware/hardware.h>
31
32#include <math/mat4.h>
33
34#include <gui/BufferItem.h>
35#include <gui/GLConsumer.h>
36#include <gui/ISurfaceComposer.h>
37#include <gui/SurfaceComposerClient.h>
Chia-I Wuf1405182017-11-27 11:29:21 -080038#include <private/gui/ComposerService.h>
Peiyong Lincbc184f2018-08-22 13:24:10 -070039#include <renderengine/Image.h>
40#include <renderengine/RenderEngine.h>
Chia-I Wuf1405182017-11-27 11:29:21 -080041#include <utils/Log.h>
42#include <utils/String8.h>
43#include <utils/Trace.h>
44
Chia-I Wuf1405182017-11-27 11:29:21 -080045namespace android {
46
47// Macros for including the BufferLayerConsumer name in log messages
48#define BLC_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
49#define BLC_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
50//#define BLC_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
51#define BLC_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
52#define BLC_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
53
Chia-I Wuf1405182017-11-27 11:29:21 -080054static const mat4 mtxIdentity;
55
Lloyd Pique144e1162017-12-20 16:44:52 -080056BufferLayerConsumer::BufferLayerConsumer(const sp<IGraphicBufferConsumer>& bq,
Peiyong Lin833074a2018-08-28 11:53:54 -070057 renderengine::RenderEngine& engine, uint32_t tex,
58 Layer* layer)
Chia-I Wubd854bf2017-11-27 13:41:26 -080059 : ConsumerBase(bq, false),
Chia-I Wuf1405182017-11-27 11:29:21 -080060 mCurrentCrop(Rect::EMPTY_RECT),
61 mCurrentTransform(0),
62 mCurrentScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE),
63 mCurrentFence(Fence::NO_FENCE),
64 mCurrentTimestamp(0),
Peiyong Lin34beb7a2018-03-28 11:57:12 -070065 mCurrentDataSpace(ui::Dataspace::UNKNOWN),
Chia-I Wuf1405182017-11-27 11:29:21 -080066 mCurrentFrameNumber(0),
Chia-I Wu67dcc692017-11-27 14:51:06 -080067 mCurrentTransformToDisplayInverse(false),
68 mCurrentSurfaceDamage(),
Chia-I Wu5c6e4632018-01-11 08:54:38 -080069 mCurrentApi(0),
Chia-I Wuf1405182017-11-27 11:29:21 -080070 mDefaultWidth(1),
71 mDefaultHeight(1),
72 mFilteringEnabled(true),
Chia-I Wu9f2db772017-11-30 21:06:50 -080073 mRE(engine),
Chia-I Wuf1405182017-11-27 11:29:21 -080074 mTexName(tex),
Chia-I Wuc75c44d2017-11-27 14:32:57 -080075 mLayer(layer),
Chia-I Wuc91077c2017-11-27 13:32:04 -080076 mCurrentTexture(BufferQueue::INVALID_BUFFER_SLOT) {
Chia-I Wuf1405182017-11-27 11:29:21 -080077 BLC_LOGV("BufferLayerConsumer");
78
79 memcpy(mCurrentTransformMatrix, mtxIdentity.asArray(), sizeof(mCurrentTransformMatrix));
80
81 mConsumer->setConsumerUsageBits(DEFAULT_USAGE_FLAGS);
82}
83
84status_t BufferLayerConsumer::setDefaultBufferSize(uint32_t w, uint32_t h) {
85 Mutex::Autolock lock(mMutex);
86 if (mAbandoned) {
87 BLC_LOGE("setDefaultBufferSize: BufferLayerConsumer is abandoned!");
88 return NO_INIT;
89 }
90 mDefaultWidth = w;
91 mDefaultHeight = h;
92 return mConsumer->setDefaultBufferSize(w, h);
93}
94
Chia-I Wufd257f82017-11-27 14:51:06 -080095void BufferLayerConsumer::setContentsChangedListener(const wp<ContentsChangedListener>& listener) {
96 setFrameAvailableListener(listener);
97 Mutex::Autolock lock(mMutex);
98 mContentsChangedListener = listener;
99}
100
Ana Krulec010d2192018-10-08 06:29:54 -0700101status_t BufferLayerConsumer::updateTexImage(BufferRejecter* rejecter, nsecs_t expectedPresentTime,
Chia-I Wuda5c7302017-11-27 14:51:06 -0800102 bool* autoRefresh, bool* queuedBuffer,
Alec Mouri56e538f2019-01-14 15:22:01 -0800103 uint64_t maxFrameNumber) {
Chia-I Wuf1405182017-11-27 11:29:21 -0800104 ATRACE_CALL();
105 BLC_LOGV("updateTexImage");
106 Mutex::Autolock lock(mMutex);
107
108 if (mAbandoned) {
109 BLC_LOGE("updateTexImage: BufferLayerConsumer is abandoned!");
110 return NO_INIT;
111 }
112
Chia-I Wuf1405182017-11-27 11:29:21 -0800113 BufferItem item;
114
115 // Acquire the next buffer.
116 // In asynchronous mode the list is guaranteed to be one buffer
117 // deep, while in synchronous mode we use the oldest buffer.
Ana Krulec010d2192018-10-08 06:29:54 -0700118 status_t err = acquireBufferLocked(&item, expectedPresentTime, maxFrameNumber);
Chia-I Wuf1405182017-11-27 11:29:21 -0800119 if (err != NO_ERROR) {
120 if (err == BufferQueue::NO_BUFFER_AVAILABLE) {
Chia-I Wuf1405182017-11-27 11:29:21 -0800121 err = NO_ERROR;
Chia-I Wuda5c7302017-11-27 14:51:06 -0800122 } else if (err == BufferQueue::PRESENT_LATER) {
123 // return the error, without logging
Chia-I Wuf1405182017-11-27 11:29:21 -0800124 } else {
125 BLC_LOGE("updateTexImage: acquire failed: %s (%d)", strerror(-err), err);
126 }
127 return err;
128 }
129
Chia-I Wuda5c7302017-11-27 14:51:06 -0800130 if (autoRefresh) {
131 *autoRefresh = item.mAutoRefresh;
132 }
133
134 if (queuedBuffer) {
135 *queuedBuffer = item.mQueuedBuffer;
136 }
137
138 // We call the rejecter here, in case the caller has a reason to
139 // not accept this buffer. This is used by SurfaceFlinger to
140 // reject buffers which have the wrong size
141 int slot = item.mSlot;
142 if (rejecter && rejecter->reject(mSlots[slot].mGraphicBuffer, item)) {
143 releaseBufferLocked(slot, mSlots[slot].mGraphicBuffer);
144 return BUFFER_REJECTED;
145 }
146
Chia-I Wuf1405182017-11-27 11:29:21 -0800147 // Release the previous buffer.
Alec Mouri56e538f2019-01-14 15:22:01 -0800148 err = updateAndReleaseLocked(item, &mPendingRelease);
Chia-I Wuf1405182017-11-27 11:29:21 -0800149 if (err != NO_ERROR) {
Chia-I Wuf1405182017-11-27 11:29:21 -0800150 return err;
151 }
152
Alec Mouri3221a892018-09-28 20:45:06 +0000153 if (!mRE.useNativeFenceSync()) {
Chia-I Wuda5c7302017-11-27 14:51:06 -0800154 // Bind the new buffer to the GL texture.
155 //
156 // Older devices require the "implicit" synchronization provided
157 // by glEGLImageTargetTexture2DOES, which this method calls. Newer
158 // devices will either call this in Layer::onDraw, or (if it's not
159 // a GL-composited layer) not at all.
160 err = bindTextureImageLocked();
161 }
162
163 return err;
164}
165
Chia-I Wu0cb75ac2017-11-27 15:56:04 -0800166status_t BufferLayerConsumer::bindTextureImage() {
167 Mutex::Autolock lock(mMutex);
168 return bindTextureImageLocked();
169}
170
Chia-I Wuda5c7302017-11-27 14:51:06 -0800171void BufferLayerConsumer::setReleaseFence(const sp<Fence>& fence) {
172 if (!fence->isValid()) {
173 return;
174 }
175
176 auto slot = mPendingRelease.isPending ? mPendingRelease.currentTexture : mCurrentTexture;
177 if (slot == BufferQueue::INVALID_BUFFER_SLOT) {
178 return;
179 }
180
Alec Mourib5c4f352019-02-19 19:46:38 -0800181 auto buffer = mPendingRelease.isPending ? mPendingRelease.graphicBuffer
182 : mCurrentTextureBuffer->graphicBuffer();
Chia-I Wuda5c7302017-11-27 14:51:06 -0800183 auto err = addReleaseFence(slot, buffer, fence);
184 if (err != OK) {
185 BLC_LOGE("setReleaseFence: failed to add the fence: %s (%d)", strerror(-err), err);
186 }
187}
188
189bool BufferLayerConsumer::releasePendingBuffer() {
190 if (!mPendingRelease.isPending) {
191 BLC_LOGV("Pending buffer already released");
192 return false;
193 }
194 BLC_LOGV("Releasing pending buffer");
195 Mutex::Autolock lock(mMutex);
196 status_t result =
197 releaseBufferLocked(mPendingRelease.currentTexture, mPendingRelease.graphicBuffer);
198 if (result < NO_ERROR) {
199 BLC_LOGE("releasePendingBuffer failed: %s (%d)", strerror(-result), result);
200 }
201 mPendingRelease = PendingRelease();
202 return true;
Chia-I Wuf1405182017-11-27 11:29:21 -0800203}
204
Chia-I Wu0cb75ac2017-11-27 15:56:04 -0800205sp<Fence> BufferLayerConsumer::getPrevFinalReleaseFence() const {
206 Mutex::Autolock lock(mMutex);
207 return ConsumerBase::mPrevFinalReleaseFence;
208}
209
Chia-I Wuf1405182017-11-27 11:29:21 -0800210status_t BufferLayerConsumer::acquireBufferLocked(BufferItem* item, nsecs_t presentWhen,
211 uint64_t maxFrameNumber) {
212 status_t err = ConsumerBase::acquireBufferLocked(item, presentWhen, maxFrameNumber);
213 if (err != NO_ERROR) {
214 return err;
215 }
216
217 // If item->mGraphicBuffer is not null, this buffer has not been acquired
Alec Mourib5c4f352019-02-19 19:46:38 -0800218 // before, so we need to clean up old references.
Peiyong Lin566a3b42018-01-09 18:22:43 -0800219 if (item->mGraphicBuffer != nullptr) {
Alec Mourib5c4f352019-02-19 19:46:38 -0800220 mImages[item->mSlot] = std::make_shared<Image>(item->mGraphicBuffer, mRE);
Chia-I Wuf1405182017-11-27 11:29:21 -0800221 }
222
223 return NO_ERROR;
224}
225
Chia-I Wuf1405182017-11-27 11:29:21 -0800226status_t BufferLayerConsumer::updateAndReleaseLocked(const BufferItem& item,
Alec Mouri56e538f2019-01-14 15:22:01 -0800227 PendingRelease* pendingRelease) {
Chia-I Wuf1405182017-11-27 11:29:21 -0800228 status_t err = NO_ERROR;
229
230 int slot = item.mSlot;
231
Chia-I Wuf1405182017-11-27 11:29:21 -0800232 BLC_LOGV("updateAndRelease: (slot=%d buf=%p) -> (slot=%d buf=%p)", mCurrentTexture,
Alec Mourib5c4f352019-02-19 19:46:38 -0800233 (mCurrentTextureBuffer != nullptr && mCurrentTextureBuffer->graphicBuffer() != nullptr)
234 ? mCurrentTextureBuffer->graphicBuffer()->handle
235 : 0,
236 slot, mSlots[slot].mGraphicBuffer->handle);
Chia-I Wuf1405182017-11-27 11:29:21 -0800237
238 // Hang onto the pointer so that it isn't freed in the call to
239 // releaseBufferLocked() if we're in shared buffer mode and both buffers are
240 // the same.
Alec Mourib5c4f352019-02-19 19:46:38 -0800241 std::shared_ptr<Image> nextTextureBuffer = mImages[slot];
Chia-I Wuf1405182017-11-27 11:29:21 -0800242
243 // release old buffer
244 if (mCurrentTexture != BufferQueue::INVALID_BUFFER_SLOT) {
245 if (pendingRelease == nullptr) {
Alec Mourib5c4f352019-02-19 19:46:38 -0800246 status_t status =
247 releaseBufferLocked(mCurrentTexture, mCurrentTextureBuffer->graphicBuffer());
Chia-I Wuf1405182017-11-27 11:29:21 -0800248 if (status < NO_ERROR) {
249 BLC_LOGE("updateAndRelease: failed to release buffer: %s (%d)", strerror(-status),
250 status);
251 err = status;
252 // keep going, with error raised [?]
253 }
254 } else {
255 pendingRelease->currentTexture = mCurrentTexture;
Alec Mourib5c4f352019-02-19 19:46:38 -0800256 pendingRelease->graphicBuffer = mCurrentTextureBuffer->graphicBuffer();
Chia-I Wuf1405182017-11-27 11:29:21 -0800257 pendingRelease->isPending = true;
258 }
259 }
260
261 // Update the BufferLayerConsumer state.
262 mCurrentTexture = slot;
Alec Mouri39801c02018-10-10 10:44:47 -0700263 mCurrentTextureBuffer = nextTextureBuffer;
Chia-I Wuf1405182017-11-27 11:29:21 -0800264 mCurrentCrop = item.mCrop;
265 mCurrentTransform = item.mTransform;
266 mCurrentScalingMode = item.mScalingMode;
267 mCurrentTimestamp = item.mTimestamp;
Peiyong Lin34beb7a2018-03-28 11:57:12 -0700268 mCurrentDataSpace = static_cast<ui::Dataspace>(item.mDataSpace);
Courtney Goeltzenleuchter9bad0d72017-12-19 12:34:34 -0700269 mCurrentHdrMetadata = item.mHdrMetadata;
Chia-I Wuf1405182017-11-27 11:29:21 -0800270 mCurrentFence = item.mFence;
271 mCurrentFenceTime = item.mFenceTime;
272 mCurrentFrameNumber = item.mFrameNumber;
Chia-I Wu67dcc692017-11-27 14:51:06 -0800273 mCurrentTransformToDisplayInverse = item.mTransformToDisplayInverse;
274 mCurrentSurfaceDamage = item.mSurfaceDamage;
Chia-I Wu5c6e4632018-01-11 08:54:38 -0800275 mCurrentApi = item.mApi;
Chia-I Wuf1405182017-11-27 11:29:21 -0800276
277 computeCurrentTransformMatrixLocked();
278
279 return err;
280}
281
282status_t BufferLayerConsumer::bindTextureImageLocked() {
Dan Stoza84d619e2018-03-28 17:07:36 -0700283 ATRACE_CALL();
Alec Mouri39801c02018-10-10 10:44:47 -0700284
Alec Mourib5c4f352019-02-19 19:46:38 -0800285 if (mCurrentTextureBuffer != nullptr && mCurrentTextureBuffer->graphicBuffer() != nullptr) {
286 return mRE.bindExternalTextureBuffer(mTexName, mCurrentTextureBuffer->graphicBuffer(),
287 mCurrentFence);
288 }
289
290 return NO_INIT;
Chia-I Wuf1405182017-11-27 11:29:21 -0800291}
292
Chia-I Wuf1405182017-11-27 11:29:21 -0800293void BufferLayerConsumer::getTransformMatrix(float mtx[16]) {
294 Mutex::Autolock lock(mMutex);
295 memcpy(mtx, mCurrentTransformMatrix, sizeof(mCurrentTransformMatrix));
296}
297
298void BufferLayerConsumer::setFilteringEnabled(bool enabled) {
299 Mutex::Autolock lock(mMutex);
300 if (mAbandoned) {
301 BLC_LOGE("setFilteringEnabled: BufferLayerConsumer is abandoned!");
302 return;
303 }
304 bool needsRecompute = mFilteringEnabled != enabled;
305 mFilteringEnabled = enabled;
306
Alec Mouri39801c02018-10-10 10:44:47 -0700307 if (needsRecompute && mCurrentTextureBuffer == nullptr) {
308 BLC_LOGD("setFilteringEnabled called with mCurrentTextureBuffer == nullptr");
Chia-I Wuf1405182017-11-27 11:29:21 -0800309 }
310
Alec Mouri39801c02018-10-10 10:44:47 -0700311 if (needsRecompute && mCurrentTextureBuffer != nullptr) {
Chia-I Wuf1405182017-11-27 11:29:21 -0800312 computeCurrentTransformMatrixLocked();
313 }
314}
315
316void BufferLayerConsumer::computeCurrentTransformMatrixLocked() {
317 BLC_LOGV("computeCurrentTransformMatrixLocked");
Alec Mourib5c4f352019-02-19 19:46:38 -0800318 if (mCurrentTextureBuffer == nullptr || mCurrentTextureBuffer->graphicBuffer() == nullptr) {
Chia-I Wuf1405182017-11-27 11:29:21 -0800319 BLC_LOGD("computeCurrentTransformMatrixLocked: "
Alec Mouri39801c02018-10-10 10:44:47 -0700320 "mCurrentTextureBuffer is nullptr");
Chia-I Wuf1405182017-11-27 11:29:21 -0800321 }
Alec Mourib5c4f352019-02-19 19:46:38 -0800322 GLConsumer::computeTransformMatrix(mCurrentTransformMatrix,
323 mCurrentTextureBuffer == nullptr
324 ? nullptr
325 : mCurrentTextureBuffer->graphicBuffer(),
326 mCurrentCrop, mCurrentTransform, mFilteringEnabled);
Chia-I Wuf1405182017-11-27 11:29:21 -0800327}
328
Chia-I Wuf1405182017-11-27 11:29:21 -0800329nsecs_t BufferLayerConsumer::getTimestamp() {
330 BLC_LOGV("getTimestamp");
331 Mutex::Autolock lock(mMutex);
332 return mCurrentTimestamp;
333}
334
Peiyong Lin34beb7a2018-03-28 11:57:12 -0700335ui::Dataspace BufferLayerConsumer::getCurrentDataSpace() {
Chia-I Wuf1405182017-11-27 11:29:21 -0800336 BLC_LOGV("getCurrentDataSpace");
337 Mutex::Autolock lock(mMutex);
338 return mCurrentDataSpace;
339}
340
Courtney Goeltzenleuchter9bad0d72017-12-19 12:34:34 -0700341const HdrMetadata& BufferLayerConsumer::getCurrentHdrMetadata() const {
342 BLC_LOGV("getCurrentHdrMetadata");
343 Mutex::Autolock lock(mMutex);
344 return mCurrentHdrMetadata;
345}
346
Chia-I Wuf1405182017-11-27 11:29:21 -0800347uint64_t BufferLayerConsumer::getFrameNumber() {
348 BLC_LOGV("getFrameNumber");
349 Mutex::Autolock lock(mMutex);
350 return mCurrentFrameNumber;
351}
352
Chia-I Wu67dcc692017-11-27 14:51:06 -0800353bool BufferLayerConsumer::getTransformToDisplayInverse() const {
354 Mutex::Autolock lock(mMutex);
355 return mCurrentTransformToDisplayInverse;
356}
357
358const Region& BufferLayerConsumer::getSurfaceDamage() const {
359 return mCurrentSurfaceDamage;
360}
361
Chia-I Wu5c6e4632018-01-11 08:54:38 -0800362int BufferLayerConsumer::getCurrentApi() const {
363 Mutex::Autolock lock(mMutex);
364 return mCurrentApi;
365}
366
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000367sp<GraphicBuffer> BufferLayerConsumer::getCurrentBuffer(int* outSlot, sp<Fence>* outFence) const {
Chia-I Wuf1405182017-11-27 11:29:21 -0800368 Mutex::Autolock lock(mMutex);
369
370 if (outSlot != nullptr) {
371 *outSlot = mCurrentTexture;
372 }
373
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000374 if (outFence != nullptr) {
375 *outFence = mCurrentFence;
376 }
377
Alec Mourib5c4f352019-02-19 19:46:38 -0800378 return mCurrentTextureBuffer == nullptr ? nullptr : mCurrentTextureBuffer->graphicBuffer();
Alec Mourie7d1d4a2019-02-05 01:13:46 +0000379}
380
Chia-I Wuf1405182017-11-27 11:29:21 -0800381Rect BufferLayerConsumer::getCurrentCrop() const {
382 Mutex::Autolock lock(mMutex);
383 return (mCurrentScalingMode == NATIVE_WINDOW_SCALING_MODE_SCALE_CROP)
Chia-I Wue1e11872017-12-01 09:21:59 -0800384 ? GLConsumer::scaleDownCrop(mCurrentCrop, mDefaultWidth, mDefaultHeight)
Chia-I Wuf1405182017-11-27 11:29:21 -0800385 : mCurrentCrop;
386}
387
388uint32_t BufferLayerConsumer::getCurrentTransform() const {
389 Mutex::Autolock lock(mMutex);
390 return mCurrentTransform;
391}
392
393uint32_t BufferLayerConsumer::getCurrentScalingMode() const {
394 Mutex::Autolock lock(mMutex);
395 return mCurrentScalingMode;
396}
397
398sp<Fence> BufferLayerConsumer::getCurrentFence() const {
399 Mutex::Autolock lock(mMutex);
400 return mCurrentFence;
401}
402
403std::shared_ptr<FenceTime> BufferLayerConsumer::getCurrentFenceTime() const {
404 Mutex::Autolock lock(mMutex);
405 return mCurrentFenceTime;
406}
407
Chia-I Wu3498e3c2017-12-01 10:19:38 -0800408status_t BufferLayerConsumer::doFenceWaitLocked() const {
Chia-I Wuf1405182017-11-27 11:29:21 -0800409 if (mCurrentFence->isValid()) {
Lloyd Pique63f9dbf2018-06-21 13:13:07 -0700410 if (mRE.useWaitSync()) {
Chia-I Wu3498e3c2017-12-01 10:19:38 -0800411 base::unique_fd fenceFd(mCurrentFence->dup());
Chia-I Wuf1405182017-11-27 11:29:21 -0800412 if (fenceFd == -1) {
Chia-I Wu3498e3c2017-12-01 10:19:38 -0800413 BLC_LOGE("doFenceWait: error dup'ing fence fd: %d", errno);
Chia-I Wuf1405182017-11-27 11:29:21 -0800414 return -errno;
415 }
Chia-I Wu3498e3c2017-12-01 10:19:38 -0800416 if (!mRE.waitFence(std::move(fenceFd))) {
417 BLC_LOGE("doFenceWait: failed to wait on fence fd");
Chia-I Wuf1405182017-11-27 11:29:21 -0800418 return UNKNOWN_ERROR;
419 }
420 } else {
Chia-I Wu3498e3c2017-12-01 10:19:38 -0800421 status_t err = mCurrentFence->waitForever("BufferLayerConsumer::doFenceWaitLocked");
Chia-I Wuf1405182017-11-27 11:29:21 -0800422 if (err != NO_ERROR) {
Chia-I Wu3498e3c2017-12-01 10:19:38 -0800423 BLC_LOGE("doFenceWait: error waiting for fence: %d", err);
Chia-I Wuf1405182017-11-27 11:29:21 -0800424 return err;
425 }
426 }
427 }
428
429 return NO_ERROR;
430}
431
432void BufferLayerConsumer::freeBufferLocked(int slotIndex) {
433 BLC_LOGV("freeBufferLocked: slotIndex=%d", slotIndex);
434 if (slotIndex == mCurrentTexture) {
435 mCurrentTexture = BufferQueue::INVALID_BUFFER_SLOT;
436 }
Alec Mourib5c4f352019-02-19 19:46:38 -0800437 mImages[slotIndex] = nullptr;
Chia-I Wuf1405182017-11-27 11:29:21 -0800438 ConsumerBase::freeBufferLocked(slotIndex);
439}
440
Chia-I Wuc75c44d2017-11-27 14:32:57 -0800441void BufferLayerConsumer::onDisconnect() {
442 sp<Layer> l = mLayer.promote();
443 if (l.get()) {
444 l->onDisconnect();
445 }
446}
447
Chia-I Wufd257f82017-11-27 14:51:06 -0800448void BufferLayerConsumer::onSidebandStreamChanged() {
449 FrameAvailableListener* unsafeFrameAvailableListener = nullptr;
450 {
451 Mutex::Autolock lock(mFrameAvailableMutex);
452 unsafeFrameAvailableListener = mFrameAvailableListener.unsafe_get();
453 }
454 sp<ContentsChangedListener> listener;
455 { // scope for the lock
456 Mutex::Autolock lock(mMutex);
457 ALOG_ASSERT(unsafeFrameAvailableListener == mContentsChangedListener.unsafe_get());
458 listener = mContentsChangedListener.promote();
459 }
460
Peiyong Lin566a3b42018-01-09 18:22:43 -0800461 if (listener != nullptr) {
Chia-I Wufd257f82017-11-27 14:51:06 -0800462 listener->onSidebandStreamChanged();
463 }
464}
465
Chia-I Wuc75c44d2017-11-27 14:32:57 -0800466void BufferLayerConsumer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
467 FrameEventHistoryDelta* outDelta) {
468 sp<Layer> l = mLayer.promote();
469 if (l.get()) {
470 l->addAndGetFrameTimestamps(newTimestamps, outDelta);
471 }
472}
473
Chia-I Wuf1405182017-11-27 11:29:21 -0800474void BufferLayerConsumer::abandonLocked() {
475 BLC_LOGV("abandonLocked");
Alec Mourib5c4f352019-02-19 19:46:38 -0800476 mCurrentTextureBuffer = nullptr;
477 for (int i = 0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) {
478 mImages[i] = nullptr;
479 }
Chia-I Wuf1405182017-11-27 11:29:21 -0800480 ConsumerBase::abandonLocked();
481}
482
483status_t BufferLayerConsumer::setConsumerUsageBits(uint64_t usage) {
484 return ConsumerBase::setConsumerUsageBits(usage | DEFAULT_USAGE_FLAGS);
485}
486
487void BufferLayerConsumer::dumpLocked(String8& result, const char* prefix) const {
488 result.appendFormat("%smTexName=%d mCurrentTexture=%d\n"
489 "%smCurrentCrop=[%d,%d,%d,%d] mCurrentTransform=%#x\n",
490 prefix, mTexName, mCurrentTexture, prefix, mCurrentCrop.left,
491 mCurrentCrop.top, mCurrentCrop.right, mCurrentCrop.bottom,
492 mCurrentTransform);
493
494 ConsumerBase::dumpLocked(result, prefix);
495}
496
Alec Mourib5c4f352019-02-19 19:46:38 -0800497BufferLayerConsumer::Image::~Image() {
498 if (mGraphicBuffer != nullptr) {
499 ALOGE("Destroying buffer: %" PRId64, mGraphicBuffer->getId());
500 mRE.unbindExternalTextureBuffer(mGraphicBuffer->getId());
501 }
502}
503
Chia-I Wuf1405182017-11-27 11:29:21 -0800504}; // namespace android