| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2010 The Android Open Source Project | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
| Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 17 | #ifndef ANDROID_GUI_IGRAPHICBUFFERPRODUCER_H | 
|  | 18 | #define ANDROID_GUI_IGRAPHICBUFFERPRODUCER_H | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 19 |  | 
|  | 20 | #include <stdint.h> | 
|  | 21 | #include <sys/types.h> | 
|  | 22 |  | 
|  | 23 | #include <utils/Errors.h> | 
|  | 24 | #include <utils/RefBase.h> | 
|  | 25 |  | 
|  | 26 | #include <binder/IInterface.h> | 
|  | 27 |  | 
| Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 28 | #include <ui/Fence.h> | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 29 | #include <ui/GraphicBuffer.h> | 
|  | 30 | #include <ui/Rect.h> | 
| Dan Stoza | 5065a55 | 2015-03-17 16:23:42 -0700 | [diff] [blame] | 31 | #include <ui/Region.h> | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 32 |  | 
| Pablo Ceballos | ce796e7 | 2016-02-04 19:10:51 -0800 | [diff] [blame] | 33 | #include <gui/FrameTimestamps.h> | 
|  | 34 |  | 
| Pawin Vongmasa | 6e1193a | 2017-03-07 13:08:40 -0800 | [diff] [blame] | 35 | #include <hidl/HybridInterface.h> | 
|  | 36 | #include <android/hardware/graphics/bufferqueue/1.0/IGraphicBufferProducer.h> | 
|  | 37 |  | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 38 | namespace android { | 
|  | 39 | // ---------------------------------------------------------------------------- | 
|  | 40 |  | 
| Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 41 | class IProducerListener; | 
| Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 42 | class NativeHandle; | 
| Mathias Agopian | e3c697f | 2013-02-14 17:11:02 -0800 | [diff] [blame] | 43 | class Surface; | 
| Pawin Vongmasa | 6e1193a | 2017-03-07 13:08:40 -0800 | [diff] [blame] | 44 | typedef ::android::hardware::graphics::bufferqueue::V1_0::IGraphicBufferProducer | 
|  | 45 | HGraphicBufferProducer; | 
| Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 46 |  | 
| Andy McFadden | 0273adb | 2012-12-12 17:10:08 -0800 | [diff] [blame] | 47 | /* | 
| Andy McFadden | 466a192 | 2013-01-08 11:25:51 -0800 | [diff] [blame] | 48 | * This class defines the Binder IPC interface for the producer side of | 
|  | 49 | * a queue of graphics buffers.  It's used to send graphics data from one | 
|  | 50 | * component to another.  For example, a class that decodes video for | 
|  | 51 | * playback might use this to provide frames.  This is typically done | 
| Mathias Agopian | e3c697f | 2013-02-14 17:11:02 -0800 | [diff] [blame] | 52 | * indirectly, through Surface. | 
| Andy McFadden | 0273adb | 2012-12-12 17:10:08 -0800 | [diff] [blame] | 53 | * | 
| Andy McFadden | 466a192 | 2013-01-08 11:25:51 -0800 | [diff] [blame] | 54 | * The underlying mechanism is a BufferQueue, which implements | 
|  | 55 | * BnGraphicBufferProducer.  In normal operation, the producer calls | 
|  | 56 | * dequeueBuffer() to get an empty buffer, fills it with data, then | 
|  | 57 | * calls queueBuffer() to make it available to the consumer. | 
| Andy McFadden | 0273adb | 2012-12-12 17:10:08 -0800 | [diff] [blame] | 58 | * | 
| Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 59 | * This class was previously called ISurfaceTexture. | 
| Andy McFadden | 0273adb | 2012-12-12 17:10:08 -0800 | [diff] [blame] | 60 | */ | 
| Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 61 | class IGraphicBufferProducer : public IInterface | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 62 | { | 
|  | 63 | public: | 
| Pawin Vongmasa | 6e1193a | 2017-03-07 13:08:40 -0800 | [diff] [blame] | 64 | DECLARE_HYBRID_META_INTERFACE(GraphicBufferProducer, HGraphicBufferProducer) | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 65 |  | 
| Mathias Agopian | 8072711 | 2011-05-02 19:51:12 -0700 | [diff] [blame] | 66 | enum { | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 67 | // A flag returned by dequeueBuffer when the client needs to call | 
|  | 68 | // requestBuffer immediately thereafter. | 
| Mathias Agopian | 8072711 | 2011-05-02 19:51:12 -0700 | [diff] [blame] | 69 | BUFFER_NEEDS_REALLOCATION = 0x1, | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 70 | // A flag returned by dequeueBuffer when all mirrored slots should be | 
|  | 71 | // released by the client. This flag should always be processed first. | 
| Mathias Agopian | 8072711 | 2011-05-02 19:51:12 -0700 | [diff] [blame] | 72 | RELEASE_ALL_BUFFERS       = 0x2, | 
|  | 73 | }; | 
| Mathias Agopian | a5c75c0 | 2011-03-31 19:10:24 -0700 | [diff] [blame] | 74 |  | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 75 | // requestBuffer requests a new buffer for the given index. The server (i.e. | 
| Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 76 | // the IGraphicBufferProducer implementation) assigns the newly created | 
|  | 77 | // buffer to the given slot index, and the client is expected to mirror the | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 78 | // slot->buffer mapping so that it's not necessary to transfer a | 
|  | 79 | // GraphicBuffer for every dequeue operation. | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 80 | // | 
|  | 81 | // The slot must be in the range of [0, NUM_BUFFER_SLOTS). | 
|  | 82 | // | 
|  | 83 | // Return of a value other than NO_ERROR means an error has occurred: | 
| Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 84 | // * NO_INIT - the buffer queue has been abandoned or the producer is not | 
|  | 85 | //             connected. | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 86 | // * BAD_VALUE - one of the two conditions occurred: | 
|  | 87 | //              * slot was out of range (see above) | 
|  | 88 | //              * buffer specified by the slot is not dequeued | 
| Jamie Gennis | 7b305ff | 2011-07-19 12:08:33 -0700 | [diff] [blame] | 89 | virtual status_t requestBuffer(int slot, sp<GraphicBuffer>* buf) = 0; | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 90 |  | 
| Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 91 | // setMaxDequeuedBufferCount sets the maximum number of buffers that can be | 
| Pablo Ceballos | 72daab6 | 2015-12-07 16:38:43 -0800 | [diff] [blame] | 92 | // dequeued by the producer at one time. If this method succeeds, any new | 
|  | 93 | // buffer slots will be both unallocated and owned by the BufferQueue object | 
|  | 94 | // (i.e. they are not owned by the producer or consumer). Calling this may | 
|  | 95 | // also cause some buffer slots to be emptied. If the caller is caching the | 
| Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 96 | // contents of the buffer slots, it should empty that cache after calling | 
|  | 97 | // this method. | 
|  | 98 | // | 
| Pablo Ceballos | 72daab6 | 2015-12-07 16:38:43 -0800 | [diff] [blame] | 99 | // This function should not be called with a value of maxDequeuedBuffers | 
|  | 100 | // that is less than the number of currently dequeued buffer slots. Doing so | 
|  | 101 | // will result in a BAD_VALUE error. | 
| Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 102 | // | 
|  | 103 | // The buffer count should be at least 1 (inclusive), but at most | 
|  | 104 | // (NUM_BUFFER_SLOTS - the minimum undequeued buffer count) (exclusive). The | 
|  | 105 | // minimum undequeued buffer count can be obtained by calling | 
|  | 106 | // query(NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS). | 
|  | 107 | // | 
|  | 108 | // Return of a value other than NO_ERROR means an error has occurred: | 
|  | 109 | // * NO_INIT - the buffer queue has been abandoned. | 
|  | 110 | // * BAD_VALUE - one of the below conditions occurred: | 
| Pablo Ceballos | 72daab6 | 2015-12-07 16:38:43 -0800 | [diff] [blame] | 111 | //     * bufferCount was out of range (see above). | 
|  | 112 | //     * client would have more than the requested number of dequeued | 
|  | 113 | //       buffers after this call. | 
|  | 114 | //     * this call would cause the maxBufferCount value to be exceeded. | 
| Pablo Ceballos | 23b4abe | 2016-01-08 12:15:22 -0800 | [diff] [blame] | 115 | //     * failure to adjust the number of available slots. | 
| Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 116 | virtual status_t setMaxDequeuedBufferCount(int maxDequeuedBuffers) = 0; | 
|  | 117 |  | 
|  | 118 | // Set the async flag if the producer intends to asynchronously queue | 
|  | 119 | // buffers without blocking. Typically this is used for triple-buffering | 
|  | 120 | // and/or when the swap interval is set to zero. | 
|  | 121 | // | 
|  | 122 | // Enabling async mode will internally allocate an additional buffer to | 
|  | 123 | // allow for the asynchronous behavior. If it is not enabled queue/dequeue | 
|  | 124 | // calls may block. | 
|  | 125 | // | 
| Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 126 | // Return of a value other than NO_ERROR means an error has occurred: | 
|  | 127 | // * NO_INIT - the buffer queue has been abandoned. | 
| Pablo Ceballos | 23b4abe | 2016-01-08 12:15:22 -0800 | [diff] [blame] | 128 | // * BAD_VALUE - one of the following has occurred: | 
|  | 129 | //             * this call would cause the maxBufferCount value to be | 
| Pablo Ceballos | b687a28 | 2015-10-06 11:14:51 -0700 | [diff] [blame] | 130 | //               exceeded | 
| Pablo Ceballos | 23b4abe | 2016-01-08 12:15:22 -0800 | [diff] [blame] | 131 | //             * failure to adjust the number of available slots. | 
| Pablo Ceballos | fa45535 | 2015-08-12 17:47:47 -0700 | [diff] [blame] | 132 | virtual status_t setAsyncMode(bool async) = 0; | 
|  | 133 |  | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 134 | // dequeueBuffer requests a new buffer slot for the client to use. Ownership | 
|  | 135 | // of the slot is transfered to the client, meaning that the server will not | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 136 | // use the contents of the buffer associated with that slot. | 
|  | 137 | // | 
|  | 138 | // The slot index returned may or may not contain a buffer (client-side). | 
|  | 139 | // If the slot is empty the client should call requestBuffer to assign a new | 
|  | 140 | // buffer to that slot. | 
|  | 141 | // | 
|  | 142 | // Once the client is done filling this buffer, it is expected to transfer | 
|  | 143 | // buffer ownership back to the server with either cancelBuffer on | 
|  | 144 | // the dequeued slot or to fill in the contents of its associated buffer | 
|  | 145 | // contents and call queueBuffer. | 
|  | 146 | // | 
|  | 147 | // If dequeueBuffer returns the BUFFER_NEEDS_REALLOCATION flag, the client is | 
| Mathias Agopian | a5c75c0 | 2011-03-31 19:10:24 -0700 | [diff] [blame] | 148 | // expected to call requestBuffer immediately. | 
| Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 149 | // | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 150 | // If dequeueBuffer returns the RELEASE_ALL_BUFFERS flag, the client is | 
|  | 151 | // expected to release all of the mirrored slot->buffer mappings. | 
|  | 152 | // | 
| Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 153 | // The fence parameter will be updated to hold the fence associated with | 
|  | 154 | // the buffer. The contents of the buffer must not be overwritten until the | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 155 | // fence signals. If the fence is Fence::NO_FENCE, the buffer may be written | 
| Jesse Hall | f785754 | 2012-06-14 15:26:33 -0700 | [diff] [blame] | 156 | // immediately. | 
| Mathias Agopian | 7cdd786 | 2013-07-18 22:10:56 -0700 | [diff] [blame] | 157 | // | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 158 | // The width and height parameters must be no greater than the minimum of | 
|  | 159 | // GL_MAX_VIEWPORT_DIMS and GL_MAX_TEXTURE_SIZE (see: glGetIntegerv). | 
|  | 160 | // An error due to invalid dimensions might not be reported until | 
|  | 161 | // updateTexImage() is called.  If width and height are both zero, the | 
|  | 162 | // default values specified by setDefaultBufferSize() are used instead. | 
|  | 163 | // | 
| Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 164 | // If the format is 0, the default format will be used. | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 165 | // | 
|  | 166 | // The usage argument specifies gralloc buffer usage flags.  The values | 
|  | 167 | // are enumerated in <gralloc.h>, e.g. GRALLOC_USAGE_HW_RENDER.  These | 
|  | 168 | // will be merged with the usage flags specified by | 
|  | 169 | // IGraphicBufferConsumer::setConsumerUsageBits. | 
|  | 170 | // | 
|  | 171 | // This call will block until a buffer is available to be dequeued. If | 
|  | 172 | // both the producer and consumer are controlled by the app, then this call | 
|  | 173 | // can never block and will return WOULD_BLOCK if no buffer is available. | 
|  | 174 | // | 
|  | 175 | // A non-negative value with flags set (see above) will be returned upon | 
|  | 176 | // success. | 
|  | 177 | // | 
|  | 178 | // Return of a negative means an error has occurred: | 
| Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 179 | // * NO_INIT - the buffer queue has been abandoned or the producer is not | 
|  | 180 | //             connected. | 
| Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 181 | // * BAD_VALUE - both in async mode and buffer count was less than the | 
|  | 182 | //               max numbers of buffers that can be allocated at once. | 
|  | 183 | // * INVALID_OPERATION - cannot attach the buffer because it would cause | 
|  | 184 | //                       too many buffers to be dequeued, either because | 
|  | 185 | //                       the producer already has a single buffer dequeued | 
|  | 186 | //                       and did not set a buffer count, or because a | 
|  | 187 | //                       buffer count was set and this call would cause | 
|  | 188 | //                       it to be exceeded. | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 189 | // * WOULD_BLOCK - no buffer is currently available, and blocking is disabled | 
|  | 190 | //                 since both the producer/consumer are controlled by app | 
|  | 191 | // * NO_MEMORY - out of memory, cannot allocate the graphics buffer. | 
| Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 192 | // * TIMED_OUT - the timeout set by setDequeueTimeout was exceeded while | 
|  | 193 | //               waiting for a buffer to become available. | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 194 | // | 
|  | 195 | // All other negative values are an unknown error returned downstream | 
|  | 196 | // from the graphics allocator (typically errno). | 
| Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 197 | virtual status_t dequeueBuffer(int* slot, sp<Fence>* fence, uint32_t w, | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 198 | uint32_t h, PixelFormat format, uint32_t usage, | 
|  | 199 | FrameEventHistoryDelta* outTimestamps) = 0; | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 200 |  | 
| Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 201 | // detachBuffer attempts to remove all ownership of the buffer in the given | 
|  | 202 | // slot from the buffer queue. If this call succeeds, the slot will be | 
|  | 203 | // freed, and there will be no way to obtain the buffer from this interface. | 
|  | 204 | // The freed slot will remain unallocated until either it is selected to | 
|  | 205 | // hold a freshly allocated buffer in dequeueBuffer or a buffer is attached | 
|  | 206 | // to the slot. The buffer must have already been dequeued, and the caller | 
|  | 207 | // must already possesses the sp<GraphicBuffer> (i.e., must have called | 
|  | 208 | // requestBuffer). | 
|  | 209 | // | 
|  | 210 | // Return of a value other than NO_ERROR means an error has occurred: | 
| Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 211 | // * NO_INIT - the buffer queue has been abandoned or the producer is not | 
|  | 212 | //             connected. | 
| Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 213 | // * BAD_VALUE - the given slot number is invalid, either because it is | 
|  | 214 | //               out of the range [0, NUM_BUFFER_SLOTS), or because the slot | 
|  | 215 | //               it refers to is not currently dequeued and requested. | 
|  | 216 | virtual status_t detachBuffer(int slot) = 0; | 
|  | 217 |  | 
| Dan Stoza | d9822a3 | 2014-03-28 15:25:31 -0700 | [diff] [blame] | 218 | // detachNextBuffer is equivalent to calling dequeueBuffer, requestBuffer, | 
|  | 219 | // and detachBuffer in sequence, except for two things: | 
|  | 220 | // | 
|  | 221 | // 1) It is unnecessary to know the dimensions, format, or usage of the | 
|  | 222 | //    next buffer. | 
|  | 223 | // 2) It will not block, since if it cannot find an appropriate buffer to | 
|  | 224 | //    return, it will return an error instead. | 
|  | 225 | // | 
|  | 226 | // Only slots that are free but still contain a GraphicBuffer will be | 
|  | 227 | // considered, and the oldest of those will be returned. outBuffer is | 
|  | 228 | // equivalent to outBuffer from the requestBuffer call, and outFence is | 
|  | 229 | // equivalent to fence from the dequeueBuffer call. | 
|  | 230 | // | 
|  | 231 | // Return of a value other than NO_ERROR means an error has occurred: | 
| Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 232 | // * NO_INIT - the buffer queue has been abandoned or the producer is not | 
|  | 233 | //             connected. | 
| Dan Stoza | d9822a3 | 2014-03-28 15:25:31 -0700 | [diff] [blame] | 234 | // * BAD_VALUE - either outBuffer or outFence were NULL. | 
|  | 235 | // * NO_MEMORY - no slots were found that were both free and contained a | 
|  | 236 | //               GraphicBuffer. | 
|  | 237 | virtual status_t detachNextBuffer(sp<GraphicBuffer>* outBuffer, | 
|  | 238 | sp<Fence>* outFence) = 0; | 
|  | 239 |  | 
| Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 240 | // attachBuffer attempts to transfer ownership of a buffer to the buffer | 
|  | 241 | // queue. If this call succeeds, it will be as if this buffer was dequeued | 
|  | 242 | // from the returned slot number. As such, this call will fail if attaching | 
|  | 243 | // this buffer would cause too many buffers to be simultaneously dequeued. | 
|  | 244 | // | 
|  | 245 | // If attachBuffer returns the RELEASE_ALL_BUFFERS flag, the caller is | 
|  | 246 | // expected to release all of the mirrored slot->buffer mappings. | 
|  | 247 | // | 
|  | 248 | // A non-negative value with flags set (see above) will be returned upon | 
|  | 249 | // success. | 
|  | 250 | // | 
|  | 251 | // Return of a negative value means an error has occurred: | 
| Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 252 | // * NO_INIT - the buffer queue has been abandoned or the producer is not | 
|  | 253 | //             connected. | 
| Dan Stoza | 812ed06 | 2015-06-02 15:45:22 -0700 | [diff] [blame] | 254 | // * BAD_VALUE - outSlot or buffer were NULL, invalid combination of | 
|  | 255 | //               async mode and buffer count override, or the generation | 
|  | 256 | //               number of the buffer did not match the buffer queue. | 
| Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 257 | // * INVALID_OPERATION - cannot attach the buffer because it would cause | 
|  | 258 | //                       too many buffers to be dequeued, either because | 
|  | 259 | //                       the producer already has a single buffer dequeued | 
|  | 260 | //                       and did not set a buffer count, or because a | 
|  | 261 | //                       buffer count was set and this call would cause | 
|  | 262 | //                       it to be exceeded. | 
|  | 263 | // * WOULD_BLOCK - no buffer slot is currently available, and blocking is | 
|  | 264 | //                 disabled since both the producer/consumer are | 
|  | 265 | //                 controlled by the app. | 
| Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 266 | // * TIMED_OUT - the timeout set by setDequeueTimeout was exceeded while | 
|  | 267 | //               waiting for a slot to become available. | 
| Dan Stoza | 9f3053d | 2014-03-06 15:14:33 -0800 | [diff] [blame] | 268 | virtual status_t attachBuffer(int* outSlot, | 
|  | 269 | const sp<GraphicBuffer>& buffer) = 0; | 
|  | 270 |  | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 271 | // queueBuffer indicates that the client has finished filling in the | 
|  | 272 | // contents of the buffer associated with slot and transfers ownership of | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 273 | // that slot back to the server. | 
|  | 274 | // | 
|  | 275 | // It is not valid to call queueBuffer on a slot that is not owned | 
|  | 276 | // by the client or one for which a buffer associated via requestBuffer | 
|  | 277 | // (an attempt to do so will fail with a return value of BAD_VALUE). | 
|  | 278 | // | 
|  | 279 | // In addition, the input must be described by the client (as documented | 
|  | 280 | // below). Any other properties (zero point, etc) | 
| Eino-Ville Talvala | 1d01a12 | 2011-02-18 11:02:42 -0800 | [diff] [blame] | 281 | // are client-dependent, and should be documented by the client. | 
| Mathias Agopian | 97c602c | 2011-07-19 15:24:46 -0700 | [diff] [blame] | 282 | // | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 283 | // The slot must be in the range of [0, NUM_BUFFER_SLOTS). | 
| Mathias Agopian | 7cdd786 | 2013-07-18 22:10:56 -0700 | [diff] [blame] | 284 | // | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 285 | // Upon success, the output will be filled with meaningful values | 
|  | 286 | // (refer to the documentation below). | 
|  | 287 | // | 
|  | 288 | // Return of a value other than NO_ERROR means an error has occurred: | 
| Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 289 | // * NO_INIT - the buffer queue has been abandoned or the producer is not | 
|  | 290 | //             connected. | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 291 | // * BAD_VALUE - one of the below conditions occurred: | 
|  | 292 | //              * fence was NULL | 
|  | 293 | //              * scaling mode was unknown | 
|  | 294 | //              * both in async mode and buffer count was less than the | 
|  | 295 | //                max numbers of buffers that can be allocated at once | 
|  | 296 | //              * slot index was out of range (see above). | 
|  | 297 | //              * the slot was not in the dequeued state | 
|  | 298 | //              * the slot was enqueued without requesting a buffer | 
|  | 299 | //              * crop rect is out of bounds of the buffer dimensions | 
| Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 300 |  | 
| Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 301 | struct QueueBufferInput : public Flattenable<QueueBufferInput> { | 
|  | 302 | friend class Flattenable<QueueBufferInput>; | 
| Chih-Hung Hsieh | 65d4787 | 2016-09-01 11:39:25 -0700 | [diff] [blame] | 303 | explicit inline QueueBufferInput(const Parcel& parcel); | 
| Brian Anderson | baaad32 | 2016-07-22 15:55:13 -0700 | [diff] [blame] | 304 |  | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 305 | // timestamp - a monotonically increasing value in nanoseconds | 
|  | 306 | // isAutoTimestamp - if the timestamp was synthesized at queue time | 
| Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 307 | // dataSpace - description of the contents, interpretation depends on format | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 308 | // crop - a crop rectangle that's used as a hint to the consumer | 
|  | 309 | // scalingMode - a set of flags from NATIVE_WINDOW_SCALING_* in <window.h> | 
|  | 310 | // transform - a set of flags from NATIVE_WINDOW_TRANSFORM_* in <window.h> | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 311 | // fence - a fence that the consumer must wait on before reading the buffer, | 
|  | 312 | //         set this to Fence::NO_FENCE if the buffer is ready immediately | 
| Ruben Brunk | 1681d95 | 2014-06-27 15:51:55 -0700 | [diff] [blame] | 313 | // sticky - the sticky transform set in Surface (only used by the LEGACY | 
|  | 314 | //          camera mode). | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 315 | // getFrameTimestamps - whether or not the latest frame timestamps | 
|  | 316 | //                      should be retrieved from the consumer. | 
| Colin Cross | 382ecd3 | 2016-09-26 13:33:59 -0700 | [diff] [blame] | 317 | inline QueueBufferInput(int64_t _timestamp, bool _isAutoTimestamp, | 
|  | 318 | android_dataspace _dataSpace, const Rect& _crop, | 
|  | 319 | int _scalingMode, uint32_t _transform, const sp<Fence>& _fence, | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 320 | uint32_t _sticky = 0, bool _getFrameTimestamps = false) | 
| Colin Cross | 382ecd3 | 2016-09-26 13:33:59 -0700 | [diff] [blame] | 321 | : timestamp(_timestamp), isAutoTimestamp(_isAutoTimestamp), | 
|  | 322 | dataSpace(_dataSpace), crop(_crop), scalingMode(_scalingMode), | 
|  | 323 | transform(_transform), stickyTransform(_sticky), fence(_fence), | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 324 | surfaceDamage(), getFrameTimestamps(_getFrameTimestamps) { } | 
| Brian Anderson | baaad32 | 2016-07-22 15:55:13 -0700 | [diff] [blame] | 325 |  | 
| Andy McFadden | 3c25621 | 2013-08-16 14:55:39 -0700 | [diff] [blame] | 326 | inline void deflate(int64_t* outTimestamp, bool* outIsAutoTimestamp, | 
| Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 327 | android_dataspace* outDataSpace, | 
|  | 328 | Rect* outCrop, int* outScalingMode, | 
| Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 329 | uint32_t* outTransform, sp<Fence>* outFence, | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 330 | uint32_t* outStickyTransform = nullptr, | 
|  | 331 | bool* outGetFrameTimestamps = nullptr) const { | 
| Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 332 | *outTimestamp = timestamp; | 
| Andy McFadden | 3c25621 | 2013-08-16 14:55:39 -0700 | [diff] [blame] | 333 | *outIsAutoTimestamp = bool(isAutoTimestamp); | 
| Eino-Ville Talvala | 82c6bcc | 2015-02-19 16:10:43 -0800 | [diff] [blame] | 334 | *outDataSpace = dataSpace; | 
| Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 335 | *outCrop = crop; | 
|  | 336 | *outScalingMode = scalingMode; | 
|  | 337 | *outTransform = transform; | 
| Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 338 | *outFence = fence; | 
| Ruben Brunk | 1681d95 | 2014-06-27 15:51:55 -0700 | [diff] [blame] | 339 | if (outStickyTransform != NULL) { | 
|  | 340 | *outStickyTransform = stickyTransform; | 
|  | 341 | } | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 342 | if (outGetFrameTimestamps) { | 
|  | 343 | *outGetFrameTimestamps = getFrameTimestamps; | 
|  | 344 | } | 
| Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 345 | } | 
| Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 346 |  | 
| Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 347 | // Flattenable protocol | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 348 | static constexpr size_t minFlattenedSize(); | 
| Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 349 | size_t getFlattenedSize() const; | 
|  | 350 | size_t getFdCount() const; | 
|  | 351 | status_t flatten(void*& buffer, size_t& size, int*& fds, size_t& count) const; | 
|  | 352 | status_t unflatten(void const*& buffer, size_t& size, int const*& fds, size_t& count); | 
| Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 353 |  | 
| Dan Stoza | 5065a55 | 2015-03-17 16:23:42 -0700 | [diff] [blame] | 354 | const Region& getSurfaceDamage() const { return surfaceDamage; } | 
|  | 355 | void setSurfaceDamage(const Region& damage) { surfaceDamage = damage; } | 
|  | 356 |  | 
| Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 357 | private: | 
| Pablo Ceballos | bd3577e | 2016-06-20 17:40:34 -0700 | [diff] [blame] | 358 | int64_t timestamp{0}; | 
|  | 359 | int isAutoTimestamp{0}; | 
|  | 360 | android_dataspace dataSpace{HAL_DATASPACE_UNKNOWN}; | 
| Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 361 | Rect crop; | 
| Pablo Ceballos | bd3577e | 2016-06-20 17:40:34 -0700 | [diff] [blame] | 362 | int scalingMode{0}; | 
|  | 363 | uint32_t transform{0}; | 
|  | 364 | uint32_t stickyTransform{0}; | 
| Jesse Hall | c777b0b | 2012-06-28 12:52:05 -0700 | [diff] [blame] | 365 | sp<Fence> fence; | 
| Dan Stoza | 5065a55 | 2015-03-17 16:23:42 -0700 | [diff] [blame] | 366 | Region surfaceDamage; | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 367 | bool getFrameTimestamps{false}; | 
| Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 368 | }; | 
|  | 369 |  | 
| Brian Anderson | baaad32 | 2016-07-22 15:55:13 -0700 | [diff] [blame] | 370 | struct QueueBufferOutput : public Flattenable<QueueBufferOutput> { | 
| Brian Anderson | 3d4039d | 2016-09-23 16:31:30 -0700 | [diff] [blame] | 371 | QueueBufferOutput() = default; | 
|  | 372 |  | 
|  | 373 | // Moveable. | 
|  | 374 | QueueBufferOutput(QueueBufferOutput&& src) = default; | 
|  | 375 | QueueBufferOutput& operator=(QueueBufferOutput&& src) = default; | 
|  | 376 | // Not copyable. | 
|  | 377 | QueueBufferOutput(const QueueBufferOutput& src) = delete; | 
|  | 378 | QueueBufferOutput& operator=(const QueueBufferOutput& src) = delete; | 
|  | 379 |  | 
| Brian Anderson | baaad32 | 2016-07-22 15:55:13 -0700 | [diff] [blame] | 380 | // Flattenable protocol | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 381 | static constexpr size_t minFlattenedSize(); | 
| Brian Anderson | baaad32 | 2016-07-22 15:55:13 -0700 | [diff] [blame] | 382 | size_t getFlattenedSize() const; | 
|  | 383 | size_t getFdCount() const; | 
|  | 384 | status_t flatten(void*& buffer, size_t& size, int*& fds, size_t& count) const; | 
|  | 385 | status_t unflatten(void const*& buffer, size_t& size, int const*& fds, size_t& count); | 
|  | 386 |  | 
| Pablo Ceballos | bd3577e | 2016-06-20 17:40:34 -0700 | [diff] [blame] | 387 | uint32_t width{0}; | 
|  | 388 | uint32_t height{0}; | 
|  | 389 | uint32_t transformHint{0}; | 
|  | 390 | uint32_t numPendingBuffers{0}; | 
| Pablo Ceballos | bc8c192 | 2016-07-01 14:15:41 -0700 | [diff] [blame] | 391 | uint64_t nextFrameNumber{0}; | 
| Brian Anderson | 7c3ba8a | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 392 | FrameEventHistoryDelta frameTimestamps; | 
| Shuzhen Wang | 22f842b | 2017-01-18 23:02:36 -0800 | [diff] [blame] | 393 | bool bufferReplaced{false}; | 
| Mathias Agopian | f0bc2f1 | 2012-04-09 16:14:01 -0700 | [diff] [blame] | 394 | }; | 
|  | 395 |  | 
| Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 396 | virtual status_t queueBuffer(int slot, const QueueBufferInput& input, | 
|  | 397 | QueueBufferOutput* output) = 0; | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 398 |  | 
|  | 399 | // cancelBuffer indicates that the client does not wish to fill in the | 
|  | 400 | // buffer associated with slot and transfers ownership of the slot back to | 
|  | 401 | // the server. | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 402 | // | 
|  | 403 | // The buffer is not queued for use by the consumer. | 
|  | 404 | // | 
| Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 405 | // The slot must be in the range of [0, NUM_BUFFER_SLOTS). | 
|  | 406 | // | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 407 | // The buffer will not be overwritten until the fence signals.  The fence | 
|  | 408 | // will usually be the one obtained from dequeueBuffer. | 
| Pablo Ceballos | 583b1b3 | 2015-09-03 18:23:52 -0700 | [diff] [blame] | 409 | // | 
|  | 410 | // Return of a value other than NO_ERROR means an error has occurred: | 
|  | 411 | // * NO_INIT - the buffer queue has been abandoned or the producer is not | 
|  | 412 | //             connected. | 
|  | 413 | // * BAD_VALUE - one of the below conditions occurred: | 
|  | 414 | //              * fence was NULL | 
|  | 415 | //              * slot index was out of range (see above). | 
|  | 416 | //              * the slot was not in the dequeued state | 
|  | 417 | virtual status_t cancelBuffer(int slot, const sp<Fence>& fence) = 0; | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 418 |  | 
| Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 419 | // query retrieves some information for this surface | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 420 | // 'what' tokens allowed are that of NATIVE_WINDOW_* in <window.h> | 
|  | 421 | // | 
|  | 422 | // Return of a value other than NO_ERROR means an error has occurred: | 
|  | 423 | // * NO_INIT - the buffer queue has been abandoned. | 
|  | 424 | // * BAD_VALUE - what was out of range | 
| Mathias Agopian | eafabcd | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 425 | virtual int query(int what, int* value) = 0; | 
| Mathias Agopian | 8072711 | 2011-05-02 19:51:12 -0700 | [diff] [blame] | 426 |  | 
| Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 427 | // connect attempts to connect a client API to the IGraphicBufferProducer. | 
|  | 428 | // This must be called before any other IGraphicBufferProducer methods are | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 429 | // called except for getAllocator. A consumer must be already connected. | 
| Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 430 | // | 
|  | 431 | // This method will fail if the connect was previously called on the | 
| Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 432 | // IGraphicBufferProducer and no corresponding disconnect call was made. | 
| Mathias Agopian | 5bfc245 | 2011-08-08 19:14:03 -0700 | [diff] [blame] | 433 | // | 
| Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 434 | // The listener is an optional binder callback object that can be used if | 
|  | 435 | // the producer wants to be notified when the consumer releases a buffer | 
|  | 436 | // back to the BufferQueue. It is also used to detect the death of the | 
|  | 437 | // producer. If only the latter functionality is desired, there is a | 
|  | 438 | // DummyProducerListener class in IProducerListener.h that can be used. | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 439 | // | 
|  | 440 | // The api should be one of the NATIVE_WINDOW_API_* values in <window.h> | 
|  | 441 | // | 
|  | 442 | // The producerControlledByApp should be set to true if the producer is hosted | 
|  | 443 | // by an untrusted process (typically app_process-forked processes). If both | 
|  | 444 | // the producer and the consumer are app-controlled then all buffer queues | 
|  | 445 | // will operate in async mode regardless of the async flag. | 
|  | 446 | // | 
|  | 447 | // Upon success, the output will be filled with meaningful data | 
|  | 448 | // (refer to QueueBufferOutput documentation above). | 
|  | 449 | // | 
|  | 450 | // Return of a value other than NO_ERROR means an error has occurred: | 
|  | 451 | // * NO_INIT - one of the following occurred: | 
|  | 452 | //             * the buffer queue was abandoned | 
|  | 453 | //             * no consumer has yet connected | 
|  | 454 | // * BAD_VALUE - one of the following has occurred: | 
|  | 455 | //             * the producer is already connected | 
|  | 456 | //             * api was out of range (see above). | 
| Igor Murashkin | 7ea777f | 2013-11-18 16:58:36 -0800 | [diff] [blame] | 457 | //             * output was NULL. | 
| Pablo Ceballos | 23b4abe | 2016-01-08 12:15:22 -0800 | [diff] [blame] | 458 | //             * Failure to adjust the number of available slots. This can | 
|  | 459 | //               happen because of trying to allocate/deallocate the async | 
|  | 460 | //               buffer in response to the value of producerControlledByApp. | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 461 | // * DEAD_OBJECT - the token is hosted by an already-dead process | 
|  | 462 | // | 
|  | 463 | // Additional negative errors may be returned by the internals, they | 
|  | 464 | // should be treated as opaque fatal unrecoverable errors. | 
| Dan Stoza | f0eaf25 | 2014-03-21 13:05:51 -0700 | [diff] [blame] | 465 | virtual status_t connect(const sp<IProducerListener>& listener, | 
| Mathias Agopian | 365857d | 2013-09-11 19:35:45 -0700 | [diff] [blame] | 466 | int api, bool producerControlledByApp, QueueBufferOutput* output) = 0; | 
| Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 467 |  | 
| Robert Carr | 97b9c86 | 2016-09-08 13:54:35 -0700 | [diff] [blame] | 468 | enum class DisconnectMode { | 
|  | 469 | // Disconnect only the specified API. | 
|  | 470 | Api, | 
|  | 471 | // Disconnect any API originally connected from the process calling disconnect. | 
|  | 472 | AllLocal | 
|  | 473 | }; | 
|  | 474 |  | 
| Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 475 | // disconnect attempts to disconnect a client API from the | 
|  | 476 | // IGraphicBufferProducer.  Calling this method will cause any subsequent | 
|  | 477 | // calls to other IGraphicBufferProducer methods to fail except for | 
|  | 478 | // getAllocator and connect.  Successfully calling connect after this will | 
|  | 479 | // allow the other methods to succeed again. | 
| Jamie Gennis | fe0a87b | 2011-07-13 19:12:20 -0700 | [diff] [blame] | 480 | // | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 481 | // The api should be one of the NATIVE_WINDOW_API_* values in <window.h> | 
|  | 482 | // | 
| Robert Carr | 97b9c86 | 2016-09-08 13:54:35 -0700 | [diff] [blame] | 483 | // Alternatively if mode is AllLocal, then the API value is ignored, and any API | 
|  | 484 | // connected from the same PID calling disconnect will be disconnected. | 
|  | 485 | // | 
| Igor Murashkin | 7d2d160 | 2013-11-12 18:02:20 -0800 | [diff] [blame] | 486 | // Disconnecting from an abandoned IGraphicBufferProducer is legal and | 
|  | 487 | // is considered a no-op. | 
|  | 488 | // | 
|  | 489 | // Return of a value other than NO_ERROR means an error has occurred: | 
|  | 490 | // * BAD_VALUE - one of the following has occurred: | 
|  | 491 | //             * the api specified does not match the one that was connected | 
|  | 492 | //             * api was out of range (see above). | 
|  | 493 | // * DEAD_OBJECT - the token is hosted by an already-dead process | 
| Robert Carr | 97b9c86 | 2016-09-08 13:54:35 -0700 | [diff] [blame] | 494 | virtual status_t disconnect(int api, DisconnectMode mode = DisconnectMode::Api) = 0; | 
| Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 495 |  | 
|  | 496 | // Attaches a sideband buffer stream to the IGraphicBufferProducer. | 
|  | 497 | // | 
|  | 498 | // A sideband stream is a device-specific mechanism for passing buffers | 
|  | 499 | // from the producer to the consumer without using dequeueBuffer/ | 
|  | 500 | // queueBuffer. If a sideband stream is present, the consumer can choose | 
|  | 501 | // whether to acquire buffers from the sideband stream or from the queued | 
|  | 502 | // buffers. | 
|  | 503 | // | 
|  | 504 | // Passing NULL or a different stream handle will detach the previous | 
|  | 505 | // handle if any. | 
|  | 506 | virtual status_t setSidebandStream(const sp<NativeHandle>& stream) = 0; | 
| Dan Stoza | 29a3e90 | 2014-06-20 13:13:57 -0700 | [diff] [blame] | 507 |  | 
|  | 508 | // Allocates buffers based on the given dimensions/format. | 
|  | 509 | // | 
|  | 510 | // This function will allocate up to the maximum number of buffers | 
|  | 511 | // permitted by the current BufferQueue configuration. It will use the | 
|  | 512 | // given format, dimensions, and usage bits, which are interpreted in the | 
|  | 513 | // same way as for dequeueBuffer, and the async flag must be set the same | 
|  | 514 | // way as for dequeueBuffer to ensure that the correct number of buffers are | 
|  | 515 | // allocated. This is most useful to avoid an allocation delay during | 
|  | 516 | // dequeueBuffer. If there are already the maximum number of buffers | 
|  | 517 | // allocated, this function has no effect. | 
| Pablo Ceballos | 567dbbb | 2015-08-26 18:59:08 -0700 | [diff] [blame] | 518 | virtual void allocateBuffers(uint32_t width, uint32_t height, | 
| Dan Stoza | 3be1c6b | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 519 | PixelFormat format, uint32_t usage) = 0; | 
| Dan Stoza | 9de7293 | 2015-04-16 17:28:43 -0700 | [diff] [blame] | 520 |  | 
|  | 521 | // Sets whether dequeueBuffer is allowed to allocate new buffers. | 
|  | 522 | // | 
|  | 523 | // Normally dequeueBuffer does not discriminate between free slots which | 
|  | 524 | // already have an allocated buffer and those which do not, and will | 
|  | 525 | // allocate a new buffer if the slot doesn't have a buffer or if the slot's | 
|  | 526 | // buffer doesn't match the requested size, format, or usage. This method | 
|  | 527 | // allows the producer to restrict the eligible slots to those which already | 
|  | 528 | // have an allocated buffer of the correct size, format, and usage. If no | 
|  | 529 | // eligible slot is available, dequeueBuffer will block or return an error | 
|  | 530 | // as usual. | 
|  | 531 | virtual status_t allowAllocation(bool allow) = 0; | 
| Dan Stoza | 812ed06 | 2015-06-02 15:45:22 -0700 | [diff] [blame] | 532 |  | 
|  | 533 | // Sets the current generation number of the BufferQueue. | 
|  | 534 | // | 
|  | 535 | // This generation number will be inserted into any buffers allocated by the | 
|  | 536 | // BufferQueue, and any attempts to attach a buffer with a different | 
|  | 537 | // generation number will fail. Buffers already in the queue are not | 
|  | 538 | // affected and will retain their current generation number. The generation | 
|  | 539 | // number defaults to 0. | 
|  | 540 | virtual status_t setGenerationNumber(uint32_t generationNumber) = 0; | 
| Dan Stoza | c6f30bd | 2015-06-08 09:32:50 -0700 | [diff] [blame] | 541 |  | 
|  | 542 | // Returns the name of the connected consumer. | 
|  | 543 | virtual String8 getConsumerName() const = 0; | 
| Dan Stoza | 7dde599 | 2015-05-22 09:51:44 -0700 | [diff] [blame] | 544 |  | 
| Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 545 | // Used to enable/disable shared buffer mode. | 
| Pablo Ceballos | ccdfd60 | 2015-10-07 15:05:45 -0700 | [diff] [blame] | 546 | // | 
| Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 547 | // When shared buffer mode is enabled the first buffer that is queued or | 
| Pablo Ceballos | 295a9fc | 2016-03-14 16:02:19 -0700 | [diff] [blame] | 548 | // dequeued will be cached and returned to all subsequent calls to | 
|  | 549 | // dequeueBuffer and acquireBuffer. This allows the producer and consumer to | 
|  | 550 | // simultaneously access the same buffer. | 
| Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 551 | virtual status_t setSharedBufferMode(bool sharedBufferMode) = 0; | 
| Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 552 |  | 
| Pablo Ceballos | ff95aab | 2016-01-13 17:09:58 -0800 | [diff] [blame] | 553 | // Used to enable/disable auto-refresh. | 
|  | 554 | // | 
| Pablo Ceballos | 3559fbf | 2016-03-17 15:50:23 -0700 | [diff] [blame] | 555 | // Auto refresh has no effect outside of shared buffer mode. In shared | 
| Pablo Ceballos | ff95aab | 2016-01-13 17:09:58 -0800 | [diff] [blame] | 556 | // buffer mode, when enabled, it indicates to the consumer that it should | 
|  | 557 | // attempt to acquire buffers even if it is not aware of any being | 
|  | 558 | // available. | 
|  | 559 | virtual status_t setAutoRefresh(bool autoRefresh) = 0; | 
|  | 560 |  | 
| Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 561 | // Sets how long dequeueBuffer will wait for a buffer to become available | 
|  | 562 | // before returning an error (TIMED_OUT). | 
|  | 563 | // | 
|  | 564 | // This timeout also affects the attachBuffer call, which will block if | 
|  | 565 | // there is not a free slot available into which the attached buffer can be | 
|  | 566 | // placed. | 
|  | 567 | // | 
|  | 568 | // By default, the BufferQueue will wait forever, which is indicated by a | 
|  | 569 | // timeout of -1. If set (to a value other than -1), this will disable | 
|  | 570 | // non-blocking mode and its corresponding spare buffer (which is used to | 
|  | 571 | // ensure a buffer is always available). | 
| Pablo Ceballos | 23b4abe | 2016-01-08 12:15:22 -0800 | [diff] [blame] | 572 | // | 
|  | 573 | // Return of a value other than NO_ERROR means an error has occurred: | 
|  | 574 | // * BAD_VALUE - Failure to adjust the number of available slots. This can | 
|  | 575 | //               happen because of trying to allocate/deallocate the async | 
|  | 576 | //               buffer. | 
| Dan Stoza | 127fc63 | 2015-06-30 13:43:32 -0700 | [diff] [blame] | 577 | virtual status_t setDequeueTimeout(nsecs_t timeout) = 0; | 
| Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 578 |  | 
|  | 579 | // Returns the last queued buffer along with a fence which must signal | 
|  | 580 | // before the contents of the buffer are read. If there are no buffers in | 
|  | 581 | // the queue, outBuffer will be populated with nullptr and outFence will be | 
|  | 582 | // populated with Fence::NO_FENCE | 
|  | 583 | // | 
| John Reck | 1a61da5 | 2016-04-28 13:18:15 -0700 | [diff] [blame] | 584 | // outTransformMatrix is not modified if outBuffer is null. | 
|  | 585 | // | 
| Dan Stoza | 50101d0 | 2016-04-07 16:53:23 -0700 | [diff] [blame] | 586 | // Returns NO_ERROR or the status of the Binder transaction | 
|  | 587 | virtual status_t getLastQueuedBuffer(sp<GraphicBuffer>* outBuffer, | 
| John Reck | 1a61da5 | 2016-04-28 13:18:15 -0700 | [diff] [blame] | 588 | sp<Fence>* outFence, float outTransformMatrix[16]) = 0; | 
| Pablo Ceballos | ce796e7 | 2016-02-04 19:10:51 -0800 | [diff] [blame] | 589 |  | 
| Brian Anderson | 3890c39 | 2016-07-25 12:48:08 -0700 | [diff] [blame] | 590 | // Gets the frame events that haven't already been retrieved. | 
|  | 591 | virtual void getFrameTimestamps(FrameEventHistoryDelta* /*outDelta*/) {} | 
| Pablo Ceballos | 0ade247 | 2016-06-30 16:48:02 -0700 | [diff] [blame] | 592 |  | 
| Pablo Ceballos | 8e3e92b | 2016-06-27 17:56:53 -0700 | [diff] [blame] | 593 | // Returns a unique id for this BufferQueue | 
|  | 594 | virtual status_t getUniqueId(uint64_t* outId) const = 0; | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 595 | }; | 
|  | 596 |  | 
|  | 597 | // ---------------------------------------------------------------------------- | 
|  | 598 |  | 
| Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 599 | class BnGraphicBufferProducer : public BnInterface<IGraphicBufferProducer> | 
| Jamie Gennis | 8ba32fa | 2010-12-20 11:27:26 -0800 | [diff] [blame] | 600 | { | 
|  | 601 | public: | 
|  | 602 | virtual status_t    onTransact( uint32_t code, | 
|  | 603 | const Parcel& data, | 
|  | 604 | Parcel* reply, | 
|  | 605 | uint32_t flags = 0); | 
|  | 606 | }; | 
|  | 607 |  | 
|  | 608 | // ---------------------------------------------------------------------------- | 
|  | 609 | }; // namespace android | 
|  | 610 |  | 
| Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 611 | #endif // ANDROID_GUI_IGRAPHICBUFFERPRODUCER_H |