Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ANDROID_GUI_BUFFERQUEUE_H |
| 18 | #define ANDROID_GUI_BUFFERQUEUE_H |
| 19 | |
| 20 | #include <EGL/egl.h> |
Daniel Lam | f71c4ae | 2012-03-23 18:12:04 -0700 | [diff] [blame] | 21 | #include <EGL/eglext.h> |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 22 | |
Mathias Agopian | 90ac799 | 2012-02-25 18:48:35 -0800 | [diff] [blame] | 23 | #include <gui/IGraphicBufferAlloc.h> |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 24 | #include <gui/IGraphicBufferProducer.h> |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 25 | |
Jesse Hall | ef19414 | 2012-06-14 14:45:17 -0700 | [diff] [blame] | 26 | #include <ui/Fence.h> |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 27 | #include <ui/GraphicBuffer.h> |
| 28 | |
| 29 | #include <utils/String8.h> |
| 30 | #include <utils/Vector.h> |
| 31 | #include <utils/threads.h> |
| 32 | |
| 33 | namespace android { |
| 34 | // ---------------------------------------------------------------------------- |
| 35 | |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 36 | class BufferQueue : public BnGraphicBufferProducer { |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 37 | public: |
| 38 | enum { MIN_UNDEQUEUED_BUFFERS = 2 }; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 39 | enum { NUM_BUFFER_SLOTS = 32 }; |
| 40 | enum { NO_CONNECTED_API = 0 }; |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 41 | enum { INVALID_BUFFER_SLOT = -1 }; |
Daniel Lam | fbcda93 | 2012-04-09 22:51:52 -0700 | [diff] [blame] | 42 | enum { STALE_BUFFER_SLOT = 1, NO_BUFFER_AVAILABLE }; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 43 | |
Jamie Gennis | c68f2ec | 2012-08-30 18:36:22 -0700 | [diff] [blame] | 44 | // When in async mode we reserve two slots in order to guarantee that the |
| 45 | // producer and consumer can run asynchronously. |
| 46 | enum { MAX_MAX_ACQUIRED_BUFFERS = NUM_BUFFER_SLOTS - 2 }; |
| 47 | |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 48 | // ConsumerListener is the interface through which the BufferQueue notifies |
| 49 | // the consumer of events that the consumer may wish to react to. Because |
| 50 | // the consumer will generally have a mutex that is locked during calls from |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 51 | // the consumer to the BufferQueue, these calls from the BufferQueue to the |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 52 | // consumer *MUST* be called only when the BufferQueue mutex is NOT locked. |
| 53 | struct ConsumerListener : public virtual RefBase { |
| 54 | // onFrameAvailable is called from queueBuffer each time an additional |
| 55 | // frame becomes available for consumption. This means that frames that |
| 56 | // are queued while in asynchronous mode only trigger the callback if no |
| 57 | // previous frames are pending. Frames queued while in synchronous mode |
| 58 | // always trigger the callback. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 59 | // |
| 60 | // This is called without any lock held and can be called concurrently |
| 61 | // by multiple threads. |
| 62 | virtual void onFrameAvailable() = 0; |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 63 | |
| 64 | // onBuffersReleased is called to notify the buffer consumer that the |
| 65 | // BufferQueue has released its references to one or more GraphicBuffers |
| 66 | // contained in its slots. The buffer consumer should then call |
| 67 | // BufferQueue::getReleasedBuffers to retrieve the list of buffers |
| 68 | // |
| 69 | // This is called without any lock held and can be called concurrently |
| 70 | // by multiple threads. |
| 71 | virtual void onBuffersReleased() = 0; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 72 | }; |
| 73 | |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 74 | // ProxyConsumerListener is a ConsumerListener implementation that keeps a weak |
| 75 | // reference to the actual consumer object. It forwards all calls to that |
| 76 | // consumer object so long as it exists. |
| 77 | // |
| 78 | // This class exists to avoid having a circular reference between the |
| 79 | // BufferQueue object and the consumer object. The reason this can't be a weak |
| 80 | // reference in the BufferQueue class is because we're planning to expose the |
| 81 | // consumer side of a BufferQueue as a binder interface, which doesn't support |
| 82 | // weak references. |
| 83 | class ProxyConsumerListener : public BufferQueue::ConsumerListener { |
| 84 | public: |
| 85 | |
| 86 | ProxyConsumerListener(const wp<BufferQueue::ConsumerListener>& consumerListener); |
| 87 | virtual ~ProxyConsumerListener(); |
| 88 | virtual void onFrameAvailable(); |
| 89 | virtual void onBuffersReleased(); |
| 90 | |
| 91 | private: |
| 92 | |
| 93 | // mConsumerListener is a weak reference to the ConsumerListener. This is |
| 94 | // the raison d'etre of ProxyConsumerListener. |
| 95 | wp<BufferQueue::ConsumerListener> mConsumerListener; |
| 96 | }; |
| 97 | |
| 98 | |
Jamie Gennis | 72f096f | 2012-08-27 18:48:37 -0700 | [diff] [blame] | 99 | // BufferQueue manages a pool of gralloc memory slots to be used by |
| 100 | // producers and consumers. allowSynchronousMode specifies whether or not |
| 101 | // synchronous mode can be enabled by the producer. allocator is used to |
| 102 | // allocate all the needed gralloc buffers. |
Mathias Agopian | 3e87601 | 2012-06-07 17:52:54 -0700 | [diff] [blame] | 103 | BufferQueue(bool allowSynchronousMode = true, |
Mathias Agopian | 3e87601 | 2012-06-07 17:52:54 -0700 | [diff] [blame] | 104 | const sp<IGraphicBufferAlloc>& allocator = NULL); |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 105 | virtual ~BufferQueue(); |
| 106 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 107 | // Query native window attributes. The "what" values are enumerated in |
| 108 | // window.h (e.g. NATIVE_WINDOW_FORMAT). |
Daniel Lam | b856052 | 2012-01-30 15:51:27 -0800 | [diff] [blame] | 109 | virtual int query(int what, int* value); |
| 110 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 111 | // setBufferCount updates the number of available buffer slots. If this |
| 112 | // method succeeds, buffer slots will be both unallocated and owned by |
| 113 | // the BufferQueue object (i.e. they are not owned by the producer or |
| 114 | // consumer). |
| 115 | // |
| 116 | // This will fail if the producer has dequeued any buffers, or if |
| 117 | // bufferCount is invalid. bufferCount must generally be a value |
| 118 | // between the minimum undequeued buffer count and NUM_BUFFER_SLOTS |
| 119 | // (inclusive). It may also be set to zero (the default) to indicate |
| 120 | // that the producer does not wish to set a value. The minimum value |
| 121 | // can be obtained by calling query(NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS, |
| 122 | // ...). |
| 123 | // |
| 124 | // This may only be called by the producer. The consumer will be told |
| 125 | // to discard buffers through the onBuffersReleased callback. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 126 | virtual status_t setBufferCount(int bufferCount); |
| 127 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 128 | // requestBuffer returns the GraphicBuffer for slot N. |
| 129 | // |
| 130 | // In normal operation, this is called the first time slot N is returned |
| 131 | // by dequeueBuffer. It must be called again if dequeueBuffer returns |
| 132 | // flags indicating that previously-returned buffers are no longer valid. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 133 | virtual status_t requestBuffer(int slot, sp<GraphicBuffer>* buf); |
| 134 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 135 | // dequeueBuffer gets the next buffer slot index for the producer to use. |
| 136 | // If a buffer slot is available then that slot index is written to the |
| 137 | // location pointed to by the buf argument and a status of OK is returned. |
| 138 | // If no slot is available then a status of -EBUSY is returned and buf is |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 139 | // unmodified. |
Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 140 | // |
| 141 | // The fence parameter will be updated to hold the fence associated with |
| 142 | // the buffer. The contents of the buffer must not be overwritten until the |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 143 | // fence signals. If the fence is Fence::NO_FENCE, the buffer may be |
| 144 | // written immediately. |
Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 145 | // |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 146 | // The width and height parameters must be no greater than the minimum of |
| 147 | // GL_MAX_VIEWPORT_DIMS and GL_MAX_TEXTURE_SIZE (see: glGetIntegerv). |
| 148 | // An error due to invalid dimensions might not be reported until |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 149 | // updateTexImage() is called. If width and height are both zero, the |
| 150 | // default values specified by setDefaultBufferSize() are used instead. |
| 151 | // |
| 152 | // The pixel formats are enumerated in graphics.h, e.g. |
| 153 | // HAL_PIXEL_FORMAT_RGBA_8888. If the format is 0, the default format |
| 154 | // will be used. |
| 155 | // |
| 156 | // The usage argument specifies gralloc buffer usage flags. The values |
| 157 | // are enumerated in gralloc.h, e.g. GRALLOC_USAGE_HW_RENDER. These |
| 158 | // will be merged with the usage flags specified by setConsumerUsageBits. |
| 159 | // |
| 160 | // The return value may be a negative error value or a non-negative |
| 161 | // collection of flags. If the flags are set, the return values are |
| 162 | // valid, but additional actions must be performed. |
| 163 | // |
| 164 | // If IGraphicBufferProducer::BUFFER_NEEDS_REALLOCATION is set, the |
| 165 | // producer must discard cached GraphicBuffer references for the slot |
| 166 | // returned in buf. |
| 167 | // If IGraphicBufferProducer::RELEASE_ALL_BUFFERS is set, the producer |
| 168 | // must discard cached GraphicBuffer references for all slots. |
| 169 | // |
| 170 | // In both cases, the producer will need to call requestBuffer to get a |
| 171 | // GraphicBuffer handle for the returned slot. |
Jesse Hall | 4c00cc1 | 2013-03-15 21:34:30 -0700 | [diff] [blame] | 172 | virtual status_t dequeueBuffer(int *buf, sp<Fence>* fence, |
Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 173 | uint32_t width, uint32_t height, uint32_t format, uint32_t usage); |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 174 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 175 | // queueBuffer returns a filled buffer to the BufferQueue. |
| 176 | // |
| 177 | // Additional data is provided in the QueueBufferInput struct. Notably, |
| 178 | // a timestamp must be provided for the buffer. The timestamp is in |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 179 | // nanoseconds, and must be monotonically increasing. Its other semantics |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 180 | // (zero point, etc) are producer-specific and should be documented by the |
| 181 | // producer. |
| 182 | // |
| 183 | // The caller may provide a fence that signals when all rendering |
| 184 | // operations have completed. Alternatively, NO_FENCE may be used, |
| 185 | // indicating that the buffer is ready immediately. |
| 186 | // |
| 187 | // Some values are returned in the output struct: the current settings |
| 188 | // for default width and height, the current transform hint, and the |
| 189 | // number of queued buffers. |
Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 190 | virtual status_t queueBuffer(int buf, |
| 191 | const QueueBufferInput& input, QueueBufferOutput* output); |
| 192 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 193 | // cancelBuffer returns a dequeued buffer to the BufferQueue, but doesn't |
| 194 | // queue it for use by the consumer. |
| 195 | // |
| 196 | // The buffer will not be overwritten until the fence signals. The fence |
| 197 | // will usually be the one obtained from dequeueBuffer. |
Jesse Hall | 4c00cc1 | 2013-03-15 21:34:30 -0700 | [diff] [blame] | 198 | virtual void cancelBuffer(int buf, const sp<Fence>& fence); |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 199 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 200 | // setSynchronousMode sets whether dequeueBuffer is synchronous or |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 201 | // asynchronous. In synchronous mode, dequeueBuffer blocks until |
| 202 | // a buffer is available, the currently bound buffer can be dequeued and |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 203 | // queued buffers will be acquired in order. In asynchronous mode, |
| 204 | // a queued buffer may be replaced by a subsequently queued buffer. |
| 205 | // |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 206 | // The default mode is asynchronous. |
| 207 | virtual status_t setSynchronousMode(bool enabled); |
| 208 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 209 | // connect attempts to connect a producer API to the BufferQueue. This |
| 210 | // must be called before any other IGraphicBufferProducer methods are |
| 211 | // called except for getAllocator. A consumer must already be connected. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 212 | // |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 213 | // This method will fail if connect was previously called on the |
| 214 | // BufferQueue and no corresponding disconnect call was made (i.e. if |
| 215 | // it's still connected to a producer). |
| 216 | // |
| 217 | // APIs are enumerated in window.h (e.g. NATIVE_WINDOW_API_CPU). |
Mathias Agopian | 24202f5 | 2012-04-23 14:28:58 -0700 | [diff] [blame] | 218 | virtual status_t connect(int api, QueueBufferOutput* output); |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 219 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 220 | // disconnect attempts to disconnect a producer API from the BufferQueue. |
| 221 | // Calling this method will cause any subsequent calls to other |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 222 | // IGraphicBufferProducer methods to fail except for getAllocator and connect. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 223 | // Successfully calling connect after this will allow the other methods to |
| 224 | // succeed again. |
| 225 | // |
| 226 | // This method will fail if the the BufferQueue is not currently |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 227 | // connected to the specified producer API. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 228 | virtual status_t disconnect(int api); |
| 229 | |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 230 | // dump our state in a String |
| 231 | virtual void dump(String8& result) const; |
Mathias Agopian | 74d211a | 2013-04-22 16:55:35 +0200 | [diff] [blame] | 232 | virtual void dump(String8& result, const char* prefix) const; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 233 | |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 234 | // public facing structure for BufferSlot |
| 235 | struct BufferItem { |
| 236 | |
| 237 | BufferItem() |
| 238 | : |
| 239 | mTransform(0), |
| 240 | mScalingMode(NATIVE_WINDOW_SCALING_MODE_FREEZE), |
| 241 | mTimestamp(0), |
| 242 | mFrameNumber(0), |
Lajos Molnar | c5d7b7d | 2013-05-03 14:50:50 -0700 | [diff] [blame] | 243 | mBuf(INVALID_BUFFER_SLOT), |
| 244 | mAcquireCalled(false) { |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 245 | mCrop.makeInvalid(); |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 246 | } |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 247 | // mGraphicBuffer points to the buffer allocated for this slot, or is NULL |
| 248 | // if the buffer in this slot has been acquired in the past (see |
| 249 | // BufferSlot.mAcquireCalled). |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 250 | sp<GraphicBuffer> mGraphicBuffer; |
| 251 | |
Mathias Agopian | 851ef8f | 2012-03-29 17:10:08 -0700 | [diff] [blame] | 252 | // mCrop is the current crop rectangle for this buffer slot. |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 253 | Rect mCrop; |
| 254 | |
Mathias Agopian | 851ef8f | 2012-03-29 17:10:08 -0700 | [diff] [blame] | 255 | // mTransform is the current transform flags for this buffer slot. |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 256 | uint32_t mTransform; |
| 257 | |
Mathias Agopian | 851ef8f | 2012-03-29 17:10:08 -0700 | [diff] [blame] | 258 | // mScalingMode is the current scaling mode for this buffer slot. |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 259 | uint32_t mScalingMode; |
| 260 | |
| 261 | // mTimestamp is the current timestamp for this buffer slot. This gets |
| 262 | // to set by queueBuffer each time this slot is queued. |
| 263 | int64_t mTimestamp; |
| 264 | |
| 265 | // mFrameNumber is the number of the queued frame for this slot. |
| 266 | uint64_t mFrameNumber; |
| 267 | |
Jamie Gennis | efc7ab6 | 2012-04-17 19:36:18 -0700 | [diff] [blame] | 268 | // mBuf is the slot index of this buffer |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 269 | int mBuf; |
Jesse Hall | b42b1ac | 2012-06-28 14:27:53 -0700 | [diff] [blame] | 270 | |
| 271 | // mFence is a fence that will signal when the buffer is idle. |
| 272 | sp<Fence> mFence; |
Lajos Molnar | c5d7b7d | 2013-05-03 14:50:50 -0700 | [diff] [blame] | 273 | |
| 274 | // Indicates whether this buffer has been seen by a consumer yet |
| 275 | bool mAcquireCalled; |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 276 | }; |
| 277 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 278 | // The following public functions are the consumer-facing interface |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 279 | |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 280 | // acquireBuffer attempts to acquire ownership of the next pending buffer in |
| 281 | // the BufferQueue. If no buffer is pending then it returns -EINVAL. If a |
| 282 | // buffer is successfully acquired, the information about the buffer is |
| 283 | // returned in BufferItem. If the buffer returned had previously been |
| 284 | // acquired then the BufferItem::mGraphicBuffer field of buffer is set to |
| 285 | // NULL and it is assumed that the consumer still holds a reference to the |
| 286 | // buffer. |
| 287 | status_t acquireBuffer(BufferItem *buffer); |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 288 | |
| 289 | // releaseBuffer releases a buffer slot from the consumer back to the |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 290 | // BufferQueue. This may be done while the buffer's contents are still |
| 291 | // being accessed. The fence will signal when the buffer is no longer |
Lajos Molnar | c5d7b7d | 2013-05-03 14:50:50 -0700 | [diff] [blame] | 292 | // in use. frameNumber is used to indentify the exact buffer returned. |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 293 | // |
Eino-Ville Talvala | e41b318 | 2012-04-16 17:54:33 -0700 | [diff] [blame] | 294 | // If releaseBuffer returns STALE_BUFFER_SLOT, then the consumer must free |
| 295 | // any references to the just-released buffer that it might have, as if it |
| 296 | // had received a onBuffersReleased() call with a mask set for the released |
| 297 | // buffer. |
| 298 | // |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 299 | // Note that the dependencies on EGL will be removed once we switch to using |
| 300 | // the Android HW Sync HAL. |
Lajos Molnar | c5d7b7d | 2013-05-03 14:50:50 -0700 | [diff] [blame] | 301 | status_t releaseBuffer(int buf, uint64_t frameNumber, |
| 302 | EGLDisplay display, EGLSyncKHR fence, |
Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 303 | const sp<Fence>& releaseFence); |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 304 | |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 305 | // consumerConnect connects a consumer to the BufferQueue. Only one |
| 306 | // consumer may be connected, and when that consumer disconnects the |
| 307 | // BufferQueue is placed into the "abandoned" state, causing most |
| 308 | // interactions with the BufferQueue by the producer to fail. |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 309 | // |
| 310 | // consumer may not be NULL. |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 311 | status_t consumerConnect(const sp<ConsumerListener>& consumer); |
| 312 | |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 313 | // consumerDisconnect disconnects a consumer from the BufferQueue. All |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 314 | // buffers will be freed and the BufferQueue is placed in the "abandoned" |
| 315 | // state, causing most interactions with the BufferQueue by the producer to |
| 316 | // fail. |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 317 | status_t consumerDisconnect(); |
| 318 | |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 319 | // getReleasedBuffers sets the value pointed to by slotMask to a bit mask |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 320 | // indicating which buffer slots have been released by the BufferQueue |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 321 | // but have not yet been released by the consumer. |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 322 | // |
| 323 | // This should be called from the onBuffersReleased() callback. |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 324 | status_t getReleasedBuffers(uint32_t* slotMask); |
| 325 | |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 326 | // setDefaultBufferSize is used to set the size of buffers returned by |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 327 | // dequeueBuffer when a width and height of zero is requested. Default |
| 328 | // is 1x1. |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 329 | status_t setDefaultBufferSize(uint32_t w, uint32_t h); |
| 330 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 331 | // setDefaultMaxBufferCount sets the default value for the maximum buffer |
| 332 | // count (the initial default is 2). If the producer has requested a |
| 333 | // buffer count using setBufferCount, the default buffer count will only |
| 334 | // take effect if the producer sets the count back to zero. |
| 335 | // |
| 336 | // The count must be between 2 and NUM_BUFFER_SLOTS, inclusive. |
Jamie Gennis | 31a353d | 2012-08-24 17:25:13 -0700 | [diff] [blame] | 337 | status_t setDefaultMaxBufferCount(int bufferCount); |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 338 | |
Jamie Gennis | 72f096f | 2012-08-27 18:48:37 -0700 | [diff] [blame] | 339 | // setMaxAcquiredBufferCount sets the maximum number of buffers that can |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 340 | // be acquired by the consumer at one time (default 1). This call will |
| 341 | // fail if a producer is connected to the BufferQueue. |
Jamie Gennis | 72f096f | 2012-08-27 18:48:37 -0700 | [diff] [blame] | 342 | status_t setMaxAcquiredBufferCount(int maxAcquiredBuffers); |
| 343 | |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 344 | // isSynchronousMode returns whether the BufferQueue is currently in |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 345 | // synchronous mode. |
| 346 | bool isSynchronousMode() const; |
| 347 | |
| 348 | // setConsumerName sets the name used in logging |
| 349 | void setConsumerName(const String8& name); |
| 350 | |
Daniel Lam | b267579 | 2012-02-23 14:35:13 -0800 | [diff] [blame] | 351 | // setDefaultBufferFormat allows the BufferQueue to create |
| 352 | // GraphicBuffers of a defaultFormat if no format is specified |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 353 | // in dequeueBuffer. Formats are enumerated in graphics.h; the |
| 354 | // initial default is HAL_PIXEL_FORMAT_RGBA_8888. |
Daniel Lam | b267579 | 2012-02-23 14:35:13 -0800 | [diff] [blame] | 355 | status_t setDefaultBufferFormat(uint32_t defaultFormat); |
| 356 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 357 | // setConsumerUsageBits will turn on additional usage bits for dequeueBuffer. |
| 358 | // These are merged with the bits passed to dequeueBuffer. The values are |
| 359 | // enumerated in gralloc.h, e.g. GRALLOC_USAGE_HW_RENDER; the default is 0. |
Daniel Lam | b267579 | 2012-02-23 14:35:13 -0800 | [diff] [blame] | 360 | status_t setConsumerUsageBits(uint32_t usage); |
| 361 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 362 | // setTransformHint bakes in rotation to buffers so overlays can be used. |
| 363 | // The values are enumerated in window.h, e.g. |
| 364 | // NATIVE_WINDOW_TRANSFORM_ROT_90. The default is 0 (no transform). |
Daniel Lam | b267579 | 2012-02-23 14:35:13 -0800 | [diff] [blame] | 365 | status_t setTransformHint(uint32_t hint); |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 366 | |
| 367 | private: |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 368 | // freeBufferLocked frees the GraphicBuffer and sync resources for the |
| 369 | // given slot. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 370 | void freeBufferLocked(int index); |
| 371 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 372 | // freeAllBuffersLocked frees the GraphicBuffer and sync resources for |
| 373 | // all slots. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 374 | void freeAllBuffersLocked(); |
| 375 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 376 | // drainQueueLocked waits for the buffer queue to empty if we're in |
| 377 | // synchronous mode, or returns immediately otherwise. It returns NO_INIT |
| 378 | // if the BufferQueue is abandoned (consumer disconnected) or disconnected |
| 379 | // (producer disconnected) during the call. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 380 | status_t drainQueueLocked(); |
| 381 | |
| 382 | // drainQueueAndFreeBuffersLocked drains the buffer queue if we're in |
| 383 | // synchronous mode and free all buffers. In asynchronous mode, all buffers |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 384 | // are freed except the currently queued buffer (if it exists). |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 385 | status_t drainQueueAndFreeBuffersLocked(); |
| 386 | |
Jamie Gennis | 31a353d | 2012-08-24 17:25:13 -0700 | [diff] [blame] | 387 | // setDefaultMaxBufferCountLocked sets the maximum number of buffer slots |
| 388 | // that will be used if the producer does not override the buffer slot |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 389 | // count. The count must be between 2 and NUM_BUFFER_SLOTS, inclusive. |
| 390 | // The initial default is 2. |
Jamie Gennis | 31a353d | 2012-08-24 17:25:13 -0700 | [diff] [blame] | 391 | status_t setDefaultMaxBufferCountLocked(int count); |
| 392 | |
| 393 | // getMinBufferCountLocked returns the minimum number of buffers allowed |
| 394 | // given the current BufferQueue state. |
| 395 | int getMinMaxBufferCountLocked() const; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 396 | |
Jamie Gennis | 72f096f | 2012-08-27 18:48:37 -0700 | [diff] [blame] | 397 | // getMinUndequeuedBufferCountLocked returns the minimum number of buffers |
| 398 | // that must remain in a state other than DEQUEUED. |
| 399 | int getMinUndequeuedBufferCountLocked() const; |
| 400 | |
Jamie Gennis | e191e6c | 2012-08-24 20:26:34 -0700 | [diff] [blame] | 401 | // getMaxBufferCountLocked returns the maximum number of buffers that can |
| 402 | // be allocated at once. This value depends upon the following member |
| 403 | // variables: |
| 404 | // |
| 405 | // mSynchronousMode |
Jamie Gennis | 72f096f | 2012-08-27 18:48:37 -0700 | [diff] [blame] | 406 | // mMaxAcquiredBufferCount |
Jamie Gennis | e191e6c | 2012-08-24 20:26:34 -0700 | [diff] [blame] | 407 | // mDefaultMaxBufferCount |
| 408 | // mOverrideMaxBufferCount |
| 409 | // |
| 410 | // Any time one of these member variables is changed while a producer is |
| 411 | // connected, mDequeueCondition must be broadcast. |
| 412 | int getMaxBufferCountLocked() const; |
| 413 | |
Lajos Molnar | c5d7b7d | 2013-05-03 14:50:50 -0700 | [diff] [blame] | 414 | // stillTracking returns true iff the buffer item is still being tracked |
| 415 | // in one of the slots. |
| 416 | bool stillTracking(const BufferItem *item) const; |
| 417 | |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 418 | struct BufferSlot { |
| 419 | |
| 420 | BufferSlot() |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 421 | : mEglDisplay(EGL_NO_DISPLAY), |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 422 | mBufferState(BufferSlot::FREE), |
| 423 | mRequestBufferCalled(false), |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 424 | mFrameNumber(0), |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 425 | mEglFence(EGL_NO_SYNC_KHR), |
Daniel Lam | 9abe1eb | 2012-03-26 20:37:15 -0700 | [diff] [blame] | 426 | mAcquireCalled(false), |
| 427 | mNeedsCleanupOnRelease(false) { |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | // mGraphicBuffer points to the buffer allocated for this slot or is NULL |
| 431 | // if no buffer has been allocated. |
| 432 | sp<GraphicBuffer> mGraphicBuffer; |
| 433 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 434 | // mEglDisplay is the EGLDisplay used to create EGLSyncKHR objects. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 435 | EGLDisplay mEglDisplay; |
| 436 | |
| 437 | // BufferState represents the different states in which a buffer slot |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 438 | // can be. All slots are initially FREE. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 439 | enum BufferState { |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 440 | // FREE indicates that the buffer is available to be dequeued |
| 441 | // by the producer. The buffer may be in use by the consumer for |
| 442 | // a finite time, so the buffer must not be modified until the |
| 443 | // associated fence is signaled. |
| 444 | // |
| 445 | // The slot is "owned" by BufferQueue. It transitions to DEQUEUED |
| 446 | // when dequeueBuffer is called. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 447 | FREE = 0, |
| 448 | |
| 449 | // DEQUEUED indicates that the buffer has been dequeued by the |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 450 | // producer, but has not yet been queued or canceled. The |
| 451 | // producer may modify the buffer's contents as soon as the |
| 452 | // associated ready fence is signaled. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 453 | // |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 454 | // The slot is "owned" by the producer. It can transition to |
| 455 | // QUEUED (via queueBuffer) or back to FREE (via cancelBuffer). |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 456 | DEQUEUED = 1, |
| 457 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 458 | // QUEUED indicates that the buffer has been filled by the |
| 459 | // producer and queued for use by the consumer. The buffer |
| 460 | // contents may continue to be modified for a finite time, so |
| 461 | // the contents must not be accessed until the associated fence |
| 462 | // is signaled. |
| 463 | // |
| 464 | // The slot is "owned" by BufferQueue. It can transition to |
| 465 | // ACQUIRED (via acquireBuffer) or to FREE (if another buffer is |
| 466 | // queued in asynchronous mode). |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 467 | QUEUED = 2, |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 468 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 469 | // ACQUIRED indicates that the buffer has been acquired by the |
| 470 | // consumer. As with QUEUED, the contents must not be accessed |
| 471 | // by the consumer until the fence is signaled. |
| 472 | // |
| 473 | // The slot is "owned" by the consumer. It transitions to FREE |
| 474 | // when releaseBuffer is called. |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 475 | ACQUIRED = 3 |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 476 | }; |
| 477 | |
| 478 | // mBufferState is the current state of this buffer slot. |
| 479 | BufferState mBufferState; |
| 480 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 481 | // mRequestBufferCalled is used for validating that the producer did |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 482 | // call requestBuffer() when told to do so. Technically this is not |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 483 | // needed but useful for debugging and catching producer bugs. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 484 | bool mRequestBufferCalled; |
| 485 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 486 | // mFrameNumber is the number of the queued frame for this slot. This |
| 487 | // is used to dequeue buffers in LRU order (useful because buffers |
| 488 | // may be released before their release fence is signaled). |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 489 | uint64_t mFrameNumber; |
| 490 | |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 491 | // mEglFence is the EGL sync object that must signal before the buffer |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 492 | // associated with this buffer slot may be dequeued. It is initialized |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 493 | // to EGL_NO_SYNC_KHR when the buffer is created and may be set to a |
| 494 | // new sync object in releaseBuffer. (This is deprecated in favor of |
| 495 | // mFence, below.) |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 496 | EGLSyncKHR mEglFence; |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 497 | |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 498 | // mFence is a fence which will signal when work initiated by the |
| 499 | // previous owner of the buffer is finished. When the buffer is FREE, |
| 500 | // the fence indicates when the consumer has finished reading |
| 501 | // from the buffer, or when the producer has finished writing if it |
| 502 | // called cancelBuffer after queueing some writes. When the buffer is |
| 503 | // QUEUED, it indicates when the producer has finished filling the |
| 504 | // buffer. When the buffer is DEQUEUED or ACQUIRED, the fence has been |
| 505 | // passed to the consumer or producer along with ownership of the |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 506 | // buffer, and mFence is set to NO_FENCE. |
Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 507 | sp<Fence> mFence; |
Jesse Hall | ef19414 | 2012-06-14 14:45:17 -0700 | [diff] [blame] | 508 | |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 509 | // Indicates whether this buffer has been seen by a consumer yet |
| 510 | bool mAcquireCalled; |
Daniel Lam | 9abe1eb | 2012-03-26 20:37:15 -0700 | [diff] [blame] | 511 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 512 | // Indicates whether this buffer needs to be cleaned up by the |
| 513 | // consumer. This is set when a buffer in ACQUIRED state is freed. |
| 514 | // It causes releaseBuffer to return STALE_BUFFER_SLOT. |
Daniel Lam | 9abe1eb | 2012-03-26 20:37:15 -0700 | [diff] [blame] | 515 | bool mNeedsCleanupOnRelease; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 516 | }; |
| 517 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 518 | // mSlots is the array of buffer slots that must be mirrored on the |
| 519 | // producer side. This allows buffer ownership to be transferred between |
| 520 | // the producer and consumer without sending a GraphicBuffer over binder. |
| 521 | // The entire array is initialized to NULL at construction time, and |
| 522 | // buffers are allocated for a slot when requestBuffer is called with |
| 523 | // that slot's index. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 524 | BufferSlot mSlots[NUM_BUFFER_SLOTS]; |
| 525 | |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 526 | // mDefaultWidth holds the default width of allocated buffers. It is used |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 527 | // in dequeueBuffer() if a width and height of zero is specified. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 528 | uint32_t mDefaultWidth; |
| 529 | |
| 530 | // mDefaultHeight holds the default height of allocated buffers. It is used |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 531 | // in dequeueBuffer() if a width and height of zero is specified. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 532 | uint32_t mDefaultHeight; |
| 533 | |
Jamie Gennis | 72f096f | 2012-08-27 18:48:37 -0700 | [diff] [blame] | 534 | // mMaxAcquiredBufferCount is the number of buffers that the consumer may |
| 535 | // acquire at one time. It defaults to 1 and can be changed by the |
| 536 | // consumer via the setMaxAcquiredBufferCount method, but this may only be |
| 537 | // done when no producer is connected to the BufferQueue. |
| 538 | // |
| 539 | // This value is used to derive the value returned for the |
| 540 | // MIN_UNDEQUEUED_BUFFERS query by the producer. |
| 541 | int mMaxAcquiredBufferCount; |
Daniel Lam | abe61bf | 2012-03-26 20:37:15 -0700 | [diff] [blame] | 542 | |
Jamie Gennis | 31a353d | 2012-08-24 17:25:13 -0700 | [diff] [blame] | 543 | // mDefaultMaxBufferCount is the default limit on the number of buffers |
| 544 | // that will be allocated at one time. This default limit is set by the |
| 545 | // consumer. The limit (as opposed to the default limit) may be |
| 546 | // overridden by the producer. |
| 547 | int mDefaultMaxBufferCount; |
Daniel Lam | abe61bf | 2012-03-26 20:37:15 -0700 | [diff] [blame] | 548 | |
Jamie Gennis | 31a353d | 2012-08-24 17:25:13 -0700 | [diff] [blame] | 549 | // mOverrideMaxBufferCount is the limit on the number of buffers that will |
| 550 | // be allocated at one time. This value is set by the image producer by |
| 551 | // calling setBufferCount. The default is zero, which means the producer |
| 552 | // doesn't care about the number of buffers in the pool. In that case |
| 553 | // mDefaultMaxBufferCount is used as the limit. |
| 554 | int mOverrideMaxBufferCount; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 555 | |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 556 | // mGraphicBufferAlloc is the connection to SurfaceFlinger that is used to |
| 557 | // allocate new GraphicBuffer objects. |
| 558 | sp<IGraphicBufferAlloc> mGraphicBufferAlloc; |
| 559 | |
Jamie Gennis | fa5b40e | 2012-03-15 14:01:24 -0700 | [diff] [blame] | 560 | // mConsumerListener is used to notify the connected consumer of |
| 561 | // asynchronous events that it may wish to react to. It is initially set |
| 562 | // to NULL and is written by consumerConnect and consumerDisconnect. |
| 563 | sp<ConsumerListener> mConsumerListener; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 564 | |
| 565 | // mSynchronousMode whether we're in synchronous mode or not |
| 566 | bool mSynchronousMode; |
| 567 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 568 | // mAllowSynchronousMode whether we allow synchronous mode or not. Set |
| 569 | // when the BufferQueue is created (by the consumer). |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 570 | const bool mAllowSynchronousMode; |
| 571 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 572 | // mConnectedApi indicates the producer API that is currently connected |
| 573 | // to this BufferQueue. It defaults to NO_CONNECTED_API (= 0), and gets |
| 574 | // updated by the connect and disconnect methods. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 575 | int mConnectedApi; |
| 576 | |
| 577 | // mDequeueCondition condition used for dequeueBuffer in synchronous mode |
| 578 | mutable Condition mDequeueCondition; |
| 579 | |
| 580 | // mQueue is a FIFO of queued buffers used in synchronous mode |
Lajos Molnar | c5d7b7d | 2013-05-03 14:50:50 -0700 | [diff] [blame] | 581 | typedef Vector<BufferItem> Fifo; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 582 | Fifo mQueue; |
| 583 | |
| 584 | // mAbandoned indicates that the BufferQueue will no longer be used to |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 585 | // consume image buffers pushed to it using the IGraphicBufferProducer |
| 586 | // interface. It is initialized to false, and set to true in the |
| 587 | // consumerDisconnect method. A BufferQueue that has been abandoned will |
| 588 | // return the NO_INIT error from all IGraphicBufferProducer methods |
| 589 | // capable of returning an error. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 590 | bool mAbandoned; |
| 591 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 592 | // mConsumerName is a string used to identify the BufferQueue in log |
| 593 | // messages. It is set by the setConsumerName method. |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 594 | String8 mConsumerName; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 595 | |
| 596 | // mMutex is the mutex used to prevent concurrent access to the member |
| 597 | // variables of BufferQueue objects. It must be locked whenever the |
| 598 | // member variables are accessed. |
| 599 | mutable Mutex mMutex; |
| 600 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 601 | // mFrameCounter is the free running counter, incremented on every |
Lajos Molnar | c5d7b7d | 2013-05-03 14:50:50 -0700 | [diff] [blame] | 602 | // successful queueBuffer call, and buffer allocation. |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 603 | uint64_t mFrameCounter; |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 604 | |
Andy McFadden | 753e341 | 2013-04-04 17:09:03 -0700 | [diff] [blame] | 605 | // mBufferHasBeenQueued is true once a buffer has been queued. It is |
| 606 | // reset when something causes all buffers to be freed (e.g. changing the |
| 607 | // buffer count). |
Daniel Lam | eae59d2 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 608 | bool mBufferHasBeenQueued; |
Daniel Lam | b267579 | 2012-02-23 14:35:13 -0800 | [diff] [blame] | 609 | |
| 610 | // mDefaultBufferFormat can be set so it will override |
| 611 | // the buffer format when it isn't specified in dequeueBuffer |
| 612 | uint32_t mDefaultBufferFormat; |
| 613 | |
| 614 | // mConsumerUsageBits contains flags the consumer wants for GraphicBuffers |
| 615 | uint32_t mConsumerUsageBits; |
| 616 | |
| 617 | // mTransformHint is used to optimize for screen rotations |
| 618 | uint32_t mTransformHint; |
Daniel Lam | 6b091c5 | 2012-01-22 15:26:27 -0800 | [diff] [blame] | 619 | }; |
| 620 | |
| 621 | // ---------------------------------------------------------------------------- |
| 622 | }; // namespace android |
| 623 | |
| 624 | #endif // ANDROID_GUI_BUFFERQUEUE_H |