Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ANDROID_SERVERS_CAMERA3_OUTPUT_STREAM_H |
| 18 | #define ANDROID_SERVERS_CAMERA3_OUTPUT_STREAM_H |
| 19 | |
| 20 | #include <utils/RefBase.h> |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 21 | #include <gui/IProducerListener.h> |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 22 | #include <gui/Surface.h> |
| 23 | |
| 24 | #include "Camera3Stream.h" |
Igor Murashkin | e3a9f96 | 2013-05-08 18:03:15 -0700 | [diff] [blame] | 25 | #include "Camera3IOStreamBase.h" |
Igor Murashkin | 2fba584 | 2013-04-22 14:03:54 -0700 | [diff] [blame] | 26 | #include "Camera3OutputStreamInterface.h" |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 27 | #include "Camera3BufferManager.h" |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 28 | |
| 29 | namespace android { |
| 30 | |
| 31 | namespace camera3 { |
| 32 | |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 33 | class Camera3BufferManager; |
| 34 | |
| 35 | /** |
| 36 | * Stream info structure that holds the necessary stream info for buffer manager to use for |
| 37 | * buffer allocation and management. |
| 38 | */ |
| 39 | struct StreamInfo { |
| 40 | int streamId; |
| 41 | int streamSetId; |
| 42 | uint32_t width; |
| 43 | uint32_t height; |
| 44 | uint32_t format; |
| 45 | android_dataspace dataSpace; |
| 46 | uint32_t combinedUsage; |
| 47 | size_t totalBufferCount; |
| 48 | bool isConfigured; |
Chih-Hung Hsieh | d19d994 | 2016-08-29 14:21:14 -0700 | [diff] [blame^] | 49 | explicit StreamInfo(int id = CAMERA3_STREAM_ID_INVALID, |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 50 | int setId = CAMERA3_STREAM_SET_ID_INVALID, |
| 51 | uint32_t w = 0, |
| 52 | uint32_t h = 0, |
| 53 | uint32_t fmt = 0, |
| 54 | android_dataspace ds = HAL_DATASPACE_UNKNOWN, |
| 55 | uint32_t usage = 0, |
| 56 | size_t bufferCount = 0, |
| 57 | bool configured = false) : |
| 58 | streamId(id), |
| 59 | streamSetId(setId), |
| 60 | width(w), |
| 61 | height(h), |
| 62 | format(fmt), |
| 63 | dataSpace(ds), |
| 64 | combinedUsage(usage), |
| 65 | totalBufferCount(bufferCount), |
| 66 | isConfigured(configured){} |
| 67 | }; |
| 68 | |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 69 | /** |
| 70 | * A class for managing a single stream of output data from the camera device. |
| 71 | */ |
Igor Murashkin | 2fba584 | 2013-04-22 14:03:54 -0700 | [diff] [blame] | 72 | class Camera3OutputStream : |
Igor Murashkin | e3a9f96 | 2013-05-08 18:03:15 -0700 | [diff] [blame] | 73 | public Camera3IOStreamBase, |
Igor Murashkin | 2fba584 | 2013-04-22 14:03:54 -0700 | [diff] [blame] | 74 | public Camera3OutputStreamInterface { |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 75 | public: |
| 76 | /** |
| 77 | * Set up a stream for formats that have 2 dimensions, such as RAW and YUV. |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 78 | * A valid stream set id needs to be set to support buffer sharing between multiple |
| 79 | * streams. |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 80 | */ |
Eino-Ville Talvala | 727d172 | 2015-06-09 13:44:19 -0700 | [diff] [blame] | 81 | Camera3OutputStream(int id, sp<Surface> consumer, |
Eino-Ville Talvala | 3d82c0d | 2015-02-23 15:19:19 -0800 | [diff] [blame] | 82 | uint32_t width, uint32_t height, int format, |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 83 | android_dataspace dataSpace, camera3_stream_rotation_t rotation, |
Shuzhen Wang | c28dccc | 2016-02-11 23:48:46 -0800 | [diff] [blame] | 84 | nsecs_t timestampOffset, int setId = CAMERA3_STREAM_SET_ID_INVALID); |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 85 | |
| 86 | /** |
| 87 | * Set up a stream for formats that have a variable buffer size for the same |
| 88 | * dimensions, such as compressed JPEG. |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 89 | * A valid stream set id needs to be set to support buffer sharing between multiple |
| 90 | * streams. |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 91 | */ |
Eino-Ville Talvala | 727d172 | 2015-06-09 13:44:19 -0700 | [diff] [blame] | 92 | Camera3OutputStream(int id, sp<Surface> consumer, |
Eino-Ville Talvala | 3d82c0d | 2015-02-23 15:19:19 -0800 | [diff] [blame] | 93 | uint32_t width, uint32_t height, size_t maxSize, int format, |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 94 | android_dataspace dataSpace, camera3_stream_rotation_t rotation, |
Shuzhen Wang | c28dccc | 2016-02-11 23:48:46 -0800 | [diff] [blame] | 95 | nsecs_t timestampOffset, int setId = CAMERA3_STREAM_SET_ID_INVALID); |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 96 | |
| 97 | virtual ~Camera3OutputStream(); |
| 98 | |
| 99 | /** |
| 100 | * Camera3Stream interface |
| 101 | */ |
| 102 | |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 103 | virtual void dump(int fd, const Vector<String16> &args) const; |
| 104 | |
| 105 | /** |
| 106 | * Set the transform on the output stream; one of the |
| 107 | * HAL_TRANSFORM_* / NATIVE_WINDOW_TRANSFORM_* constants. |
| 108 | */ |
| 109 | status_t setTransform(int transform); |
| 110 | |
Chien-Yu Chen | 85a6455 | 2015-08-28 15:46:12 -0700 | [diff] [blame] | 111 | /** |
| 112 | * Return if this output stream is for video encoding. |
| 113 | */ |
| 114 | bool isVideoStream() const; |
Shuzhen Wang | 13a6963 | 2016-01-26 09:51:07 -0800 | [diff] [blame] | 115 | /** |
| 116 | * Return if this output stream is consumed by hardware composer. |
| 117 | */ |
| 118 | bool isConsumedByHWComposer() const; |
Chien-Yu Chen | 85a6455 | 2015-08-28 15:46:12 -0700 | [diff] [blame] | 119 | |
Zhijun He | f81b009 | 2016-08-02 00:58:11 -0700 | [diff] [blame] | 120 | /** |
| 121 | * Return if this output stream is consumed by hardware texture. |
| 122 | */ |
| 123 | bool isConsumedByHWTexture() const; |
| 124 | |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 125 | class BufferReleasedListener : public BnProducerListener { |
| 126 | public: |
| 127 | BufferReleasedListener(wp<Camera3OutputStream> parent) : mParent(parent) {} |
| 128 | |
| 129 | /** |
| 130 | * Implementation of IProducerListener, used to notify this stream that the consumer |
| 131 | * has returned a buffer and it is ready to return to Camera3BufferManager for reuse. |
| 132 | */ |
| 133 | virtual void onBufferReleased(); |
| 134 | |
| 135 | private: |
| 136 | wp<Camera3OutputStream> mParent; |
| 137 | }; |
| 138 | |
Eino-Ville Talvala | 77c1a35 | 2016-06-13 12:32:43 -0700 | [diff] [blame] | 139 | virtual status_t detachBuffer(sp<GraphicBuffer>* buffer, int* fenceFd); |
| 140 | |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 141 | /** |
| 142 | * Set the graphic buffer manager to get/return the stream buffers. |
| 143 | * |
| 144 | * It is only legal to call this method when stream is in STATE_CONSTRUCTED state. |
| 145 | */ |
| 146 | status_t setBufferManager(sp<Camera3BufferManager> bufferManager); |
| 147 | |
Igor Murashkin | e3a9f96 | 2013-05-08 18:03:15 -0700 | [diff] [blame] | 148 | protected: |
| 149 | Camera3OutputStream(int id, camera3_stream_type_t type, |
Eino-Ville Talvala | 3d82c0d | 2015-02-23 15:19:19 -0800 | [diff] [blame] | 150 | uint32_t width, uint32_t height, int format, |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 151 | android_dataspace dataSpace, camera3_stream_rotation_t rotation, |
| 152 | int setId = CAMERA3_STREAM_SET_ID_INVALID); |
Igor Murashkin | e3a9f96 | 2013-05-08 18:03:15 -0700 | [diff] [blame] | 153 | |
Zhijun He | 124ccf4 | 2013-05-22 14:01:30 -0700 | [diff] [blame] | 154 | /** |
| 155 | * Note that we release the lock briefly in this function |
| 156 | */ |
Igor Murashkin | e3a9f96 | 2013-05-08 18:03:15 -0700 | [diff] [blame] | 157 | virtual status_t returnBufferCheckedLocked( |
| 158 | const camera3_stream_buffer &buffer, |
| 159 | nsecs_t timestamp, |
| 160 | bool output, |
| 161 | /*out*/ |
| 162 | sp<Fence> *releaseFenceOut); |
| 163 | |
Zhijun He | 0a21051 | 2014-07-24 13:45:15 -0700 | [diff] [blame] | 164 | virtual status_t disconnectLocked(); |
| 165 | |
Eino-Ville Talvala | 727d172 | 2015-06-09 13:44:19 -0700 | [diff] [blame] | 166 | sp<Surface> mConsumer; |
Igor Murashkin | e3a9f96 | 2013-05-08 18:03:15 -0700 | [diff] [blame] | 167 | private: |
Zhijun He | f81b009 | 2016-08-02 00:58:11 -0700 | [diff] [blame] | 168 | |
| 169 | static const nsecs_t kDequeueBufferTimeout = 1000000000; // 1 sec |
| 170 | |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 171 | int mTransform; |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 172 | |
Igor Murashkin | e3a9f96 | 2013-05-08 18:03:15 -0700 | [diff] [blame] | 173 | virtual status_t setTransformLocked(int transform); |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 174 | |
Ruchit Sharma | e0711f2 | 2014-08-18 13:48:24 -0400 | [diff] [blame] | 175 | bool mTraceFirstBuffer; |
| 176 | |
Eino-Ville Talvala | 727d172 | 2015-06-09 13:44:19 -0700 | [diff] [blame] | 177 | // Name of Surface consumer |
| 178 | String8 mConsumerName; |
| 179 | |
Shuzhen Wang | c28dccc | 2016-02-11 23:48:46 -0800 | [diff] [blame] | 180 | // Whether consumer assumes MONOTONIC timestamp |
| 181 | bool mUseMonoTimestamp; |
Shuzhen Wang | 13a6963 | 2016-01-26 09:51:07 -0800 | [diff] [blame] | 182 | |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 183 | /** |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 184 | * GraphicBuffer manager this stream is registered to. Used to replace the buffer |
| 185 | * allocation/deallocation role of BufferQueue. |
| 186 | */ |
| 187 | sp<Camera3BufferManager> mBufferManager; |
| 188 | |
| 189 | /** |
| 190 | * Buffer released listener, used to notify the buffer manager that a buffer is released |
| 191 | * from consumer side. |
| 192 | */ |
| 193 | sp<BufferReleasedListener> mBufferReleasedListener; |
| 194 | |
| 195 | /** |
| 196 | * Flag indicating if the buffer manager is used to allocate the stream buffers |
| 197 | */ |
| 198 | bool mUseBufferManager; |
Shuzhen Wang | c28dccc | 2016-02-11 23:48:46 -0800 | [diff] [blame] | 199 | |
| 200 | /** |
| 201 | * Timestamp offset for video and hardware composer consumed streams |
| 202 | */ |
| 203 | nsecs_t mTimestampOffset; |
| 204 | |
Zhijun He | 125684a | 2015-12-26 15:07:30 -0800 | [diff] [blame] | 205 | /** |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 206 | * Internal Camera3Stream interface |
| 207 | */ |
| 208 | virtual status_t getBufferLocked(camera3_stream_buffer *buffer); |
| 209 | virtual status_t returnBufferLocked( |
| 210 | const camera3_stream_buffer &buffer, |
| 211 | nsecs_t timestamp); |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 212 | |
| 213 | virtual status_t configureQueueLocked(); |
Eino-Ville Talvala | b2f5b19 | 2013-07-30 14:36:03 -0700 | [diff] [blame] | 214 | |
Eino-Ville Talvala | 4d44cad | 2015-04-11 13:15:45 -0700 | [diff] [blame] | 215 | virtual status_t getEndpointUsage(uint32_t *usage) const; |
Eino-Ville Talvala | b2f5b19 | 2013-07-30 14:36:03 -0700 | [diff] [blame] | 216 | |
Eino-Ville Talvala | fd58f1a | 2013-03-06 16:20:06 -0800 | [diff] [blame] | 217 | }; // class Camera3OutputStream |
| 218 | |
| 219 | } // namespace camera3 |
| 220 | |
| 221 | } // namespace android |
| 222 | |
| 223 | #endif |