BufferQueue.cpp revision 9abe1ebc9575dc5a19bf1dfce6e9b02e03374457
16b091c53000c843211c218ce40287a7edca9bc63Daniel Lam/*
26b091c53000c843211c218ce40287a7edca9bc63Daniel Lam * Copyright (C) 2012 The Android Open Source Project
36b091c53000c843211c218ce40287a7edca9bc63Daniel Lam *
46b091c53000c843211c218ce40287a7edca9bc63Daniel Lam * Licensed under the Apache License, Version 2.0 (the "License");
56b091c53000c843211c218ce40287a7edca9bc63Daniel Lam * you may not use this file except in compliance with the License.
66b091c53000c843211c218ce40287a7edca9bc63Daniel Lam * You may obtain a copy of the License at
76b091c53000c843211c218ce40287a7edca9bc63Daniel Lam *
86b091c53000c843211c218ce40287a7edca9bc63Daniel Lam *      http://www.apache.org/licenses/LICENSE-2.0
96b091c53000c843211c218ce40287a7edca9bc63Daniel Lam *
106b091c53000c843211c218ce40287a7edca9bc63Daniel Lam * Unless required by applicable law or agreed to in writing, software
116b091c53000c843211c218ce40287a7edca9bc63Daniel Lam * distributed under the License is distributed on an "AS IS" BASIS,
126b091c53000c843211c218ce40287a7edca9bc63Daniel Lam * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
136b091c53000c843211c218ce40287a7edca9bc63Daniel Lam * See the License for the specific language governing permissions and
146b091c53000c843211c218ce40287a7edca9bc63Daniel Lam * limitations under the License.
156b091c53000c843211c218ce40287a7edca9bc63Daniel Lam */
166b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
176b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#define LOG_TAG "BufferQueue"
181c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis#define ATRACE_TAG ATRACE_TAG_GRAPHICS
19fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis//#define LOG_NDEBUG 0
206b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
216b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#define GL_GLEXT_PROTOTYPES
226b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#define EGL_EGLEXT_PROTOTYPES
236b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
246b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#include <EGL/egl.h>
256b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#include <EGL/eglext.h>
266b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
276b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#include <gui/BufferQueue.h>
2890ac799241f077a7b7e6c1875fd933864c8dd2a7Mathias Agopian#include <gui/ISurfaceComposer.h>
296b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#include <private/gui/ComposerService.h>
306b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
316b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#include <utils/Log.h>
32eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam#include <gui/SurfaceTexture.h>
331c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis#include <utils/Trace.h>
346b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
356b091c53000c843211c218ce40287a7edca9bc63Daniel Lam// This compile option causes SurfaceTexture to return the buffer that is currently
366b091c53000c843211c218ce40287a7edca9bc63Daniel Lam// attached to the GL texture from dequeueBuffer when no other buffers are
376b091c53000c843211c218ce40287a7edca9bc63Daniel Lam// available.  It requires the drivers (Gralloc, GL, OMX IL, and Camera) to do
386b091c53000c843211c218ce40287a7edca9bc63Daniel Lam// implicit cross-process synchronization to prevent the buffer from being
396b091c53000c843211c218ce40287a7edca9bc63Daniel Lam// written to before the buffer has (a) been detached from the GL texture and
406b091c53000c843211c218ce40287a7edca9bc63Daniel Lam// (b) all GL reads from the buffer have completed.
41eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
42eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam// During refactoring, do not support dequeuing the current buffer
43eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam#undef ALLOW_DEQUEUE_CURRENT_BUFFER
44eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
456b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#ifdef ALLOW_DEQUEUE_CURRENT_BUFFER
466b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#define FLAG_ALLOW_DEQUEUE_CURRENT_BUFFER    true
476b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#warning "ALLOW_DEQUEUE_CURRENT_BUFFER enabled"
486b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#else
496b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#define FLAG_ALLOW_DEQUEUE_CURRENT_BUFFER    false
506b091c53000c843211c218ce40287a7edca9bc63Daniel Lam#endif
516b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
526b091c53000c843211c218ce40287a7edca9bc63Daniel Lam// Macros for including the BufferQueue name in log messages
53eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam#define ST_LOGV(x, ...) ALOGV("[%s] "x, mConsumerName.string(), ##__VA_ARGS__)
54eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam#define ST_LOGD(x, ...) ALOGD("[%s] "x, mConsumerName.string(), ##__VA_ARGS__)
55eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam#define ST_LOGI(x, ...) ALOGI("[%s] "x, mConsumerName.string(), ##__VA_ARGS__)
56eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam#define ST_LOGW(x, ...) ALOGW("[%s] "x, mConsumerName.string(), ##__VA_ARGS__)
57eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam#define ST_LOGE(x, ...) ALOGE("[%s] "x, mConsumerName.string(), ##__VA_ARGS__)
586b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
59546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian#define ATRACE_BUFFER_INDEX(index)                                            \
60546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian    char ___traceBuf[1024];                                                   \
61546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian    snprintf(___traceBuf, 1024, "%s: %d", mConsumerName.string(), (index));   \
62546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian    android::ScopedTrace ___bufTracer(ATRACE_TAG, ___traceBuf);
63546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian
646b091c53000c843211c218ce40287a7edca9bc63Daniel Lamnamespace android {
656b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
666b091c53000c843211c218ce40287a7edca9bc63Daniel Lam// Get an ID that's unique within this process.
676b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatic int32_t createProcessUniqueId() {
686b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    static volatile int32_t globalCounter = 0;
696b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return android_atomic_inc(&globalCounter);
706b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
716b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
726b091c53000c843211c218ce40287a7edca9bc63Daniel LamBufferQueue::BufferQueue( bool allowSynchronousMode ) :
736b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mDefaultWidth(1),
746b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mDefaultHeight(1),
756b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mPixelFormat(PIXEL_FORMAT_RGBA_8888),
766b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mBufferCount(MIN_ASYNC_BUFFER_SLOTS),
776b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mClientBufferCount(0),
786b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mServerBufferCount(MIN_ASYNC_BUFFER_SLOTS),
796b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mSynchronousMode(false),
806b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mAllowSynchronousMode(allowSynchronousMode),
816b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mConnectedApi(NO_CONNECTED_API),
826b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mAbandoned(false),
83eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mFrameCounter(0),
84b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    mBufferHasBeenQueued(false),
85b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    mDefaultBufferFormat(0),
86b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    mConsumerUsageBits(0),
87b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    mTransformHint(0)
886b091c53000c843211c218ce40287a7edca9bc63Daniel Lam{
896b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    // Choose a name using the PID and a process-unique ID.
90eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mConsumerName = String8::format("unnamed-%d-%d", getpid(), createProcessUniqueId());
916b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
926b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("BufferQueue");
936b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    sp<ISurfaceComposer> composer(ComposerService::getComposerService());
946b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mGraphicBufferAlloc = composer->createGraphicBufferAlloc();
956b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
966b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
976b091c53000c843211c218ce40287a7edca9bc63Daniel LamBufferQueue::~BufferQueue() {
986b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("~BufferQueue");
996b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
1006b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1016b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::setBufferCountServerLocked(int bufferCount) {
1026b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (bufferCount > NUM_BUFFER_SLOTS)
1036b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return BAD_VALUE;
1046b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1056b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    // special-case, nothing to do
1066b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (bufferCount == mBufferCount)
1076b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return OK;
1086b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1096b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (!mClientBufferCount &&
1106b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        bufferCount >= mBufferCount) {
1116b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // easy, we just have more buffers
1126b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mBufferCount = bufferCount;
1136b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mServerBufferCount = bufferCount;
11474ff8c23f44f1546d0c7004302f4c7ba726ff4c0Dave Burke        mDequeueCondition.broadcast();
1156b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    } else {
1166b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // we're here because we're either
1176b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // - reducing the number of available buffers
1186b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // - or there is a client-buffer-count in effect
1196b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1206b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // less than 2 buffers is never allowed
1216b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (bufferCount < 2)
1226b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            return BAD_VALUE;
1236b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1246b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // when there is non client-buffer-count in effect, the client is not
1256b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // allowed to dequeue more than one buffer at a time,
1266b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // so the next time they dequeue a buffer, we know that they don't
1276b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // own one. the actual resizing will happen during the next
1286b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // dequeueBuffer.
1296b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1306b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mServerBufferCount = bufferCount;
131b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam        mDequeueCondition.broadcast();
1326b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
1336b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return OK;
1346b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
1356b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
136eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lambool BufferQueue::isSynchronousMode() const {
137eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    Mutex::Autolock lock(mMutex);
138eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    return mSynchronousMode;
139eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam}
140eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
141eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lamvoid BufferQueue::setConsumerName(const String8& name) {
142eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    Mutex::Autolock lock(mMutex);
143eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mConsumerName = name;
144eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam}
145eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
146b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lamstatus_t BufferQueue::setDefaultBufferFormat(uint32_t defaultFormat) {
147b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    Mutex::Autolock lock(mMutex);
148b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    mDefaultBufferFormat = defaultFormat;
149b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    return OK;
150b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam}
151b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam
152b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lamstatus_t BufferQueue::setConsumerUsageBits(uint32_t usage) {
153b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    Mutex::Autolock lock(mMutex);
154b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    mConsumerUsageBits = usage;
155b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    return OK;
156b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam}
157b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam
158b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lamstatus_t BufferQueue::setTransformHint(uint32_t hint) {
159b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    Mutex::Autolock lock(mMutex);
160b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    mTransformHint = hint;
161b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    return OK;
162b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam}
163b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam
1646b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::setBufferCount(int bufferCount) {
1656b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("setBufferCount: count=%d", bufferCount);
1666b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1679abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    sp<ConsumerListener> listener;
1689abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    {
1699abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        Mutex::Autolock lock(mMutex);
1706b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1719abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        if (mAbandoned) {
1729abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            ST_LOGE("setBufferCount: SurfaceTexture has been abandoned!");
1739abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            return NO_INIT;
1749abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        }
1759abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        if (bufferCount > NUM_BUFFER_SLOTS) {
1769abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            ST_LOGE("setBufferCount: bufferCount larger than slots available");
1779abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            return BAD_VALUE;
1786b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
1796b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1809abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        // Error out if the user has dequeued buffers
1819abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        for (int i=0 ; i<mBufferCount ; i++) {
1829abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            if (mSlots[i].mBufferState == BufferSlot::DEQUEUED) {
1839abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam                ST_LOGE("setBufferCount: client owns some buffers");
1849abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam                return -EINVAL;
1859abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            }
1869abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        }
1876b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1889abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        const int minBufferSlots = mSynchronousMode ?
1899abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam                MIN_SYNC_BUFFER_SLOTS : MIN_ASYNC_BUFFER_SLOTS;
1909abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        if (bufferCount == 0) {
1919abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            mClientBufferCount = 0;
1929abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            bufferCount = (mServerBufferCount >= minBufferSlots) ?
1939abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam                    mServerBufferCount : minBufferSlots;
1949abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            return setBufferCountServerLocked(bufferCount);
1959abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        }
1969abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam
1979abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        if (bufferCount < minBufferSlots) {
1989abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            ST_LOGE("setBufferCount: requested buffer count (%d) is less than "
1999abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam                    "minimum (%d)", bufferCount, minBufferSlots);
2009abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam            return BAD_VALUE;
2019abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        }
2029abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam
2039abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        // here we're guaranteed that the client doesn't have dequeued buffers
2049abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        // and will release all of its buffer references.
2059abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        freeAllBuffersLocked();
2069abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        mBufferCount = bufferCount;
2079abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        mClientBufferCount = bufferCount;
2089abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        mBufferHasBeenQueued = false;
2099abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        mQueue.clear();
2109abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        mDequeueCondition.broadcast();
2119abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        listener = mConsumerListener;
2129abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    } // scope for lock
2139abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam
2149abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    if (listener != NULL) {
2159abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        listener->onBuffersReleased();
2166b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
2176b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
2186b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return OK;
2196b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
2206b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
221b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lamint BufferQueue::query(int what, int* outValue)
222b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam{
2231c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
224b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    Mutex::Autolock lock(mMutex);
225b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam
226b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    if (mAbandoned) {
227b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        ST_LOGE("query: SurfaceTexture has been abandoned!");
228b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        return NO_INIT;
229b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    }
230b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam
231b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    int value;
232b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    switch (what) {
233b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    case NATIVE_WINDOW_WIDTH:
234b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        value = mDefaultWidth;
235b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        break;
236b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    case NATIVE_WINDOW_HEIGHT:
237b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        value = mDefaultHeight;
238b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        break;
239b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    case NATIVE_WINDOW_FORMAT:
240b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        value = mPixelFormat;
241b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        break;
242b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    case NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS:
243b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        value = mSynchronousMode ?
244b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam                (MIN_UNDEQUEUED_BUFFERS-1) : MIN_UNDEQUEUED_BUFFERS;
245b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        break;
246b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    default:
247b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam        return BAD_VALUE;
248b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    }
249b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    outValue[0] = value;
250b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam    return NO_ERROR;
251b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam}
252b856052c00dfef70d0957482c72c2979ffc4733aDaniel Lam
2536b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::requestBuffer(int slot, sp<GraphicBuffer>* buf) {
2541c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
2556b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("requestBuffer: slot=%d", slot);
2566b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    Mutex::Autolock lock(mMutex);
2576b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (mAbandoned) {
2586b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        ST_LOGE("requestBuffer: SurfaceTexture has been abandoned!");
2596b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return NO_INIT;
2606b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
2616b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (slot < 0 || mBufferCount <= slot) {
2626b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        ST_LOGE("requestBuffer: slot index out of range [0, %d]: %d",
2636b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                mBufferCount, slot);
2646b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return BAD_VALUE;
2656b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
2666b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mSlots[slot].mRequestBufferCalled = true;
2676b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    *buf = mSlots[slot].mGraphicBuffer;
2686b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return NO_ERROR;
2696b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
2706b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
2716b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::dequeueBuffer(int *outBuf, uint32_t w, uint32_t h,
2726b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        uint32_t format, uint32_t usage) {
2731c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
2746b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("dequeueBuffer: w=%d h=%d fmt=%#x usage=%#x", w, h, format, usage);
2756b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
2766b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if ((w && !h) || (!w && h)) {
2776b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        ST_LOGE("dequeueBuffer: invalid size: w=%u, h=%u", w, h);
2786b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return BAD_VALUE;
2796b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
2806b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
2816b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    status_t returnFlags(OK);
2826b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    EGLDisplay dpy = EGL_NO_DISPLAY;
2836b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    EGLSyncKHR fence = EGL_NO_SYNC_KHR;
2846b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
2856b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    { // Scope for the lock
2866b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        Mutex::Autolock lock(mMutex);
2876b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
288b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam        if (format == 0) {
289b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam            format = mDefaultBufferFormat;
290b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam        }
291b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam        // turn on usage bits the consumer requested
292b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam        usage |= mConsumerUsageBits;
293b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam
2946b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        int found = -1;
2956b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        int foundSync = -1;
2966b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        int dequeuedCount = 0;
2976b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        bool tryAgain = true;
2986b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        while (tryAgain) {
2996b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            if (mAbandoned) {
3006b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                ST_LOGE("dequeueBuffer: SurfaceTexture has been abandoned!");
3016b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                return NO_INIT;
3026b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
3036b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
3046b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // We need to wait for the FIFO to drain if the number of buffer
3056b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // needs to change.
3066b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            //
3076b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // The condition "number of buffers needs to change" is true if
3086b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // - the client doesn't care about how many buffers there are
3096b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // - AND the actual number of buffer is different from what was
3106b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            //   set in the last setBufferCountServer()
3116b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            //                         - OR -
3126b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            //   setBufferCountServer() was set to a value incompatible with
3136b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            //   the synchronization mode (for instance because the sync mode
3146b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            //   changed since)
3156b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            //
3166b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // As long as this condition is true AND the FIFO is not empty, we
3176b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // wait on mDequeueCondition.
3186b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
3196b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            const int minBufferCountNeeded = mSynchronousMode ?
3206b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    MIN_SYNC_BUFFER_SLOTS : MIN_ASYNC_BUFFER_SLOTS;
3216b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
3226b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            const bool numberOfBuffersNeedsToChange = !mClientBufferCount &&
3236b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    ((mServerBufferCount != mBufferCount) ||
3246b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                            (mServerBufferCount < minBufferCountNeeded));
3256b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
3266b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            if (!mQueue.isEmpty() && numberOfBuffersNeedsToChange) {
3276b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // wait for the FIFO to drain
3286b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                mDequeueCondition.wait(mMutex);
3296b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // NOTE: we continue here because we need to reevaluate our
3306b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // whole state (eg: we could be abandoned or disconnected)
3316b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                continue;
3326b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
3336b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
3346b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            if (numberOfBuffersNeedsToChange) {
3356b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // here we're guaranteed that mQueue is empty
3366b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                freeAllBuffersLocked();
3376b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                mBufferCount = mServerBufferCount;
3386b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                if (mBufferCount < minBufferCountNeeded)
3396b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    mBufferCount = minBufferCountNeeded;
340eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                mBufferHasBeenQueued = false;
3416b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                returnFlags |= ISurfaceTexture::RELEASE_ALL_BUFFERS;
3426b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
3436b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
3446b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // look for a free buffer to give to the client
3456b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            found = INVALID_BUFFER_SLOT;
3466b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            foundSync = INVALID_BUFFER_SLOT;
3476b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            dequeuedCount = 0;
3486b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            for (int i = 0; i < mBufferCount; i++) {
3496b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                const int state = mSlots[i].mBufferState;
3506b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                if (state == BufferSlot::DEQUEUED) {
3516b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    dequeuedCount++;
3526b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                }
3536b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
354eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                // this logic used to be if (FLAG_ALLOW_DEQUEUE_CURRENT_BUFFER)
355eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                // but dequeuing the current buffer is disabled.
356eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                if (false) {
357eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                    // This functionality has been temporarily removed so
358eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                    // BufferQueue and SurfaceTexture can be refactored into
359eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                    // separate objects
3606b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                } else {
3616b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    if (state == BufferSlot::FREE) {
3626b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                        /* We return the oldest of the free buffers to avoid
3636b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                         * stalling the producer if possible.  This is because
3646b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                         * the consumer may still have pending reads of the
3656b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                         * buffers in flight.
3666b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                         */
3676b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                        bool isOlder = mSlots[i].mFrameNumber <
3686b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                                mSlots[found].mFrameNumber;
3696b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                        if (found < 0 || isOlder) {
3706b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                            foundSync = i;
3716b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                            found = i;
3726b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                        }
3736b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    }
3746b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                }
3756b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
3766b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
3776b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // clients are not allowed to dequeue more than one buffer
3786b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // if they didn't set a buffer count.
3796b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            if (!mClientBufferCount && dequeuedCount) {
3806b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                ST_LOGE("dequeueBuffer: can't dequeue multiple buffers without "
3816b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                        "setting the buffer count");
3826b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                return -EINVAL;
3836b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
3846b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
3856b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // See whether a buffer has been queued since the last
3866b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // setBufferCount so we know whether to perform the
3876b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // MIN_UNDEQUEUED_BUFFERS check below.
388eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            if (mBufferHasBeenQueued) {
3896b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // make sure the client is not trying to dequeue more buffers
3906b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // than allowed.
3916b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                const int avail = mBufferCount - (dequeuedCount+1);
3926b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                if (avail < (MIN_UNDEQUEUED_BUFFERS-int(mSynchronousMode))) {
3936b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    ST_LOGE("dequeueBuffer: MIN_UNDEQUEUED_BUFFERS=%d exceeded "
3946b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                            "(dequeued=%d)",
3956b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                            MIN_UNDEQUEUED_BUFFERS-int(mSynchronousMode),
3966b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                            dequeuedCount);
3976b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    return -EBUSY;
3986b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                }
3996b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
4006b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
401c2c1f2f24cd70bdcf1958157bab38467bf0fdc71Daniel Lam            // if no buffer is found, wait for a buffer to be released
402c2c1f2f24cd70bdcf1958157bab38467bf0fdc71Daniel Lam            tryAgain = found == INVALID_BUFFER_SLOT;
4036b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            if (tryAgain) {
4046b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                mDequeueCondition.wait(mMutex);
4056b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
4066b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
4076b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4086b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4096b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (found == INVALID_BUFFER_SLOT) {
4106b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // This should not happen.
4116b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ST_LOGE("dequeueBuffer: no available buffer slots");
4126b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            return -EBUSY;
4136b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
4146b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4156b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        const int buf = found;
4166b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        *outBuf = found;
4176b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
418546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian        ATRACE_BUFFER_INDEX(buf);
419546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian
4206b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        const bool useDefaultSize = !w && !h;
4216b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (useDefaultSize) {
4226b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // use the default size
4236b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            w = mDefaultWidth;
4246b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            h = mDefaultHeight;
4256b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
4266b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4276b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        const bool updateFormat = (format != 0);
4286b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (!updateFormat) {
4296b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // keep the current (or default) format
4306b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            format = mPixelFormat;
4316b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
4326b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4336b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // buffer is now in DEQUEUED (but can also be current at the same time,
4346b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // if we're in synchronous mode)
4356b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mSlots[buf].mBufferState = BufferSlot::DEQUEUED;
4366b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4376b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        const sp<GraphicBuffer>& buffer(mSlots[buf].mGraphicBuffer);
4386b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if ((buffer == NULL) ||
4396b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            (uint32_t(buffer->width)  != w) ||
4406b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            (uint32_t(buffer->height) != h) ||
4416b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            (uint32_t(buffer->format) != format) ||
4426b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ((uint32_t(buffer->usage) & usage) != usage))
4436b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        {
4446b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            usage |= GraphicBuffer::USAGE_HW_TEXTURE;
4456b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            status_t error;
4466b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            sp<GraphicBuffer> graphicBuffer(
4476b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    mGraphicBufferAlloc->createGraphicBuffer(
4486b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                            w, h, format, usage, &error));
4496b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            if (graphicBuffer == 0) {
4506b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                ST_LOGE("dequeueBuffer: SurfaceComposer::createGraphicBuffer "
4516b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                        "failed");
4526b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                return error;
4536b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
4546b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            if (updateFormat) {
4556b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                mPixelFormat = format;
4566b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
457eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
458eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            mSlots[buf].mAcquireCalled = false;
4596b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            mSlots[buf].mGraphicBuffer = graphicBuffer;
4606b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            mSlots[buf].mRequestBufferCalled = false;
4616b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            mSlots[buf].mFence = EGL_NO_SYNC_KHR;
462eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            mSlots[buf].mEglDisplay = EGL_NO_DISPLAY;
463eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
4646b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            returnFlags |= ISurfaceTexture::BUFFER_NEEDS_REALLOCATION;
4656b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
4666b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4676b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        dpy = mSlots[buf].mEglDisplay;
4686b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        fence = mSlots[buf].mFence;
4696b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mSlots[buf].mFence = EGL_NO_SYNC_KHR;
470eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    }  // end lock scope
4716b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4726b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (fence != EGL_NO_SYNC_KHR) {
4736b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        EGLint result = eglClientWaitSyncKHR(dpy, fence, 0, 1000000000);
4746b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // If something goes wrong, log the error, but return the buffer without
4756b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // synchronizing access to it.  It's too late at this point to abort the
4766b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // dequeue operation.
4776b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (result == EGL_FALSE) {
4786b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ALOGE("dequeueBuffer: error waiting for fence: %#x", eglGetError());
4796b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        } else if (result == EGL_TIMEOUT_EXPIRED_KHR) {
4806b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ALOGE("dequeueBuffer: timeout waiting for fence");
4816b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
4826b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        eglDestroySyncKHR(dpy, fence);
4836b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
4846b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4856b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("dequeueBuffer: returning slot=%d buf=%p flags=%#x", *outBuf,
4866b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            mSlots[*outBuf].mGraphicBuffer->handle, returnFlags);
4876b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4886b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return returnFlags;
4896b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
4906b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4916b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::setSynchronousMode(bool enabled) {
4921c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
4936b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("setSynchronousMode: enabled=%d", enabled);
4946b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    Mutex::Autolock lock(mMutex);
4956b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
4966b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (mAbandoned) {
4976b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        ST_LOGE("setSynchronousMode: SurfaceTexture has been abandoned!");
4986b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return NO_INIT;
4996b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
5006b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
5016b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    status_t err = OK;
5026b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (!mAllowSynchronousMode && enabled)
5036b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return err;
5046b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
5056b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (!enabled) {
5066b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // going to asynchronous mode, drain the queue
5076b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        err = drainQueueLocked();
5086b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (err != NO_ERROR)
5096b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            return err;
5106b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
5116b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
5126b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (mSynchronousMode != enabled) {
5136b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // - if we're going to asynchronous mode, the queue is guaranteed to be
5146b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // empty here
5156b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // - if the client set the number of buffers, we're guaranteed that
5166b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        // we have at least 3 (because we don't allow less)
5176b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mSynchronousMode = enabled;
51874ff8c23f44f1546d0c7004302f4c7ba726ff4c0Dave Burke        mDequeueCondition.broadcast();
5196b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
5206b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return err;
5216b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
5226b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
5236b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::queueBuffer(int buf, int64_t timestamp,
524851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian        const Rect& crop, int scalingMode, uint32_t transform,
5256b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        uint32_t* outWidth, uint32_t* outHeight, uint32_t* outTransform) {
5261c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
527546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian    ATRACE_BUFFER_INDEX(buf);
528546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian
5296b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("queueBuffer: slot=%d time=%lld", buf, timestamp);
5306b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
531fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    sp<ConsumerListener> listener;
5326b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
5336b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    { // scope for the lock
5346b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        Mutex::Autolock lock(mMutex);
5356b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (mAbandoned) {
5366b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ST_LOGE("queueBuffer: SurfaceTexture has been abandoned!");
5376b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            return NO_INIT;
5386b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
5396b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (buf < 0 || buf >= mBufferCount) {
5406b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ST_LOGE("queueBuffer: slot index out of range [0, %d]: %d",
5416b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    mBufferCount, buf);
5426b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            return -EINVAL;
5436b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        } else if (mSlots[buf].mBufferState != BufferSlot::DEQUEUED) {
5446b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ST_LOGE("queueBuffer: slot %d is not owned by the client "
5456b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    "(state=%d)", buf, mSlots[buf].mBufferState);
5466b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            return -EINVAL;
5476b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        } else if (!mSlots[buf].mRequestBufferCalled) {
5486b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ST_LOGE("queueBuffer: slot %d was enqueued without requesting a "
5496b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                    "buffer", buf);
5506b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            return -EINVAL;
5516b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
5526b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
5536b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (mSynchronousMode) {
5546b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // In synchronous mode we queue all buffers in a FIFO.
5556b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            mQueue.push_back(buf);
5566b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
5576b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // Synchronous mode always signals that an additional frame should
5586b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // be consumed.
559fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            listener = mConsumerListener;
5606b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        } else {
5616b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            // In asynchronous mode we only keep the most recent buffer.
5626b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            if (mQueue.empty()) {
5636b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                mQueue.push_back(buf);
5646b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
5656b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // Asynchronous mode only signals that a frame should be
5666b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // consumed if no previous frame was pending. If a frame were
5676b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // pending then the consumer would have already been notified.
568fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                listener = mConsumerListener;
5696b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            } else {
5706b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                Fifo::iterator front(mQueue.begin());
5716b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // buffer currently queued is freed
5726b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                mSlots[*front].mBufferState = BufferSlot::FREE;
5736b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                // and we record the new buffer index in the queued list
5746b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                *front = buf;
5756b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
5766b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
5776b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
578851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian        switch (scalingMode) {
579851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian            case NATIVE_WINDOW_SCALING_MODE_FREEZE:
580851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian            case NATIVE_WINDOW_SCALING_MODE_SCALE_TO_WINDOW:
581851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian                break;
582851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian            default:
583851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian                ST_LOGE("unknown scaling mode: %d (ignoring)", scalingMode);
584851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian                scalingMode = mSlots[buf].mScalingMode;
585851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian                break;
586851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian        }
587851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian
5886b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mSlots[buf].mBufferState = BufferSlot::QUEUED;
589851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian        mSlots[buf].mCrop = crop;
590851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian        mSlots[buf].mTransform = transform;
591851ef8f1bfbb164d61b1528a529a464f0a60dbafMathias Agopian        mSlots[buf].mScalingMode = scalingMode;
5926b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mSlots[buf].mTimestamp = timestamp;
5936b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mFrameCounter++;
5946b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mSlots[buf].mFrameNumber = mFrameCounter;
5956b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
596eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        mBufferHasBeenQueued = true;
59774ff8c23f44f1546d0c7004302f4c7ba726ff4c0Dave Burke        mDequeueCondition.broadcast();
5986b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
5996b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        *outWidth = mDefaultWidth;
6006b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        *outHeight = mDefaultHeight;
601b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam        *outTransform = mTransformHint;
6021c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis
6031c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis        ATRACE_INT(mConsumerName.string(), mQueue.size());
6046b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    } // scope for the lock
6056b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
6066b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    // call back without lock held
6076b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (listener != 0) {
6086b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        listener->onFrameAvailable();
6096b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
6106b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return OK;
6116b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
6126b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
6136b091c53000c843211c218ce40287a7edca9bc63Daniel Lamvoid BufferQueue::cancelBuffer(int buf) {
6141c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
6156b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("cancelBuffer: slot=%d", buf);
6166b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    Mutex::Autolock lock(mMutex);
6176b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
6186b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (mAbandoned) {
6196b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        ST_LOGW("cancelBuffer: BufferQueue has been abandoned!");
6206b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return;
6216b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
6226b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
6236b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (buf < 0 || buf >= mBufferCount) {
6246b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        ST_LOGE("cancelBuffer: slot index out of range [0, %d]: %d",
6256b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                mBufferCount, buf);
6266b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return;
6276b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    } else if (mSlots[buf].mBufferState != BufferSlot::DEQUEUED) {
6286b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        ST_LOGE("cancelBuffer: slot %d is not owned by the client (state=%d)",
6296b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                buf, mSlots[buf].mBufferState);
6306b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return;
6316b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
6326b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mSlots[buf].mBufferState = BufferSlot::FREE;
6336b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mSlots[buf].mFrameNumber = 0;
63474ff8c23f44f1546d0c7004302f4c7ba726ff4c0Dave Burke    mDequeueCondition.broadcast();
6356b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
6366b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
6376b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::connect(int api,
6386b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        uint32_t* outWidth, uint32_t* outHeight, uint32_t* outTransform) {
6391c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
6406b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("connect: api=%d", api);
6416b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    Mutex::Autolock lock(mMutex);
6426b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
6436b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (mAbandoned) {
6446b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        ST_LOGE("connect: BufferQueue has been abandoned!");
6456b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        return NO_INIT;
6466b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
6476b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
648fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    if (mConsumerListener == NULL) {
649fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        ST_LOGE("connect: BufferQueue has no consumer!");
650fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        return NO_INIT;
651fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    }
652fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
6536b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    int err = NO_ERROR;
6546b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    switch (api) {
6556b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        case NATIVE_WINDOW_API_EGL:
6566b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        case NATIVE_WINDOW_API_CPU:
6576b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        case NATIVE_WINDOW_API_MEDIA:
6586b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        case NATIVE_WINDOW_API_CAMERA:
6596b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            if (mConnectedApi != NO_CONNECTED_API) {
6606b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                ST_LOGE("connect: already connected (cur=%d, req=%d)",
6616b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                        mConnectedApi, api);
6626b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                err = -EINVAL;
6636b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            } else {
6646b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                mConnectedApi = api;
6656b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                *outWidth = mDefaultWidth;
6666b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                *outHeight = mDefaultHeight;
6676b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                *outTransform = 0;
6686b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            }
6696b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            break;
6706b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        default:
6716b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            err = -EINVAL;
6726b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            break;
6736b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
674eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
675eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mBufferHasBeenQueued = false;
676eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
6776b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return err;
6786b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
6796b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
6806b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::disconnect(int api) {
6811c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
6826b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ST_LOGV("disconnect: api=%d", api);
6836b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
6846b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    int err = NO_ERROR;
685fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    sp<ConsumerListener> listener;
686fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
687fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    { // Scope for the lock
688fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        Mutex::Autolock lock(mMutex);
689fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
690fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        if (mAbandoned) {
691fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            // it is not really an error to disconnect after the surface
692fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            // has been abandoned, it should just be a no-op.
693fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            return NO_ERROR;
694fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        }
695fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
696fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        switch (api) {
697fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            case NATIVE_WINDOW_API_EGL:
698fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            case NATIVE_WINDOW_API_CPU:
699fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            case NATIVE_WINDOW_API_MEDIA:
700fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            case NATIVE_WINDOW_API_CAMERA:
701fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                if (mConnectedApi == api) {
702fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                    drainQueueAndFreeBuffersLocked();
703fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                    mConnectedApi = NO_CONNECTED_API;
704fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                    mDequeueCondition.broadcast();
705fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                    listener = mConsumerListener;
706fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                } else {
707fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                    ST_LOGE("disconnect: connected to another api (cur=%d, req=%d)",
708fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                            mConnectedApi, api);
709fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                    err = -EINVAL;
710fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                }
711fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                break;
712fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            default:
713fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                ST_LOGE("disconnect: unknown API %d", api);
7146b091c53000c843211c218ce40287a7edca9bc63Daniel Lam                err = -EINVAL;
715fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis                break;
716fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        }
7176b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
718fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
719fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    if (listener != NULL) {
720fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        listener->onBuffersReleased();
721fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    }
722fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
7236b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return err;
7246b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
7256b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
726eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lamvoid BufferQueue::dump(String8& result) const
727eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam{
728eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    char buffer[1024];
729eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    BufferQueue::dump(result, "", buffer, 1024);
730eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam}
731eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
732eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lamvoid BufferQueue::dump(String8& result, const char* prefix,
733eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        char* buffer, size_t SIZE) const
734eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam{
735eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    Mutex::Autolock _l(mMutex);
736eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
737eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    String8 fifo;
738eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    int fifoSize = 0;
739eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    Fifo::const_iterator i(mQueue.begin());
740eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    while (i != mQueue.end()) {
741eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam       snprintf(buffer, SIZE, "%02d ", *i++);
742eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam       fifoSize++;
743eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam       fifo.append(buffer);
744eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    }
745eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
746eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    snprintf(buffer, SIZE,
747eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            "%s-BufferQueue mBufferCount=%d, mSynchronousMode=%d, default-size=[%dx%d], "
748eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            "mPixelFormat=%d, FIFO(%d)={%s}\n",
749eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            prefix, mBufferCount, mSynchronousMode, mDefaultWidth,
750eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            mDefaultHeight, mPixelFormat, fifoSize, fifo.string());
751eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    result.append(buffer);
752eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
753eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
754eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    struct {
755eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        const char * operator()(int state) const {
756eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            switch (state) {
757eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                case BufferSlot::DEQUEUED: return "DEQUEUED";
758eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                case BufferSlot::QUEUED: return "QUEUED";
759eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                case BufferSlot::FREE: return "FREE";
760eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                case BufferSlot::ACQUIRED: return "ACQUIRED";
761eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                default: return "Unknown";
762eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            }
763eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        }
764eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    } stateName;
765eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
766eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    for (int i=0 ; i<mBufferCount ; i++) {
767eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        const BufferSlot& slot(mSlots[i]);
768eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        snprintf(buffer, SIZE,
769eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                "%s%s[%02d] "
770eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                "state=%-8s, crop=[%d,%d,%d,%d], "
771eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                "transform=0x%02x, timestamp=%lld",
772eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                prefix, (slot.mBufferState == BufferSlot::ACQUIRED)?">":" ", i,
773eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                stateName(slot.mBufferState),
774eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                slot.mCrop.left, slot.mCrop.top, slot.mCrop.right,
775eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                slot.mCrop.bottom, slot.mTransform, slot.mTimestamp
776eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        );
777eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        result.append(buffer);
778eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
779eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        const sp<GraphicBuffer>& buf(slot.mGraphicBuffer);
780eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        if (buf != NULL) {
781eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            snprintf(buffer, SIZE,
782eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                    ", %p [%4ux%4u:%4u,%3X]",
783eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                    buf->handle, buf->width, buf->height, buf->stride,
784eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                    buf->format);
785eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            result.append(buffer);
786eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        }
787eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        result.append("\n");
788eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    }
789eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam}
790eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
7916b091c53000c843211c218ce40287a7edca9bc63Daniel Lamvoid BufferQueue::freeBufferLocked(int i) {
7926b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mSlots[i].mGraphicBuffer = 0;
7939abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    if (mSlots[i].mBufferState == BufferSlot::ACQUIRED) {
7949abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        mSlots[i].mNeedsCleanupOnRelease = true;
7959abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    }
7966b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mSlots[i].mBufferState = BufferSlot::FREE;
7976b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    mSlots[i].mFrameNumber = 0;
798eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mSlots[i].mAcquireCalled = false;
799eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
800eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    // destroy fence as BufferQueue now takes ownership
801eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    if (mSlots[i].mFence != EGL_NO_SYNC_KHR) {
802eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        eglDestroySyncKHR(mSlots[i].mEglDisplay, mSlots[i].mFence);
803eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        mSlots[i].mFence = EGL_NO_SYNC_KHR;
8046b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
8056b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
8066b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
8076b091c53000c843211c218ce40287a7edca9bc63Daniel Lamvoid BufferQueue::freeAllBuffersLocked() {
8086b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ALOGW_IF(!mQueue.isEmpty(),
8096b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            "freeAllBuffersLocked called but mQueue is not empty");
810eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mQueue.clear();
811eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mBufferHasBeenQueued = false;
8126b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    for (int i = 0; i < NUM_BUFFER_SLOTS; i++) {
8136b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        freeBufferLocked(i);
8146b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
8156b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
8166b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
817fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennisstatus_t BufferQueue::acquireBuffer(BufferItem *buffer) {
818546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian    ATRACE_CALL();
819eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    Mutex::Autolock _l(mMutex);
820eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    // check if queue is empty
821eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    // In asynchronous mode the list is guaranteed to be one buffer
822eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    // deep, while in synchronous mode we use the oldest buffer.
823eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    if (!mQueue.empty()) {
824eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        Fifo::iterator front(mQueue.begin());
825eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        int buf = *front;
826eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
827546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian        ATRACE_BUFFER_INDEX(buf);
828546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian
829eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        if (mSlots[buf].mAcquireCalled) {
830eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            buffer->mGraphicBuffer = NULL;
831fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        } else {
832eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam            buffer->mGraphicBuffer = mSlots[buf].mGraphicBuffer;
833eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        }
834eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        buffer->mCrop = mSlots[buf].mCrop;
835eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        buffer->mTransform = mSlots[buf].mTransform;
836eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        buffer->mScalingMode = mSlots[buf].mScalingMode;
837eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        buffer->mFrameNumber = mSlots[buf].mFrameNumber;
8383fcee50ffaeb745819356e395408b4d7e3239c13Daniel Lam        buffer->mTimestamp = mSlots[buf].mTimestamp;
839eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        buffer->mBuf = buf;
840eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        mSlots[buf].mAcquireCalled = true;
841eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
842eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        mSlots[buf].mBufferState = BufferSlot::ACQUIRED;
843eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        mQueue.erase(front);
84474ff8c23f44f1546d0c7004302f4c7ba726ff4c0Dave Burke        mDequeueCondition.broadcast();
8451c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis
8461c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis        ATRACE_INT(mConsumerName.string(), mQueue.size());
847fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    } else {
848b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam        // should be a better return code?
849b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam        return -EINVAL;
850eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    }
851eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
852eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    return OK;
853eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam}
854eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
855eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lamstatus_t BufferQueue::releaseBuffer(int buf, EGLDisplay display,
856eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        EGLSyncKHR fence) {
857546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian    ATRACE_CALL();
858546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian    ATRACE_BUFFER_INDEX(buf);
859546ed2d7d98ce4f1415647913a231a6b4fc6ca66Mathias Agopian
860eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    Mutex::Autolock _l(mMutex);
861eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
862eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    if (buf == INVALID_BUFFER_SLOT) {
863eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        return -EINVAL;
864eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    }
865eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
866eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mSlots[buf].mEglDisplay = display;
867eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mSlots[buf].mFence = fence;
868eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
8699abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    // The buffer can now only be released if its in the acquired state
8709abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    if (mSlots[buf].mBufferState == BufferSlot::ACQUIRED) {
871eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        mSlots[buf].mBufferState = BufferSlot::FREE;
8729abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    } else if (mSlots[buf].mNeedsCleanupOnRelease) {
8739abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        ST_LOGV("releasing a stale buf %d its state was %d", buf, mSlots[buf].mBufferState);
8749abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        mSlots[buf].mNeedsCleanupOnRelease = false;
8759abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        return STALE_BUFFER_SLOT;
8769abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    } else {
8779abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        ST_LOGE("attempted to release buf %d but its state was %d", buf, mSlots[buf].mBufferState);
8789abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam        return -EINVAL;
879eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    }
880eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
8819abe1ebc9575dc5a19bf1dfce6e9b02e03374457Daniel Lam    mDequeueCondition.broadcast();
882eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    return OK;
883eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam}
884eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
885fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennisstatus_t BufferQueue::consumerConnect(const sp<ConsumerListener>& consumerListener) {
886fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    ST_LOGV("consumerConnect");
887fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    Mutex::Autolock lock(mMutex);
888fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
889fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    if (mAbandoned) {
890fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        ST_LOGE("consumerConnect: BufferQueue has been abandoned!");
891fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        return NO_INIT;
892fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    }
893fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
894fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    mConsumerListener = consumerListener;
895fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
896fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    return OK;
897fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis}
898fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
899eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lamstatus_t BufferQueue::consumerDisconnect() {
900fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    ST_LOGV("consumerDisconnect");
901eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    Mutex::Autolock lock(mMutex);
902b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam
903fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    if (mConsumerListener == NULL) {
904fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        ST_LOGE("consumerDisconnect: No consumer is connected!");
905fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        return -EINVAL;
906fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    }
907b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam
908fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    mAbandoned = true;
909fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    mConsumerListener = NULL;
910b267579ba8dfe3f47d2a481c5a3c2254e3d565a1Daniel Lam    mQueue.clear();
911eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    freeAllBuffersLocked();
91274ff8c23f44f1546d0c7004302f4c7ba726ff4c0Dave Burke    mDequeueCondition.broadcast();
913eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    return OK;
914eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam}
915eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
916fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennisstatus_t BufferQueue::getReleasedBuffers(uint32_t* slotMask) {
917fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    ST_LOGV("getReleasedBuffers");
918fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    Mutex::Autolock lock(mMutex);
919fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
920fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    if (mAbandoned) {
921fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        ST_LOGE("getReleasedBuffers: BufferQueue has been abandoned!");
922fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        return NO_INIT;
923fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    }
924fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
925fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    uint32_t mask = 0;
926fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    for (int i = 0; i < NUM_BUFFER_SLOTS; i++) {
927fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        if (!mSlots[i].mAcquireCalled) {
928fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis            mask |= 1 << i;
929fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        }
930fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    }
931fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    *slotMask = mask;
932fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
933fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    ST_LOGV("getReleasedBuffers: returning mask %#x", mask);
934fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    return NO_ERROR;
935fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis}
936fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
937eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lamstatus_t BufferQueue::setDefaultBufferSize(uint32_t w, uint32_t h)
938eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam{
939eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    ST_LOGV("setDefaultBufferSize: w=%d, h=%d", w, h);
940eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    if (!w || !h) {
941eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        ST_LOGE("setDefaultBufferSize: dimensions cannot be 0 (w=%d, h=%d)",
942eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam                w, h);
943eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam        return BAD_VALUE;
944eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    }
945eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
946eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    Mutex::Autolock lock(mMutex);
947eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mDefaultWidth = w;
948eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mDefaultHeight = h;
949eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    return OK;
950eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam}
951eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
952eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lamstatus_t BufferQueue::setBufferCountServer(int bufferCount) {
9531c8e95cf86f2182986385bc1ee85f13f425f3a3aJamie Gennis    ATRACE_CALL();
954eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    Mutex::Autolock lock(mMutex);
955eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    return setBufferCountServerLocked(bufferCount);
956eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam}
957eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam
9586b091c53000c843211c218ce40287a7edca9bc63Daniel Lamvoid BufferQueue::freeAllBuffersExceptHeadLocked() {
9596b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    ALOGW_IF(!mQueue.isEmpty(),
9606b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            "freeAllBuffersExceptCurrentLocked called but mQueue is not empty");
9616b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    int head = -1;
9626b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (!mQueue.empty()) {
9636b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        Fifo::iterator front(mQueue.begin());
9646b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        head = *front;
9656b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
966eae59d2ea77ef57aab203fb185a880ce37ac38d6Daniel Lam    mBufferHasBeenQueued = false;
9676b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    for (int i = 0; i < NUM_BUFFER_SLOTS; i++) {
9686b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (i != head) {
9696b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            freeBufferLocked(i);
9706b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
9716b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
9726b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
9736b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
9746b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::drainQueueLocked() {
9756b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    while (mSynchronousMode && !mQueue.isEmpty()) {
9766b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        mDequeueCondition.wait(mMutex);
9776b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (mAbandoned) {
9786b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ST_LOGE("drainQueueLocked: BufferQueue has been abandoned!");
9796b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            return NO_INIT;
9806b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
9816b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (mConnectedApi == NO_CONNECTED_API) {
9826b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            ST_LOGE("drainQueueLocked: BufferQueue is not connected!");
9836b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            return NO_INIT;
9846b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
9856b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
9866b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return NO_ERROR;
9876b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
9886b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
9896b091c53000c843211c218ce40287a7edca9bc63Daniel Lamstatus_t BufferQueue::drainQueueAndFreeBuffersLocked() {
9906b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    status_t err = drainQueueLocked();
9916b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    if (err == NO_ERROR) {
9926b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        if (mSynchronousMode) {
9936b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            freeAllBuffersLocked();
9946b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        } else {
9956b091c53000c843211c218ce40287a7edca9bc63Daniel Lam            freeAllBuffersExceptHeadLocked();
9966b091c53000c843211c218ce40287a7edca9bc63Daniel Lam        }
9976b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    }
9986b091c53000c843211c218ce40287a7edca9bc63Daniel Lam    return err;
9996b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}
10006b091c53000c843211c218ce40287a7edca9bc63Daniel Lam
1001fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie GennisBufferQueue::ProxyConsumerListener::ProxyConsumerListener(
1002fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        const wp<BufferQueue::ConsumerListener>& consumerListener):
1003fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        mConsumerListener(consumerListener) {}
1004fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
1005fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie GennisBufferQueue::ProxyConsumerListener::~ProxyConsumerListener() {}
1006fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
1007fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennisvoid BufferQueue::ProxyConsumerListener::onFrameAvailable() {
1008fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    sp<BufferQueue::ConsumerListener> listener(mConsumerListener.promote());
1009fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    if (listener != NULL) {
1010fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        listener->onFrameAvailable();
1011fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    }
1012fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis}
1013fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
1014fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennisvoid BufferQueue::ProxyConsumerListener::onBuffersReleased() {
1015fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    sp<BufferQueue::ConsumerListener> listener(mConsumerListener.promote());
1016fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    if (listener != NULL) {
1017fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis        listener->onBuffersReleased();
1018fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis    }
1019fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis}
1020fa5b40ebb8923133df12dc70591bfe35b3f1c9b3Jamie Gennis
10216b091c53000c843211c218ce40287a7edca9bc63Daniel Lam}; // namespace android
1022