blob: 5f3c38881945ac7b2b7bafbf5ff32416d88b8378 [file] [log] [blame]
Jesse Hall99c7dbb2013-03-14 14:29:29 -07001/*
2 * Copyright 2013 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
Jesse Hall38efe862013-04-06 23:12:29 -070017// #define LOG_NDEBUG 0
Jesse Hall99c7dbb2013-03-14 14:29:29 -070018#include "VirtualDisplaySurface.h"
Jesse Hall38efe862013-04-06 23:12:29 -070019#include "HWComposer.h"
Jesse Hall99c7dbb2013-03-14 14:29:29 -070020
Dan Stoza11611f92015-03-12 15:12:44 -070021#include <gui/BufferItem.h>
Pablo Ceballosf133d002015-10-23 12:10:13 -070022#include <gui/IProducerListener.h>
Dan Stoza11611f92015-03-12 15:12:44 -070023
Jesse Hall99c7dbb2013-03-14 14:29:29 -070024// ---------------------------------------------------------------------------
25namespace android {
26// ---------------------------------------------------------------------------
27
Jesse Hallc354eff2013-10-25 10:44:41 -070028#if defined(FORCE_HWC_COPY_FOR_VIRTUAL_DISPLAYS)
29static const bool sForceHwcCopy = true;
30#else
31static const bool sForceHwcCopy = false;
32#endif
Naseer Ahmed6a968462013-10-04 16:15:22 -040033
Jesse Hall24cd98e2014-07-13 14:37:16 -070034#define VDS_LOGE(msg, ...) ALOGE("[%s] " msg, \
Jesse Hall38efe862013-04-06 23:12:29 -070035 mDisplayName.string(), ##__VA_ARGS__)
Jesse Hall24cd98e2014-07-13 14:37:16 -070036#define VDS_LOGW_IF(cond, msg, ...) ALOGW_IF(cond, "[%s] " msg, \
Jesse Hall38efe862013-04-06 23:12:29 -070037 mDisplayName.string(), ##__VA_ARGS__)
Jesse Hall24cd98e2014-07-13 14:37:16 -070038#define VDS_LOGV(msg, ...) ALOGV("[%s] " msg, \
Jesse Hall38efe862013-04-06 23:12:29 -070039 mDisplayName.string(), ##__VA_ARGS__)
40
41static const char* dbgCompositionTypeStr(DisplaySurface::CompositionType type) {
42 switch (type) {
43 case DisplaySurface::COMPOSITION_UNKNOWN: return "UNKNOWN";
44 case DisplaySurface::COMPOSITION_GLES: return "GLES";
45 case DisplaySurface::COMPOSITION_HWC: return "HWC";
46 case DisplaySurface::COMPOSITION_MIXED: return "MIXED";
47 default: return "<INVALID>";
48 }
49}
50
Jesse Hallffe1f192013-03-22 15:13:48 -070051VirtualDisplaySurface::VirtualDisplaySurface(HWComposer& hwc, int32_t dispId,
Mathias Agopiandb89edc2013-08-02 01:40:18 -070052 const sp<IGraphicBufferProducer>& sink,
Dan Stozab9b08832014-03-13 11:55:57 -070053 const sp<IGraphicBufferProducer>& bqProducer,
54 const sp<IGraphicBufferConsumer>& bqConsumer,
Mathias Agopiandb89edc2013-08-02 01:40:18 -070055 const String8& name)
Dan Stozab9b08832014-03-13 11:55:57 -070056: ConsumerBase(bqConsumer),
Jesse Hall38efe862013-04-06 23:12:29 -070057 mHwc(hwc),
58 mDisplayId(dispId),
59 mDisplayName(name),
Dan Stoza9e56aa02015-11-02 13:00:03 -080060 mSource{},
61 mDefaultOutputFormat(HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED),
62 mOutputFormat(HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED),
Jesse Hall1e27ba22013-09-27 09:05:09 -070063 mOutputUsage(GRALLOC_USAGE_HW_COMPOSER),
Jesse Hall38efe862013-04-06 23:12:29 -070064 mProducerSlotSource(0),
Dan Stoza9e56aa02015-11-02 13:00:03 -080065 mProducerBuffers(),
66 mQueueBufferOutput(),
67 mSinkBufferWidth(0),
68 mSinkBufferHeight(0),
69 mCompositionType(COMPOSITION_UNKNOWN),
70 mFbFence(Fence::NO_FENCE),
71 mOutputFence(Fence::NO_FENCE),
72 mFbProducerSlot(BufferQueue::INVALID_BUFFER_SLOT),
73 mOutputProducerSlot(BufferQueue::INVALID_BUFFER_SLOT),
Jesse Hall38efe862013-04-06 23:12:29 -070074 mDbgState(DBG_STATE_IDLE),
Dan Stoza71433162014-02-04 16:22:36 -080075 mDbgLastCompositionType(COMPOSITION_UNKNOWN),
76 mMustRecompose(false)
Jesse Hallffe1f192013-03-22 15:13:48 -070077{
Jesse Hall38efe862013-04-06 23:12:29 -070078 mSource[SOURCE_SINK] = sink;
Dan Stozab9b08832014-03-13 11:55:57 -070079 mSource[SOURCE_SCRATCH] = bqProducer;
Jesse Hall38efe862013-04-06 23:12:29 -070080
81 resetPerFrameState();
82
83 int sinkWidth, sinkHeight;
Jesse Hall497ba0e2013-11-04 16:43:03 -080084 sink->query(NATIVE_WINDOW_WIDTH, &sinkWidth);
85 sink->query(NATIVE_WINDOW_HEIGHT, &sinkHeight);
Michael Lentine47e45402014-07-18 15:34:25 -070086 mSinkBufferWidth = sinkWidth;
87 mSinkBufferHeight = sinkHeight;
Jesse Hall497ba0e2013-11-04 16:43:03 -080088
89 // Pick the buffer format to request from the sink when not rendering to it
90 // with GLES. If the consumer needs CPU access, use the default format
91 // set by the consumer. Otherwise allow gralloc to decide the format based
92 // on usage bits.
93 int sinkUsage;
94 sink->query(NATIVE_WINDOW_CONSUMER_USAGE_BITS, &sinkUsage);
95 if (sinkUsage & (GRALLOC_USAGE_SW_READ_MASK | GRALLOC_USAGE_SW_WRITE_MASK)) {
96 int sinkFormat;
97 sink->query(NATIVE_WINDOW_FORMAT, &sinkFormat);
98 mDefaultOutputFormat = sinkFormat;
99 } else {
100 mDefaultOutputFormat = HAL_PIXEL_FORMAT_IMPLEMENTATION_DEFINED;
101 }
102 mOutputFormat = mDefaultOutputFormat;
Jesse Hall38efe862013-04-06 23:12:29 -0700103
104 ConsumerBase::mName = String8::format("VDS: %s", mDisplayName.string());
Mathias Agopiandb89edc2013-08-02 01:40:18 -0700105 mConsumer->setConsumerName(ConsumerBase::mName);
106 mConsumer->setConsumerUsageBits(GRALLOC_USAGE_HW_COMPOSER);
107 mConsumer->setDefaultBufferSize(sinkWidth, sinkHeight);
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700108 sink->setAsyncMode(true);
Pablo Ceballosf133d002015-10-23 12:10:13 -0700109 IGraphicBufferProducer::QueueBufferOutput output;
110 mSource[SOURCE_SCRATCH]->connect(NULL, NATIVE_WINDOW_API_EGL, false, &output);
Jesse Hallffe1f192013-03-22 15:13:48 -0700111}
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700112
113VirtualDisplaySurface::~VirtualDisplaySurface() {
Pablo Ceballosf133d002015-10-23 12:10:13 -0700114 mSource[SOURCE_SCRATCH]->disconnect(NATIVE_WINDOW_API_EGL);
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700115}
116
Dan Stoza71433162014-02-04 16:22:36 -0800117status_t VirtualDisplaySurface::beginFrame(bool mustRecompose) {
Jesse Hall38efe862013-04-06 23:12:29 -0700118 if (mDisplayId < 0)
119 return NO_ERROR;
120
Dan Stoza71433162014-02-04 16:22:36 -0800121 mMustRecompose = mustRecompose;
122
Jesse Hall38efe862013-04-06 23:12:29 -0700123 VDS_LOGW_IF(mDbgState != DBG_STATE_IDLE,
Jesse Hall028dc8f2013-08-20 16:35:32 -0700124 "Unexpected beginFrame() in %s state", dbgStateStr());
125 mDbgState = DBG_STATE_BEGUN;
126
Jesse Hall028dc8f2013-08-20 16:35:32 -0700127 return refreshOutputBuffer();
128}
129
130status_t VirtualDisplaySurface::prepareFrame(CompositionType compositionType) {
131 if (mDisplayId < 0)
132 return NO_ERROR;
133
134 VDS_LOGW_IF(mDbgState != DBG_STATE_BEGUN,
Jesse Hall38efe862013-04-06 23:12:29 -0700135 "Unexpected prepareFrame() in %s state", dbgStateStr());
136 mDbgState = DBG_STATE_PREPARED;
137
138 mCompositionType = compositionType;
Naseer Ahmed6a968462013-10-04 16:15:22 -0400139 if (sForceHwcCopy && mCompositionType == COMPOSITION_GLES) {
140 // Some hardware can do RGB->YUV conversion more efficiently in hardware
141 // controlled by HWC than in hardware controlled by the video encoder.
142 // Forcing GLES-composed frames to go through an extra copy by the HWC
143 // allows the format conversion to happen there, rather than passing RGB
144 // directly to the consumer.
145 //
146 // On the other hand, when the consumer prefers RGB or can consume RGB
147 // inexpensively, this forces an unnecessary copy.
148 mCompositionType = COMPOSITION_MIXED;
149 }
150
Jesse Hall38efe862013-04-06 23:12:29 -0700151 if (mCompositionType != mDbgLastCompositionType) {
152 VDS_LOGV("prepareFrame: composition type changed to %s",
153 dbgCompositionTypeStr(mCompositionType));
154 mDbgLastCompositionType = mCompositionType;
155 }
156
Jesse Hall1e27ba22013-09-27 09:05:09 -0700157 if (mCompositionType != COMPOSITION_GLES &&
Jesse Hall497ba0e2013-11-04 16:43:03 -0800158 (mOutputFormat != mDefaultOutputFormat ||
Jesse Hall1e27ba22013-09-27 09:05:09 -0700159 mOutputUsage != GRALLOC_USAGE_HW_COMPOSER)) {
160 // We must have just switched from GLES-only to MIXED or HWC
161 // composition. Stop using the format and usage requested by the GLES
162 // driver; they may be suboptimal when HWC is writing to the output
163 // buffer. For example, if the output is going to a video encoder, and
164 // HWC can write directly to YUV, some hardware can skip a
165 // memory-to-memory RGB-to-YUV conversion step.
166 //
167 // If we just switched *to* GLES-only mode, we'll change the
168 // format/usage and get a new buffer when the GLES driver calls
169 // dequeueBuffer().
Jesse Hall497ba0e2013-11-04 16:43:03 -0800170 mOutputFormat = mDefaultOutputFormat;
Jesse Hall1e27ba22013-09-27 09:05:09 -0700171 mOutputUsage = GRALLOC_USAGE_HW_COMPOSER;
172 refreshOutputBuffer();
173 }
174
Jesse Hall38efe862013-04-06 23:12:29 -0700175 return NO_ERROR;
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700176}
177
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000178#ifndef USE_HWC2
179status_t VirtualDisplaySurface::compositionComplete() {
180 return NO_ERROR;
181}
182#endif
183
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700184status_t VirtualDisplaySurface::advanceFrame() {
Jesse Hall38efe862013-04-06 23:12:29 -0700185 if (mDisplayId < 0)
186 return NO_ERROR;
187
188 if (mCompositionType == COMPOSITION_HWC) {
189 VDS_LOGW_IF(mDbgState != DBG_STATE_PREPARED,
190 "Unexpected advanceFrame() in %s state on HWC frame",
191 dbgStateStr());
192 } else {
193 VDS_LOGW_IF(mDbgState != DBG_STATE_GLES_DONE,
194 "Unexpected advanceFrame() in %s state on GLES/MIXED frame",
195 dbgStateStr());
196 }
197 mDbgState = DBG_STATE_HWC;
198
Jesse Hall14e8b012013-11-07 12:28:26 -0800199 if (mOutputProducerSlot < 0 ||
200 (mCompositionType != COMPOSITION_HWC && mFbProducerSlot < 0)) {
Jesse Hall38efe862013-04-06 23:12:29 -0700201 // Last chance bailout if something bad happened earlier. For example,
202 // in a GLES configuration, if the sink disappears then dequeueBuffer
203 // will fail, the GLES driver won't queue a buffer, but SurfaceFlinger
204 // will soldier on. So we end up here without a buffer. There should
205 // be lots of scary messages in the log just before this.
206 VDS_LOGE("advanceFrame: no buffer, bailing out");
207 return NO_MEMORY;
208 }
209
Jesse Hall14e8b012013-11-07 12:28:26 -0800210 sp<GraphicBuffer> fbBuffer = mFbProducerSlot >= 0 ?
211 mProducerBuffers[mFbProducerSlot] : sp<GraphicBuffer>(NULL);
Jesse Hall38efe862013-04-06 23:12:29 -0700212 sp<GraphicBuffer> outBuffer = mProducerBuffers[mOutputProducerSlot];
213 VDS_LOGV("advanceFrame: fb=%d(%p) out=%d(%p)",
214 mFbProducerSlot, fbBuffer.get(),
215 mOutputProducerSlot, outBuffer.get());
216
Jesse Hallb716e572013-10-01 17:25:20 -0700217 // At this point we know the output buffer acquire fence,
218 // so update HWC state with it.
219 mHwc.setOutputBuffer(mDisplayId, mOutputFence, outBuffer);
220
Jesse Hall14e8b012013-11-07 12:28:26 -0800221 status_t result = NO_ERROR;
222 if (fbBuffer != NULL) {
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000223#ifdef USE_HWC2
Chia-I Wu06d63de2017-01-04 14:58:51 +0800224 uint32_t hwcSlot = 0;
225 sp<GraphicBuffer> hwcBuffer;
226 mHwcBufferCache->getHwcBuffer(mFbProducerSlot, fbBuffer,
227 &hwcSlot, &hwcBuffer);
228
Dan Stoza9e56aa02015-11-02 13:00:03 -0800229 // TODO: Correctly propagate the dataspace from GL composition
Chia-I Wu06d63de2017-01-04 14:58:51 +0800230 result = mHwc.setClientTarget(mDisplayId, hwcSlot, mFbFence,
231 hwcBuffer, HAL_DATASPACE_UNKNOWN);
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000232#else
233 result = mHwc.fbPost(mDisplayId, mFbFence, fbBuffer);
234#endif
Jesse Hall14e8b012013-11-07 12:28:26 -0800235 }
236
237 return result;
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700238}
239
Jesse Hall851cfe82013-03-20 13:44:00 -0700240void VirtualDisplaySurface::onFrameCommitted() {
Jesse Hall38efe862013-04-06 23:12:29 -0700241 if (mDisplayId < 0)
242 return;
243
244 VDS_LOGW_IF(mDbgState != DBG_STATE_HWC,
245 "Unexpected onFrameCommitted() in %s state", dbgStateStr());
246 mDbgState = DBG_STATE_IDLE;
247
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000248#ifdef USE_HWC2
Fabien Sanglard11d0fc32016-12-01 15:43:01 -0800249 sp<Fence> retireFence = mHwc.getPresentFence(mDisplayId);
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000250#else
251 sp<Fence> fbFence = mHwc.getAndResetReleaseFence(mDisplayId);
252#endif
Jesse Hall38efe862013-04-06 23:12:29 -0700253 if (mCompositionType == COMPOSITION_MIXED && mFbProducerSlot >= 0) {
254 // release the scratch buffer back to the pool
255 Mutex::Autolock lock(mMutex);
256 int sslot = mapProducer2SourceSlot(SOURCE_SCRATCH, mFbProducerSlot);
257 VDS_LOGV("onFrameCommitted: release scratch sslot=%d", sslot);
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000258#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800259 addReleaseFenceLocked(sslot, mProducerBuffers[mFbProducerSlot],
260 retireFence);
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000261#else
262 addReleaseFenceLocked(sslot, mProducerBuffers[mFbProducerSlot], fbFence);
263#endif
Jesse Hall38efe862013-04-06 23:12:29 -0700264 releaseBufferLocked(sslot, mProducerBuffers[mFbProducerSlot],
265 EGL_NO_DISPLAY, EGL_NO_SYNC_KHR);
266 }
267
268 if (mOutputProducerSlot >= 0) {
269 int sslot = mapProducer2SourceSlot(SOURCE_SINK, mOutputProducerSlot);
270 QueueBufferOutput qbo;
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000271#ifndef USE_HWC2
272 sp<Fence> outFence = mHwc.getLastRetireFence(mDisplayId);
273#endif
Jesse Hall38efe862013-04-06 23:12:29 -0700274 VDS_LOGV("onFrameCommitted: queue sink sslot=%d", sslot);
Dan Stoza71433162014-02-04 16:22:36 -0800275 if (mMustRecompose) {
276 status_t result = mSource[SOURCE_SINK]->queueBuffer(sslot,
277 QueueBufferInput(
278 systemTime(), false /* isAutoTimestamp */,
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800279 HAL_DATASPACE_UNKNOWN,
Dan Stoza71433162014-02-04 16:22:36 -0800280 Rect(mSinkBufferWidth, mSinkBufferHeight),
281 NATIVE_WINDOW_SCALING_MODE_FREEZE, 0 /* transform */,
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000282#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800283 retireFence),
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000284#else
285 outFence),
286#endif
Dan Stoza71433162014-02-04 16:22:36 -0800287 &qbo);
288 if (result == NO_ERROR) {
Brian Anderson3d4039d2016-09-23 16:31:30 -0700289 updateQueueBufferOutput(std::move(qbo));
Dan Stoza71433162014-02-04 16:22:36 -0800290 }
291 } else {
292 // If the surface hadn't actually been updated, then we only went
293 // through the motions of updating the display to keep our state
294 // machine happy. We cancel the buffer to avoid triggering another
295 // re-composition and causing an infinite loop.
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000296#ifdef USE_HWC2
Dan Stoza9e56aa02015-11-02 13:00:03 -0800297 mSource[SOURCE_SINK]->cancelBuffer(sslot, retireFence);
Fabien Sanglard9d96de42016-10-11 00:15:18 +0000298#else
299 mSource[SOURCE_SINK]->cancelBuffer(sslot, outFence);
300#endif
Jesse Hall38efe862013-04-06 23:12:29 -0700301 }
302 }
303
304 resetPerFrameState();
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700305}
306
Dan Stoza01049c82014-11-11 10:32:31 -0800307void VirtualDisplaySurface::dumpAsString(String8& /* result */) const {
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700308}
309
Michael Lentine47e45402014-07-18 15:34:25 -0700310void VirtualDisplaySurface::resizeBuffers(const uint32_t w, const uint32_t h) {
Brian Andersonbaaad322016-07-22 15:55:13 -0700311 mQueueBufferOutput.width = w;
312 mQueueBufferOutput.height = h;
Michael Lentine47e45402014-07-18 15:34:25 -0700313 mSinkBufferWidth = w;
314 mSinkBufferHeight = h;
315}
316
Dan Stoza9e56aa02015-11-02 13:00:03 -0800317const sp<Fence>& VirtualDisplaySurface::getClientTargetAcquireFence() const {
318 return mFbFence;
319}
Dan Stoza9e56aa02015-11-02 13:00:03 -0800320
Jesse Hall38efe862013-04-06 23:12:29 -0700321status_t VirtualDisplaySurface::requestBuffer(int pslot,
322 sp<GraphicBuffer>* outBuf) {
Michael Lentine47e45402014-07-18 15:34:25 -0700323 if (mDisplayId < 0)
324 return mSource[SOURCE_SINK]->requestBuffer(pslot, outBuf);
325
Jesse Hall38efe862013-04-06 23:12:29 -0700326 VDS_LOGW_IF(mDbgState != DBG_STATE_GLES,
327 "Unexpected requestBuffer pslot=%d in %s state",
328 pslot, dbgStateStr());
329
330 *outBuf = mProducerBuffers[pslot];
331 return NO_ERROR;
332}
333
Pablo Ceballosfa455352015-08-12 17:47:47 -0700334status_t VirtualDisplaySurface::setMaxDequeuedBufferCount(
335 int maxDequeuedBuffers) {
336 return mSource[SOURCE_SINK]->setMaxDequeuedBufferCount(maxDequeuedBuffers);
337}
338
339status_t VirtualDisplaySurface::setAsyncMode(bool async) {
340 return mSource[SOURCE_SINK]->setAsyncMode(async);
341}
342
Jesse Hall38efe862013-04-06 23:12:29 -0700343status_t VirtualDisplaySurface::dequeueBuffer(Source source,
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800344 PixelFormat format, uint32_t usage, int* sslot, sp<Fence>* fence) {
Michael Lentine47e45402014-07-18 15:34:25 -0700345 LOG_FATAL_IF(mDisplayId < 0, "mDisplayId=%d but should not be < 0.", mDisplayId);
Jesse Hall8db92552013-08-29 16:03:50 -0700346
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700347 status_t result = mSource[source]->dequeueBuffer(sslot, fence,
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700348 mSinkBufferWidth, mSinkBufferHeight, format, usage, nullptr);
Jesse Hall38efe862013-04-06 23:12:29 -0700349 if (result < 0)
350 return result;
351 int pslot = mapSource2ProducerSlot(source, *sslot);
352 VDS_LOGV("dequeueBuffer(%s): sslot=%d pslot=%d result=%d",
353 dbgSourceStr(source), *sslot, pslot, result);
Dan Stozafebd4f42014-04-09 16:14:51 -0700354 uint64_t sourceBit = static_cast<uint64_t>(source) << pslot;
Jesse Hall38efe862013-04-06 23:12:29 -0700355
Dan Stozafebd4f42014-04-09 16:14:51 -0700356 if ((mProducerSlotSource & (1ULL << pslot)) != sourceBit) {
Jesse Hall38efe862013-04-06 23:12:29 -0700357 // This slot was previously dequeued from the other source; must
358 // re-request the buffer.
359 result |= BUFFER_NEEDS_REALLOCATION;
Dan Stozafebd4f42014-04-09 16:14:51 -0700360 mProducerSlotSource &= ~(1ULL << pslot);
Jesse Hall38efe862013-04-06 23:12:29 -0700361 mProducerSlotSource |= sourceBit;
362 }
363
364 if (result & RELEASE_ALL_BUFFERS) {
365 for (uint32_t i = 0; i < BufferQueue::NUM_BUFFER_SLOTS; i++) {
Dan Stozafebd4f42014-04-09 16:14:51 -0700366 if ((mProducerSlotSource & (1ULL << i)) == sourceBit)
Jesse Hall38efe862013-04-06 23:12:29 -0700367 mProducerBuffers[i].clear();
368 }
369 }
370 if (result & BUFFER_NEEDS_REALLOCATION) {
Jesse Hall0b63cd12014-04-29 16:14:14 -0700371 result = mSource[source]->requestBuffer(*sslot, &mProducerBuffers[pslot]);
372 if (result < 0) {
373 mProducerBuffers[pslot].clear();
374 mSource[source]->cancelBuffer(*sslot, *fence);
375 return result;
376 }
Jesse Hall497ba0e2013-11-04 16:43:03 -0800377 VDS_LOGV("dequeueBuffer(%s): buffers[%d]=%p fmt=%d usage=%#x",
378 dbgSourceStr(source), pslot, mProducerBuffers[pslot].get(),
379 mProducerBuffers[pslot]->getPixelFormat(),
380 mProducerBuffers[pslot]->getUsage());
Jesse Hall38efe862013-04-06 23:12:29 -0700381 }
382
383 return result;
384}
385
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700386status_t VirtualDisplaySurface::dequeueBuffer(int* pslot, sp<Fence>* fence,
Brian Anderson7c3ba8a2016-07-25 12:48:08 -0700387 uint32_t w, uint32_t h, PixelFormat format, uint32_t usage,
388 FrameEventHistoryDelta* outTimestamps) {
389 if (mDisplayId < 0) {
390 return mSource[SOURCE_SINK]->dequeueBuffer(
391 pslot, fence, w, h, format, usage, outTimestamps);
392 }
Michael Lentine47e45402014-07-18 15:34:25 -0700393
Jesse Hall38efe862013-04-06 23:12:29 -0700394 VDS_LOGW_IF(mDbgState != DBG_STATE_PREPARED,
395 "Unexpected dequeueBuffer() in %s state", dbgStateStr());
396 mDbgState = DBG_STATE_GLES;
397
398 VDS_LOGV("dequeueBuffer %dx%d fmt=%d usage=%#x", w, h, format, usage);
399
Jesse Hall028dc8f2013-08-20 16:35:32 -0700400 status_t result = NO_ERROR;
Jesse Hall38efe862013-04-06 23:12:29 -0700401 Source source = fbSourceForCompositionType(mCompositionType);
Jesse Hall028dc8f2013-08-20 16:35:32 -0700402
Jesse Hall38efe862013-04-06 23:12:29 -0700403 if (source == SOURCE_SINK) {
Mathias Agopian6da15f42013-09-25 20:40:07 -0700404
405 if (mOutputProducerSlot < 0) {
406 // Last chance bailout if something bad happened earlier. For example,
407 // in a GLES configuration, if the sink disappears then dequeueBuffer
408 // will fail, the GLES driver won't queue a buffer, but SurfaceFlinger
409 // will soldier on. So we end up here without a buffer. There should
410 // be lots of scary messages in the log just before this.
411 VDS_LOGE("dequeueBuffer: no buffer, bailing out");
412 return NO_MEMORY;
413 }
414
Jesse Hall028dc8f2013-08-20 16:35:32 -0700415 // We already dequeued the output buffer. If the GLES driver wants
416 // something incompatible, we have to cancel and get a new one. This
417 // will mean that HWC will see a different output buffer between
418 // prepare and set, but since we're in GLES-only mode already it
419 // shouldn't matter.
420
Jesse Hall1e27ba22013-09-27 09:05:09 -0700421 usage |= GRALLOC_USAGE_HW_COMPOSER;
Jesse Hall028dc8f2013-08-20 16:35:32 -0700422 const sp<GraphicBuffer>& buf = mProducerBuffers[mOutputProducerSlot];
Jesse Hall1e27ba22013-09-27 09:05:09 -0700423 if ((usage & ~buf->getUsage()) != 0 ||
Dan Stoza3be1c6b2014-11-18 10:24:03 -0800424 (format != 0 && format != buf->getPixelFormat()) ||
Jesse Hall028dc8f2013-08-20 16:35:32 -0700425 (w != 0 && w != mSinkBufferWidth) ||
426 (h != 0 && h != mSinkBufferHeight)) {
Jesse Hall1e27ba22013-09-27 09:05:09 -0700427 VDS_LOGV("dequeueBuffer: dequeueing new output buffer: "
428 "want %dx%d fmt=%d use=%#x, "
429 "have %dx%d fmt=%d use=%#x",
430 w, h, format, usage,
431 mSinkBufferWidth, mSinkBufferHeight,
432 buf->getPixelFormat(), buf->getUsage());
433 mOutputFormat = format;
434 mOutputUsage = usage;
Jesse Hall028dc8f2013-08-20 16:35:32 -0700435 result = refreshOutputBuffer();
436 if (result < 0)
437 return result;
438 }
Jesse Hall38efe862013-04-06 23:12:29 -0700439 }
440
Jesse Hall028dc8f2013-08-20 16:35:32 -0700441 if (source == SOURCE_SINK) {
442 *pslot = mOutputProducerSlot;
443 *fence = mOutputFence;
444 } else {
445 int sslot;
Jesse Hall1e27ba22013-09-27 09:05:09 -0700446 result = dequeueBuffer(source, format, usage, &sslot, fence);
Jesse Hall028dc8f2013-08-20 16:35:32 -0700447 if (result >= 0) {
448 *pslot = mapSource2ProducerSlot(source, sslot);
449 }
Jesse Hall38efe862013-04-06 23:12:29 -0700450 }
451 return result;
452}
453
Dan Stoza88a459a2014-03-12 09:34:36 -0700454status_t VirtualDisplaySurface::detachBuffer(int /* slot */) {
455 VDS_LOGE("detachBuffer is not available for VirtualDisplaySurface");
456 return INVALID_OPERATION;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800457}
458
Dan Stozad9822a32014-03-28 15:25:31 -0700459status_t VirtualDisplaySurface::detachNextBuffer(
460 sp<GraphicBuffer>* /* outBuffer */, sp<Fence>* /* outFence */) {
461 VDS_LOGE("detachNextBuffer is not available for VirtualDisplaySurface");
462 return INVALID_OPERATION;
463}
464
Dan Stoza88a459a2014-03-12 09:34:36 -0700465status_t VirtualDisplaySurface::attachBuffer(int* /* outSlot */,
466 const sp<GraphicBuffer>& /* buffer */) {
467 VDS_LOGE("attachBuffer is not available for VirtualDisplaySurface");
468 return INVALID_OPERATION;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800469}
470
Jesse Hall38efe862013-04-06 23:12:29 -0700471status_t VirtualDisplaySurface::queueBuffer(int pslot,
472 const QueueBufferInput& input, QueueBufferOutput* output) {
Michael Lentine47e45402014-07-18 15:34:25 -0700473 if (mDisplayId < 0)
474 return mSource[SOURCE_SINK]->queueBuffer(pslot, input, output);
475
Jesse Hall38efe862013-04-06 23:12:29 -0700476 VDS_LOGW_IF(mDbgState != DBG_STATE_GLES,
477 "Unexpected queueBuffer(pslot=%d) in %s state", pslot,
478 dbgStateStr());
479 mDbgState = DBG_STATE_GLES_DONE;
480
481 VDS_LOGV("queueBuffer pslot=%d", pslot);
482
483 status_t result;
484 if (mCompositionType == COMPOSITION_MIXED) {
485 // Queue the buffer back into the scratch pool
486 QueueBufferOutput scratchQBO;
487 int sslot = mapProducer2SourceSlot(SOURCE_SCRATCH, pslot);
Mathias Agopiandb89edc2013-08-02 01:40:18 -0700488 result = mSource[SOURCE_SCRATCH]->queueBuffer(sslot, input, &scratchQBO);
Jesse Hall38efe862013-04-06 23:12:29 -0700489 if (result != NO_ERROR)
490 return result;
491
492 // Now acquire the buffer from the scratch pool -- should be the same
493 // slot and fence as we just queued.
494 Mutex::Autolock lock(mMutex);
Dan Stoza11611f92015-03-12 15:12:44 -0700495 BufferItem item;
Jesse Hallbce76112013-07-16 13:46:20 -0700496 result = acquireBufferLocked(&item, 0);
Jesse Hall38efe862013-04-06 23:12:29 -0700497 if (result != NO_ERROR)
498 return result;
Pablo Ceballos47650f42015-08-04 16:38:17 -0700499 VDS_LOGW_IF(item.mSlot != sslot,
Jesse Hall38efe862013-04-06 23:12:29 -0700500 "queueBuffer: acquired sslot %d from SCRATCH after queueing sslot %d",
Pablo Ceballos47650f42015-08-04 16:38:17 -0700501 item.mSlot, sslot);
502 mFbProducerSlot = mapSource2ProducerSlot(SOURCE_SCRATCH, item.mSlot);
503 mFbFence = mSlots[item.mSlot].mFence;
Jesse Hall38efe862013-04-06 23:12:29 -0700504
505 } else {
506 LOG_FATAL_IF(mCompositionType != COMPOSITION_GLES,
507 "Unexpected queueBuffer in state %s for compositionType %s",
508 dbgStateStr(), dbgCompositionTypeStr(mCompositionType));
509
510 // Extract the GLES release fence for HWC to acquire
511 int64_t timestamp;
Andy McFadden3c256212013-08-16 14:55:39 -0700512 bool isAutoTimestamp;
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800513 android_dataspace dataSpace;
Jesse Hall38efe862013-04-06 23:12:29 -0700514 Rect crop;
515 int scalingMode;
516 uint32_t transform;
Eino-Ville Talvala82c6bcc2015-02-19 16:10:43 -0800517 input.deflate(&timestamp, &isAutoTimestamp, &dataSpace, &crop,
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700518 &scalingMode, &transform, &mFbFence);
Jesse Hall38efe862013-04-06 23:12:29 -0700519
520 mFbProducerSlot = pslot;
Jesse Hall028dc8f2013-08-20 16:35:32 -0700521 mOutputFence = mFbFence;
Jesse Hall38efe862013-04-06 23:12:29 -0700522 }
523
Brian Anderson3d4039d2016-09-23 16:31:30 -0700524 // This moves the frame timestamps and keeps a copy of all other fields.
525 *output = std::move(mQueueBufferOutput);
Jesse Hall38efe862013-04-06 23:12:29 -0700526 return NO_ERROR;
527}
528
Pablo Ceballos583b1b32015-09-03 18:23:52 -0700529status_t VirtualDisplaySurface::cancelBuffer(int pslot,
530 const sp<Fence>& fence) {
Michael Lentine47e45402014-07-18 15:34:25 -0700531 if (mDisplayId < 0)
Michael Lentinefd9d1832014-07-30 15:39:17 -0700532 return mSource[SOURCE_SINK]->cancelBuffer(mapProducer2SourceSlot(SOURCE_SINK, pslot), fence);
Michael Lentine47e45402014-07-18 15:34:25 -0700533
Jesse Hall38efe862013-04-06 23:12:29 -0700534 VDS_LOGW_IF(mDbgState != DBG_STATE_GLES,
535 "Unexpected cancelBuffer(pslot=%d) in %s state", pslot,
536 dbgStateStr());
537 VDS_LOGV("cancelBuffer pslot=%d", pslot);
538 Source source = fbSourceForCompositionType(mCompositionType);
539 return mSource[source]->cancelBuffer(
540 mapProducer2SourceSlot(source, pslot), fence);
541}
542
543int VirtualDisplaySurface::query(int what, int* value) {
Michael Lentine47e45402014-07-18 15:34:25 -0700544 switch (what) {
545 case NATIVE_WINDOW_WIDTH:
546 *value = mSinkBufferWidth;
547 break;
548 case NATIVE_WINDOW_HEIGHT:
549 *value = mSinkBufferHeight;
550 break;
551 default:
552 return mSource[SOURCE_SINK]->query(what, value);
553 }
554 return NO_ERROR;
Jesse Hall38efe862013-04-06 23:12:29 -0700555}
556
Dan Stozaf0eaf252014-03-21 13:05:51 -0700557status_t VirtualDisplaySurface::connect(const sp<IProducerListener>& listener,
Mathias Agopian365857d2013-09-11 19:35:45 -0700558 int api, bool producerControlledByApp,
Mathias Agopian595264f2013-07-16 22:56:09 -0700559 QueueBufferOutput* output) {
Jesse Hall38efe862013-04-06 23:12:29 -0700560 QueueBufferOutput qbo;
Dan Stozaf0eaf252014-03-21 13:05:51 -0700561 status_t result = mSource[SOURCE_SINK]->connect(listener, api,
562 producerControlledByApp, &qbo);
Jesse Hall38efe862013-04-06 23:12:29 -0700563 if (result == NO_ERROR) {
Brian Anderson3d4039d2016-09-23 16:31:30 -0700564 updateQueueBufferOutput(std::move(qbo));
565 // This moves the frame timestamps and keeps a copy of all other fields.
566 *output = std::move(mQueueBufferOutput);
Jesse Hall38efe862013-04-06 23:12:29 -0700567 }
568 return result;
569}
570
Robert Carr97b9c862016-09-08 13:54:35 -0700571status_t VirtualDisplaySurface::disconnect(int api, DisconnectMode mode) {
572 return mSource[SOURCE_SINK]->disconnect(api, mode);
Jesse Hall38efe862013-04-06 23:12:29 -0700573}
574
Jesse Hall399184a2014-03-03 15:42:54 -0800575status_t VirtualDisplaySurface::setSidebandStream(const sp<NativeHandle>& /*stream*/) {
576 return INVALID_OPERATION;
577}
578
Pablo Ceballos567dbbb2015-08-26 18:59:08 -0700579void VirtualDisplaySurface::allocateBuffers(uint32_t /* width */,
580 uint32_t /* height */, PixelFormat /* format */, uint32_t /* usage */) {
Dan Stoza29a3e902014-06-20 13:13:57 -0700581 // TODO: Should we actually allocate buffers for a virtual display?
582}
583
Dan Stoza9de72932015-04-16 17:28:43 -0700584status_t VirtualDisplaySurface::allowAllocation(bool /* allow */) {
585 return INVALID_OPERATION;
586}
587
Dan Stoza812ed062015-06-02 15:45:22 -0700588status_t VirtualDisplaySurface::setGenerationNumber(uint32_t /* generation */) {
589 ALOGE("setGenerationNumber not supported on VirtualDisplaySurface");
590 return INVALID_OPERATION;
591}
592
Dan Stozac6f30bd2015-06-08 09:32:50 -0700593String8 VirtualDisplaySurface::getConsumerName() const {
594 return String8("VirtualDisplaySurface");
595}
596
Pablo Ceballos3559fbf2016-03-17 15:50:23 -0700597status_t VirtualDisplaySurface::setSharedBufferMode(bool /*sharedBufferMode*/) {
598 ALOGE("setSharedBufferMode not supported on VirtualDisplaySurface");
Pablo Ceballosff95aab2016-01-13 17:09:58 -0800599 return INVALID_OPERATION;
600}
601
602status_t VirtualDisplaySurface::setAutoRefresh(bool /*autoRefresh*/) {
603 ALOGE("setAutoRefresh not supported on VirtualDisplaySurface");
604 return INVALID_OPERATION;
Pablo Ceballosccdfd602015-10-07 15:05:45 -0700605}
606
Dan Stoza127fc632015-06-30 13:43:32 -0700607status_t VirtualDisplaySurface::setDequeueTimeout(nsecs_t /* timeout */) {
608 ALOGE("setDequeueTimeout not supported on VirtualDisplaySurface");
609 return INVALID_OPERATION;
610}
611
Dan Stoza50101d02016-04-07 16:53:23 -0700612status_t VirtualDisplaySurface::getLastQueuedBuffer(
John Reck1a61da52016-04-28 13:18:15 -0700613 sp<GraphicBuffer>* /*outBuffer*/, sp<Fence>* /*outFence*/,
614 float[16] /* outTransformMatrix*/) {
Dan Stoza50101d02016-04-07 16:53:23 -0700615 ALOGE("getLastQueuedBuffer not supported on VirtualDisplaySurface");
616 return INVALID_OPERATION;
617}
618
Pablo Ceballos8e3e92b2016-06-27 17:56:53 -0700619status_t VirtualDisplaySurface::getUniqueId(uint64_t* /*outId*/) const {
620 ALOGE("getUniqueId not supported on VirtualDisplaySurface");
621 return INVALID_OPERATION;
622}
623
Jesse Hall38efe862013-04-06 23:12:29 -0700624void VirtualDisplaySurface::updateQueueBufferOutput(
Brian Anderson3d4039d2016-09-23 16:31:30 -0700625 QueueBufferOutput&& qbo) {
626 mQueueBufferOutput = std::move(qbo);
Brian Andersonbaaad322016-07-22 15:55:13 -0700627 mQueueBufferOutput.transformHint = 0;
Jesse Hall38efe862013-04-06 23:12:29 -0700628}
629
630void VirtualDisplaySurface::resetPerFrameState() {
631 mCompositionType = COMPOSITION_UNKNOWN;
mayank parsharb988f852014-01-10 10:27:45 +0530632 mFbFence = Fence::NO_FENCE;
Jesse Hall028dc8f2013-08-20 16:35:32 -0700633 mOutputFence = Fence::NO_FENCE;
Jesse Hall38efe862013-04-06 23:12:29 -0700634 mOutputProducerSlot = -1;
mayank parsharfdfde882014-01-23 15:08:31 +0530635 mFbProducerSlot = -1;
Jesse Hall38efe862013-04-06 23:12:29 -0700636}
637
Jesse Hall028dc8f2013-08-20 16:35:32 -0700638status_t VirtualDisplaySurface::refreshOutputBuffer() {
639 if (mOutputProducerSlot >= 0) {
640 mSource[SOURCE_SINK]->cancelBuffer(
641 mapProducer2SourceSlot(SOURCE_SINK, mOutputProducerSlot),
642 mOutputFence);
643 }
644
645 int sslot;
Jesse Hall1e27ba22013-09-27 09:05:09 -0700646 status_t result = dequeueBuffer(SOURCE_SINK, mOutputFormat, mOutputUsage,
647 &sslot, &mOutputFence);
Jesse Hall028dc8f2013-08-20 16:35:32 -0700648 if (result < 0)
649 return result;
650 mOutputProducerSlot = mapSource2ProducerSlot(SOURCE_SINK, sslot);
651
Jesse Hallb716e572013-10-01 17:25:20 -0700652 // On GLES-only frames, we don't have the right output buffer acquire fence
653 // until after GLES calls queueBuffer(). So here we just set the buffer
654 // (for use in HWC prepare) but not the fence; we'll call this again with
655 // the proper fence once we have it.
656 result = mHwc.setOutputBuffer(mDisplayId, Fence::NO_FENCE,
Jesse Hall028dc8f2013-08-20 16:35:32 -0700657 mProducerBuffers[mOutputProducerSlot]);
658
659 return result;
660}
661
Jesse Hall38efe862013-04-06 23:12:29 -0700662// This slot mapping function is its own inverse, so two copies are unnecessary.
663// Both are kept to make the intent clear where the function is called, and for
664// the (unlikely) chance that we switch to a different mapping function.
665int VirtualDisplaySurface::mapSource2ProducerSlot(Source source, int sslot) {
666 if (source == SOURCE_SCRATCH) {
667 return BufferQueue::NUM_BUFFER_SLOTS - sslot - 1;
668 } else {
669 return sslot;
670 }
671}
672int VirtualDisplaySurface::mapProducer2SourceSlot(Source source, int pslot) {
673 return mapSource2ProducerSlot(source, pslot);
674}
675
676VirtualDisplaySurface::Source
677VirtualDisplaySurface::fbSourceForCompositionType(CompositionType type) {
678 return type == COMPOSITION_MIXED ? SOURCE_SCRATCH : SOURCE_SINK;
679}
680
681const char* VirtualDisplaySurface::dbgStateStr() const {
682 switch (mDbgState) {
683 case DBG_STATE_IDLE: return "IDLE";
684 case DBG_STATE_PREPARED: return "PREPARED";
685 case DBG_STATE_GLES: return "GLES";
686 case DBG_STATE_GLES_DONE: return "GLES_DONE";
687 case DBG_STATE_HWC: return "HWC";
688 default: return "INVALID";
689 }
690}
691
692const char* VirtualDisplaySurface::dbgSourceStr(Source s) {
693 switch (s) {
694 case SOURCE_SINK: return "SINK";
695 case SOURCE_SCRATCH: return "SCRATCH";
696 default: return "INVALID";
697 }
698}
699
Jesse Hall99c7dbb2013-03-14 14:29:29 -0700700// ---------------------------------------------------------------------------
701} // namespace android
702// ---------------------------------------------------------------------------