| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 1 | /* | 
|  | 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 Wu | c75c44d | 2017-11-27 14:32:57 -0800 | [diff] [blame] | 23 | #include "Layer.h" | 
| Ana Krulec | fefcb58 | 2018-08-07 14:22:37 -0700 | [diff] [blame] | 24 | #include "Scheduler/DispSync.h" | 
| Chia-I Wu | c75c44d | 2017-11-27 14:32:57 -0800 | [diff] [blame] | 25 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 26 | #include <inttypes.h> | 
|  | 27 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 28 | #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 Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 38 | #include <private/gui/ComposerService.h> | 
| Peiyong Lin | cbc184f | 2018-08-22 13:24:10 -0700 | [diff] [blame] | 39 | #include <renderengine/Image.h> | 
|  | 40 | #include <renderengine/RenderEngine.h> | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 41 | #include <utils/Log.h> | 
|  | 42 | #include <utils/String8.h> | 
|  | 43 | #include <utils/Trace.h> | 
|  | 44 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 45 | namespace 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 Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 54 | static const mat4 mtxIdentity; | 
|  | 55 |  | 
| Lloyd Pique | 144e116 | 2017-12-20 16:44:52 -0800 | [diff] [blame] | 56 | BufferLayerConsumer::BufferLayerConsumer(const sp<IGraphicBufferConsumer>& bq, | 
| Peiyong Lin | 833074a | 2018-08-28 11:53:54 -0700 | [diff] [blame] | 57 | renderengine::RenderEngine& engine, uint32_t tex, | 
|  | 58 | Layer* layer) | 
| Chia-I Wu | bd854bf | 2017-11-27 13:41:26 -0800 | [diff] [blame] | 59 | : ConsumerBase(bq, false), | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 60 | mCurrentCrop(Rect::EMPTY_RECT), | 
|  | 61 | mCurrentTransform(0), | 
|  | 62 | mCurrentScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE), | 
|  | 63 | mCurrentFence(Fence::NO_FENCE), | 
|  | 64 | mCurrentTimestamp(0), | 
| Peiyong Lin | 34beb7a | 2018-03-28 11:57:12 -0700 | [diff] [blame] | 65 | mCurrentDataSpace(ui::Dataspace::UNKNOWN), | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 66 | mCurrentFrameNumber(0), | 
| Chia-I Wu | 67dcc69 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 67 | mCurrentTransformToDisplayInverse(false), | 
|  | 68 | mCurrentSurfaceDamage(), | 
| Chia-I Wu | 5c6e463 | 2018-01-11 08:54:38 -0800 | [diff] [blame] | 69 | mCurrentApi(0), | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 70 | mDefaultWidth(1), | 
|  | 71 | mDefaultHeight(1), | 
|  | 72 | mFilteringEnabled(true), | 
| Chia-I Wu | 9f2db77 | 2017-11-30 21:06:50 -0800 | [diff] [blame] | 73 | mRE(engine), | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 74 | mTexName(tex), | 
| Chia-I Wu | c75c44d | 2017-11-27 14:32:57 -0800 | [diff] [blame] | 75 | mLayer(layer), | 
| Chia-I Wu | c91077c | 2017-11-27 13:32:04 -0800 | [diff] [blame] | 76 | mCurrentTexture(BufferQueue::INVALID_BUFFER_SLOT) { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 77 | BLC_LOGV("BufferLayerConsumer"); | 
|  | 78 |  | 
|  | 79 | memcpy(mCurrentTransformMatrix, mtxIdentity.asArray(), sizeof(mCurrentTransformMatrix)); | 
|  | 80 |  | 
|  | 81 | mConsumer->setConsumerUsageBits(DEFAULT_USAGE_FLAGS); | 
|  | 82 | } | 
|  | 83 |  | 
|  | 84 | status_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 Wu | fd257f8 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 95 | void BufferLayerConsumer::setContentsChangedListener(const wp<ContentsChangedListener>& listener) { | 
|  | 96 | setFrameAvailableListener(listener); | 
|  | 97 | Mutex::Autolock lock(mMutex); | 
|  | 98 | mContentsChangedListener = listener; | 
|  | 99 | } | 
|  | 100 |  | 
| Ana Krulec | 010d219 | 2018-10-08 06:29:54 -0700 | [diff] [blame] | 101 | status_t BufferLayerConsumer::updateTexImage(BufferRejecter* rejecter, nsecs_t expectedPresentTime, | 
| Chia-I Wu | da5c730 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 102 | bool* autoRefresh, bool* queuedBuffer, | 
| Alec Mouri | 56e538f | 2019-01-14 15:22:01 -0800 | [diff] [blame] | 103 | uint64_t maxFrameNumber) { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 104 | 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 Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 113 | 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 Krulec | 010d219 | 2018-10-08 06:29:54 -0700 | [diff] [blame] | 118 | status_t err = acquireBufferLocked(&item, expectedPresentTime, maxFrameNumber); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 119 | if (err != NO_ERROR) { | 
|  | 120 | if (err == BufferQueue::NO_BUFFER_AVAILABLE) { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 121 | err = NO_ERROR; | 
| Chia-I Wu | da5c730 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 122 | } else if (err == BufferQueue::PRESENT_LATER) { | 
|  | 123 | // return the error, without logging | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 124 | } else { | 
|  | 125 | BLC_LOGE("updateTexImage: acquire failed: %s (%d)", strerror(-err), err); | 
|  | 126 | } | 
|  | 127 | return err; | 
|  | 128 | } | 
|  | 129 |  | 
| Chia-I Wu | da5c730 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 130 | 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 Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 147 | // Release the previous buffer. | 
| Alec Mouri | 56e538f | 2019-01-14 15:22:01 -0800 | [diff] [blame] | 148 | err = updateAndReleaseLocked(item, &mPendingRelease); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 149 | if (err != NO_ERROR) { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 150 | return err; | 
|  | 151 | } | 
|  | 152 |  | 
| Alec Mouri | 3221a89 | 2018-09-28 20:45:06 +0000 | [diff] [blame] | 153 | if (!mRE.useNativeFenceSync()) { | 
| Chia-I Wu | da5c730 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 154 | // 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 Wu | 0cb75ac | 2017-11-27 15:56:04 -0800 | [diff] [blame] | 166 | status_t BufferLayerConsumer::bindTextureImage() { | 
|  | 167 | Mutex::Autolock lock(mMutex); | 
|  | 168 | return bindTextureImageLocked(); | 
|  | 169 | } | 
|  | 170 |  | 
| Chia-I Wu | da5c730 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 171 | void 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 Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 181 | auto buffer = mPendingRelease.isPending ? mPendingRelease.graphicBuffer | 
|  | 182 | : mCurrentTextureBuffer->graphicBuffer(); | 
| Chia-I Wu | da5c730 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 183 | 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 |  | 
|  | 189 | bool 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 Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 203 | } | 
|  | 204 |  | 
| Chia-I Wu | 0cb75ac | 2017-11-27 15:56:04 -0800 | [diff] [blame] | 205 | sp<Fence> BufferLayerConsumer::getPrevFinalReleaseFence() const { | 
|  | 206 | Mutex::Autolock lock(mMutex); | 
|  | 207 | return ConsumerBase::mPrevFinalReleaseFence; | 
|  | 208 | } | 
|  | 209 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 210 | status_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 Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 218 | // before, so we need to clean up old references. | 
| Peiyong Lin | 566a3b4 | 2018-01-09 18:22:43 -0800 | [diff] [blame] | 219 | if (item->mGraphicBuffer != nullptr) { | 
| Alec Mouri | d7b3a8b | 2019-03-21 11:44:18 -0700 | [diff] [blame] | 220 | std::lock_guard<std::mutex> lock(mImagesMutex); | 
|  | 221 | if (mImages[item->mSlot] == nullptr || mImages[item->mSlot]->graphicBuffer() == nullptr || | 
|  | 222 | mImages[item->mSlot]->graphicBuffer()->getId() != item->mGraphicBuffer->getId()) { | 
|  | 223 | mImages[item->mSlot] = std::make_shared<Image>(item->mGraphicBuffer, mRE); | 
|  | 224 | } | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 225 | } | 
|  | 226 |  | 
|  | 227 | return NO_ERROR; | 
|  | 228 | } | 
|  | 229 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 230 | status_t BufferLayerConsumer::updateAndReleaseLocked(const BufferItem& item, | 
| Alec Mouri | 56e538f | 2019-01-14 15:22:01 -0800 | [diff] [blame] | 231 | PendingRelease* pendingRelease) { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 232 | status_t err = NO_ERROR; | 
|  | 233 |  | 
|  | 234 | int slot = item.mSlot; | 
|  | 235 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 236 | BLC_LOGV("updateAndRelease: (slot=%d buf=%p) -> (slot=%d buf=%p)", mCurrentTexture, | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 237 | (mCurrentTextureBuffer != nullptr && mCurrentTextureBuffer->graphicBuffer() != nullptr) | 
|  | 238 | ? mCurrentTextureBuffer->graphicBuffer()->handle | 
|  | 239 | : 0, | 
|  | 240 | slot, mSlots[slot].mGraphicBuffer->handle); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 241 |  | 
|  | 242 | // Hang onto the pointer so that it isn't freed in the call to | 
|  | 243 | // releaseBufferLocked() if we're in shared buffer mode and both buffers are | 
|  | 244 | // the same. | 
| Alec Mouri | d7b3a8b | 2019-03-21 11:44:18 -0700 | [diff] [blame] | 245 |  | 
|  | 246 | std::shared_ptr<Image> nextTextureBuffer; | 
|  | 247 | { | 
|  | 248 | std::lock_guard<std::mutex> lock(mImagesMutex); | 
|  | 249 | nextTextureBuffer = mImages[slot]; | 
|  | 250 | } | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 251 |  | 
|  | 252 | // release old buffer | 
|  | 253 | if (mCurrentTexture != BufferQueue::INVALID_BUFFER_SLOT) { | 
|  | 254 | if (pendingRelease == nullptr) { | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 255 | status_t status = | 
|  | 256 | releaseBufferLocked(mCurrentTexture, mCurrentTextureBuffer->graphicBuffer()); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 257 | if (status < NO_ERROR) { | 
|  | 258 | BLC_LOGE("updateAndRelease: failed to release buffer: %s (%d)", strerror(-status), | 
|  | 259 | status); | 
|  | 260 | err = status; | 
|  | 261 | // keep going, with error raised [?] | 
|  | 262 | } | 
|  | 263 | } else { | 
|  | 264 | pendingRelease->currentTexture = mCurrentTexture; | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 265 | pendingRelease->graphicBuffer = mCurrentTextureBuffer->graphicBuffer(); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 266 | pendingRelease->isPending = true; | 
|  | 267 | } | 
|  | 268 | } | 
|  | 269 |  | 
|  | 270 | // Update the BufferLayerConsumer state. | 
|  | 271 | mCurrentTexture = slot; | 
| Alec Mouri | 39801c0 | 2018-10-10 10:44:47 -0700 | [diff] [blame] | 272 | mCurrentTextureBuffer = nextTextureBuffer; | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 273 | mCurrentCrop = item.mCrop; | 
|  | 274 | mCurrentTransform = item.mTransform; | 
|  | 275 | mCurrentScalingMode = item.mScalingMode; | 
|  | 276 | mCurrentTimestamp = item.mTimestamp; | 
| Peiyong Lin | 34beb7a | 2018-03-28 11:57:12 -0700 | [diff] [blame] | 277 | mCurrentDataSpace = static_cast<ui::Dataspace>(item.mDataSpace); | 
| Courtney Goeltzenleuchter | 9bad0d7 | 2017-12-19 12:34:34 -0700 | [diff] [blame] | 278 | mCurrentHdrMetadata = item.mHdrMetadata; | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 279 | mCurrentFence = item.mFence; | 
|  | 280 | mCurrentFenceTime = item.mFenceTime; | 
|  | 281 | mCurrentFrameNumber = item.mFrameNumber; | 
| Chia-I Wu | 67dcc69 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 282 | mCurrentTransformToDisplayInverse = item.mTransformToDisplayInverse; | 
|  | 283 | mCurrentSurfaceDamage = item.mSurfaceDamage; | 
| Chia-I Wu | 5c6e463 | 2018-01-11 08:54:38 -0800 | [diff] [blame] | 284 | mCurrentApi = item.mApi; | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 285 |  | 
|  | 286 | computeCurrentTransformMatrixLocked(); | 
|  | 287 |  | 
|  | 288 | return err; | 
|  | 289 | } | 
|  | 290 |  | 
|  | 291 | status_t BufferLayerConsumer::bindTextureImageLocked() { | 
| Dan Stoza | 84d619e | 2018-03-28 17:07:36 -0700 | [diff] [blame] | 292 | ATRACE_CALL(); | 
| Alec Mouri | 39801c0 | 2018-10-10 10:44:47 -0700 | [diff] [blame] | 293 |  | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 294 | if (mCurrentTextureBuffer != nullptr && mCurrentTextureBuffer->graphicBuffer() != nullptr) { | 
|  | 295 | return mRE.bindExternalTextureBuffer(mTexName, mCurrentTextureBuffer->graphicBuffer(), | 
|  | 296 | mCurrentFence); | 
|  | 297 | } | 
|  | 298 |  | 
|  | 299 | return NO_INIT; | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 300 | } | 
|  | 301 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 302 | void BufferLayerConsumer::getTransformMatrix(float mtx[16]) { | 
|  | 303 | Mutex::Autolock lock(mMutex); | 
|  | 304 | memcpy(mtx, mCurrentTransformMatrix, sizeof(mCurrentTransformMatrix)); | 
|  | 305 | } | 
|  | 306 |  | 
|  | 307 | void BufferLayerConsumer::setFilteringEnabled(bool enabled) { | 
|  | 308 | Mutex::Autolock lock(mMutex); | 
|  | 309 | if (mAbandoned) { | 
|  | 310 | BLC_LOGE("setFilteringEnabled: BufferLayerConsumer is abandoned!"); | 
|  | 311 | return; | 
|  | 312 | } | 
|  | 313 | bool needsRecompute = mFilteringEnabled != enabled; | 
|  | 314 | mFilteringEnabled = enabled; | 
|  | 315 |  | 
| Alec Mouri | 39801c0 | 2018-10-10 10:44:47 -0700 | [diff] [blame] | 316 | if (needsRecompute && mCurrentTextureBuffer == nullptr) { | 
|  | 317 | BLC_LOGD("setFilteringEnabled called with mCurrentTextureBuffer == nullptr"); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 318 | } | 
|  | 319 |  | 
| Alec Mouri | 39801c0 | 2018-10-10 10:44:47 -0700 | [diff] [blame] | 320 | if (needsRecompute && mCurrentTextureBuffer != nullptr) { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 321 | computeCurrentTransformMatrixLocked(); | 
|  | 322 | } | 
|  | 323 | } | 
|  | 324 |  | 
|  | 325 | void BufferLayerConsumer::computeCurrentTransformMatrixLocked() { | 
|  | 326 | BLC_LOGV("computeCurrentTransformMatrixLocked"); | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 327 | if (mCurrentTextureBuffer == nullptr || mCurrentTextureBuffer->graphicBuffer() == nullptr) { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 328 | BLC_LOGD("computeCurrentTransformMatrixLocked: " | 
| Alec Mouri | 39801c0 | 2018-10-10 10:44:47 -0700 | [diff] [blame] | 329 | "mCurrentTextureBuffer is nullptr"); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 330 | } | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 331 | GLConsumer::computeTransformMatrix(mCurrentTransformMatrix, | 
|  | 332 | mCurrentTextureBuffer == nullptr | 
|  | 333 | ? nullptr | 
|  | 334 | : mCurrentTextureBuffer->graphicBuffer(), | 
| Alec Mouri | 2ee0dda | 2019-01-30 16:44:43 -0800 | [diff] [blame] | 335 | getCurrentCropLocked(), mCurrentTransform, | 
|  | 336 | mFilteringEnabled); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 337 | } | 
|  | 338 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 339 | nsecs_t BufferLayerConsumer::getTimestamp() { | 
|  | 340 | BLC_LOGV("getTimestamp"); | 
|  | 341 | Mutex::Autolock lock(mMutex); | 
|  | 342 | return mCurrentTimestamp; | 
|  | 343 | } | 
|  | 344 |  | 
| Peiyong Lin | 34beb7a | 2018-03-28 11:57:12 -0700 | [diff] [blame] | 345 | ui::Dataspace BufferLayerConsumer::getCurrentDataSpace() { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 346 | BLC_LOGV("getCurrentDataSpace"); | 
|  | 347 | Mutex::Autolock lock(mMutex); | 
|  | 348 | return mCurrentDataSpace; | 
|  | 349 | } | 
|  | 350 |  | 
| Courtney Goeltzenleuchter | 9bad0d7 | 2017-12-19 12:34:34 -0700 | [diff] [blame] | 351 | const HdrMetadata& BufferLayerConsumer::getCurrentHdrMetadata() const { | 
|  | 352 | BLC_LOGV("getCurrentHdrMetadata"); | 
|  | 353 | Mutex::Autolock lock(mMutex); | 
|  | 354 | return mCurrentHdrMetadata; | 
|  | 355 | } | 
|  | 356 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 357 | uint64_t BufferLayerConsumer::getFrameNumber() { | 
|  | 358 | BLC_LOGV("getFrameNumber"); | 
|  | 359 | Mutex::Autolock lock(mMutex); | 
|  | 360 | return mCurrentFrameNumber; | 
|  | 361 | } | 
|  | 362 |  | 
| Chia-I Wu | 67dcc69 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 363 | bool BufferLayerConsumer::getTransformToDisplayInverse() const { | 
|  | 364 | Mutex::Autolock lock(mMutex); | 
|  | 365 | return mCurrentTransformToDisplayInverse; | 
|  | 366 | } | 
|  | 367 |  | 
|  | 368 | const Region& BufferLayerConsumer::getSurfaceDamage() const { | 
|  | 369 | return mCurrentSurfaceDamage; | 
|  | 370 | } | 
|  | 371 |  | 
| Chia-I Wu | 5c6e463 | 2018-01-11 08:54:38 -0800 | [diff] [blame] | 372 | int BufferLayerConsumer::getCurrentApi() const { | 
|  | 373 | Mutex::Autolock lock(mMutex); | 
|  | 374 | return mCurrentApi; | 
|  | 375 | } | 
|  | 376 |  | 
| Alec Mouri | e7d1d4a | 2019-02-05 01:13:46 +0000 | [diff] [blame] | 377 | sp<GraphicBuffer> BufferLayerConsumer::getCurrentBuffer(int* outSlot, sp<Fence>* outFence) const { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 378 | Mutex::Autolock lock(mMutex); | 
|  | 379 |  | 
|  | 380 | if (outSlot != nullptr) { | 
|  | 381 | *outSlot = mCurrentTexture; | 
|  | 382 | } | 
|  | 383 |  | 
| Alec Mouri | e7d1d4a | 2019-02-05 01:13:46 +0000 | [diff] [blame] | 384 | if (outFence != nullptr) { | 
|  | 385 | *outFence = mCurrentFence; | 
|  | 386 | } | 
|  | 387 |  | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 388 | return mCurrentTextureBuffer == nullptr ? nullptr : mCurrentTextureBuffer->graphicBuffer(); | 
| Alec Mouri | e7d1d4a | 2019-02-05 01:13:46 +0000 | [diff] [blame] | 389 | } | 
|  | 390 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 391 | Rect BufferLayerConsumer::getCurrentCrop() const { | 
|  | 392 | Mutex::Autolock lock(mMutex); | 
| Alec Mouri | 2ee0dda | 2019-01-30 16:44:43 -0800 | [diff] [blame] | 393 | return getCurrentCropLocked(); | 
|  | 394 | } | 
|  | 395 |  | 
|  | 396 | Rect BufferLayerConsumer::getCurrentCropLocked() const { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 397 | return (mCurrentScalingMode == NATIVE_WINDOW_SCALING_MODE_SCALE_CROP) | 
| Chia-I Wu | e1e1187 | 2017-12-01 09:21:59 -0800 | [diff] [blame] | 398 | ? GLConsumer::scaleDownCrop(mCurrentCrop, mDefaultWidth, mDefaultHeight) | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 399 | : mCurrentCrop; | 
|  | 400 | } | 
|  | 401 |  | 
|  | 402 | uint32_t BufferLayerConsumer::getCurrentTransform() const { | 
|  | 403 | Mutex::Autolock lock(mMutex); | 
|  | 404 | return mCurrentTransform; | 
|  | 405 | } | 
|  | 406 |  | 
|  | 407 | uint32_t BufferLayerConsumer::getCurrentScalingMode() const { | 
|  | 408 | Mutex::Autolock lock(mMutex); | 
|  | 409 | return mCurrentScalingMode; | 
|  | 410 | } | 
|  | 411 |  | 
|  | 412 | sp<Fence> BufferLayerConsumer::getCurrentFence() const { | 
|  | 413 | Mutex::Autolock lock(mMutex); | 
|  | 414 | return mCurrentFence; | 
|  | 415 | } | 
|  | 416 |  | 
|  | 417 | std::shared_ptr<FenceTime> BufferLayerConsumer::getCurrentFenceTime() const { | 
|  | 418 | Mutex::Autolock lock(mMutex); | 
|  | 419 | return mCurrentFenceTime; | 
|  | 420 | } | 
|  | 421 |  | 
| Chia-I Wu | 3498e3c | 2017-12-01 10:19:38 -0800 | [diff] [blame] | 422 | status_t BufferLayerConsumer::doFenceWaitLocked() const { | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 423 | if (mCurrentFence->isValid()) { | 
| Lloyd Pique | 63f9dbf | 2018-06-21 13:13:07 -0700 | [diff] [blame] | 424 | if (mRE.useWaitSync()) { | 
| Chia-I Wu | 3498e3c | 2017-12-01 10:19:38 -0800 | [diff] [blame] | 425 | base::unique_fd fenceFd(mCurrentFence->dup()); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 426 | if (fenceFd == -1) { | 
| Chia-I Wu | 3498e3c | 2017-12-01 10:19:38 -0800 | [diff] [blame] | 427 | BLC_LOGE("doFenceWait: error dup'ing fence fd: %d", errno); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 428 | return -errno; | 
|  | 429 | } | 
| Chia-I Wu | 3498e3c | 2017-12-01 10:19:38 -0800 | [diff] [blame] | 430 | if (!mRE.waitFence(std::move(fenceFd))) { | 
|  | 431 | BLC_LOGE("doFenceWait: failed to wait on fence fd"); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 432 | return UNKNOWN_ERROR; | 
|  | 433 | } | 
|  | 434 | } else { | 
| Chia-I Wu | 3498e3c | 2017-12-01 10:19:38 -0800 | [diff] [blame] | 435 | status_t err = mCurrentFence->waitForever("BufferLayerConsumer::doFenceWaitLocked"); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 436 | if (err != NO_ERROR) { | 
| Chia-I Wu | 3498e3c | 2017-12-01 10:19:38 -0800 | [diff] [blame] | 437 | BLC_LOGE("doFenceWait: error waiting for fence: %d", err); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 438 | return err; | 
|  | 439 | } | 
|  | 440 | } | 
|  | 441 | } | 
|  | 442 |  | 
|  | 443 | return NO_ERROR; | 
|  | 444 | } | 
|  | 445 |  | 
|  | 446 | void BufferLayerConsumer::freeBufferLocked(int slotIndex) { | 
|  | 447 | BLC_LOGV("freeBufferLocked: slotIndex=%d", slotIndex); | 
| Alec Mouri | d7b3a8b | 2019-03-21 11:44:18 -0700 | [diff] [blame] | 448 | std::lock_guard<std::mutex> lock(mImagesMutex); | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 449 | if (slotIndex == mCurrentTexture) { | 
|  | 450 | mCurrentTexture = BufferQueue::INVALID_BUFFER_SLOT; | 
|  | 451 | } | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 452 | mImages[slotIndex] = nullptr; | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 453 | ConsumerBase::freeBufferLocked(slotIndex); | 
|  | 454 | } | 
|  | 455 |  | 
| Chia-I Wu | c75c44d | 2017-11-27 14:32:57 -0800 | [diff] [blame] | 456 | void BufferLayerConsumer::onDisconnect() { | 
|  | 457 | sp<Layer> l = mLayer.promote(); | 
|  | 458 | if (l.get()) { | 
|  | 459 | l->onDisconnect(); | 
|  | 460 | } | 
|  | 461 | } | 
|  | 462 |  | 
| Chia-I Wu | fd257f8 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 463 | void BufferLayerConsumer::onSidebandStreamChanged() { | 
|  | 464 | FrameAvailableListener* unsafeFrameAvailableListener = nullptr; | 
|  | 465 | { | 
|  | 466 | Mutex::Autolock lock(mFrameAvailableMutex); | 
|  | 467 | unsafeFrameAvailableListener = mFrameAvailableListener.unsafe_get(); | 
|  | 468 | } | 
|  | 469 | sp<ContentsChangedListener> listener; | 
|  | 470 | { // scope for the lock | 
|  | 471 | Mutex::Autolock lock(mMutex); | 
|  | 472 | ALOG_ASSERT(unsafeFrameAvailableListener == mContentsChangedListener.unsafe_get()); | 
|  | 473 | listener = mContentsChangedListener.promote(); | 
|  | 474 | } | 
|  | 475 |  | 
| Peiyong Lin | 566a3b4 | 2018-01-09 18:22:43 -0800 | [diff] [blame] | 476 | if (listener != nullptr) { | 
| Chia-I Wu | fd257f8 | 2017-11-27 14:51:06 -0800 | [diff] [blame] | 477 | listener->onSidebandStreamChanged(); | 
|  | 478 | } | 
|  | 479 | } | 
|  | 480 |  | 
| Alec Mouri | 485e4c3 | 2019-04-30 18:24:05 -0700 | [diff] [blame] | 481 | void BufferLayerConsumer::onBufferAvailable(const BufferItem& item) { | 
|  | 482 | if (item.mGraphicBuffer != nullptr && item.mSlot != BufferQueue::INVALID_BUFFER_SLOT) { | 
|  | 483 | std::lock_guard<std::mutex> lock(mImagesMutex); | 
|  | 484 | const std::shared_ptr<Image>& oldImage = mImages[item.mSlot]; | 
|  | 485 | if (oldImage == nullptr || oldImage->graphicBuffer() == nullptr || | 
|  | 486 | oldImage->graphicBuffer()->getId() != item.mGraphicBuffer->getId()) { | 
|  | 487 | mImages[item.mSlot] = std::make_shared<Image>(item.mGraphicBuffer, mRE); | 
|  | 488 | mRE.cacheExternalTextureBuffer(item.mGraphicBuffer); | 
| Alec Mouri | d7b3a8b | 2019-03-21 11:44:18 -0700 | [diff] [blame] | 489 | } | 
| Alec Mouri | d7b3a8b | 2019-03-21 11:44:18 -0700 | [diff] [blame] | 490 | } | 
|  | 491 | } | 
|  | 492 |  | 
| Chia-I Wu | c75c44d | 2017-11-27 14:32:57 -0800 | [diff] [blame] | 493 | void BufferLayerConsumer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps, | 
|  | 494 | FrameEventHistoryDelta* outDelta) { | 
|  | 495 | sp<Layer> l = mLayer.promote(); | 
|  | 496 | if (l.get()) { | 
|  | 497 | l->addAndGetFrameTimestamps(newTimestamps, outDelta); | 
|  | 498 | } | 
|  | 499 | } | 
|  | 500 |  | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 501 | void BufferLayerConsumer::abandonLocked() { | 
|  | 502 | BLC_LOGV("abandonLocked"); | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 503 | mCurrentTextureBuffer = nullptr; | 
|  | 504 | for (int i = 0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) { | 
| Alec Mouri | d7b3a8b | 2019-03-21 11:44:18 -0700 | [diff] [blame] | 505 | std::lock_guard<std::mutex> lock(mImagesMutex); | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 506 | mImages[i] = nullptr; | 
|  | 507 | } | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 508 | ConsumerBase::abandonLocked(); | 
|  | 509 | } | 
|  | 510 |  | 
|  | 511 | status_t BufferLayerConsumer::setConsumerUsageBits(uint64_t usage) { | 
|  | 512 | return ConsumerBase::setConsumerUsageBits(usage | DEFAULT_USAGE_FLAGS); | 
|  | 513 | } | 
|  | 514 |  | 
|  | 515 | void BufferLayerConsumer::dumpLocked(String8& result, const char* prefix) const { | 
|  | 516 | result.appendFormat("%smTexName=%d mCurrentTexture=%d\n" | 
|  | 517 | "%smCurrentCrop=[%d,%d,%d,%d] mCurrentTransform=%#x\n", | 
|  | 518 | prefix, mTexName, mCurrentTexture, prefix, mCurrentCrop.left, | 
|  | 519 | mCurrentCrop.top, mCurrentCrop.right, mCurrentCrop.bottom, | 
|  | 520 | mCurrentTransform); | 
|  | 521 |  | 
|  | 522 | ConsumerBase::dumpLocked(result, prefix); | 
|  | 523 | } | 
|  | 524 |  | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 525 | BufferLayerConsumer::Image::~Image() { | 
|  | 526 | if (mGraphicBuffer != nullptr) { | 
| Alec Mouri | f190733 | 2019-03-07 13:05:26 -0800 | [diff] [blame] | 527 | ALOGV("Destroying buffer: %" PRId64, mGraphicBuffer->getId()); | 
| Alec Mouri | b5c4f35 | 2019-02-19 19:46:38 -0800 | [diff] [blame] | 528 | mRE.unbindExternalTextureBuffer(mGraphicBuffer->getId()); | 
|  | 529 | } | 
|  | 530 | } | 
| Chia-I Wu | f140518 | 2017-11-27 11:29:21 -0800 | [diff] [blame] | 531 | }; // namespace android |