Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | //#define LOG_NDEBUG 0 |
| 18 | #define LOG_TAG "CCodec" |
| 19 | #include <utils/Log.h> |
| 20 | |
| 21 | #include <sstream> |
| 22 | #include <thread> |
| 23 | |
| 24 | #include <C2Config.h> |
| 25 | #include <C2Debug.h> |
| 26 | #include <C2ParamInternal.h> |
| 27 | #include <C2PlatformSupport.h> |
| 28 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 29 | #include <android/IOMXBufferSource.h> |
Pawin Vongmasa | bf69de9 | 2019-10-29 06:21:27 -0700 | [diff] [blame] | 30 | #include <android/hardware/media/c2/1.0/IInputSurface.h> |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 31 | #include <android/hardware/media/omx/1.0/IGraphicBufferSource.h> |
| 32 | #include <android/hardware/media/omx/1.0/IOmx.h> |
| 33 | #include <android-base/stringprintf.h> |
| 34 | #include <cutils/properties.h> |
| 35 | #include <gui/IGraphicBufferProducer.h> |
| 36 | #include <gui/Surface.h> |
| 37 | #include <gui/bufferqueue/1.0/H2BGraphicBufferProducer.h> |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 38 | #include <media/omx/1.0/WOmxNode.h> |
| 39 | #include <media/openmax/OMX_Core.h> |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 40 | #include <media/openmax/OMX_IndexExt.h> |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 41 | #include <media/stagefright/omx/1.0/WGraphicBufferSource.h> |
| 42 | #include <media/stagefright/omx/OmxGraphicBufferSource.h> |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 43 | #include <media/stagefright/CCodec.h> |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 44 | #include <media/stagefright/BufferProducerWrapper.h> |
| 45 | #include <media/stagefright/MediaCodecConstants.h> |
| 46 | #include <media/stagefright/PersistentSurface.h> |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 47 | |
| 48 | #include "C2OMXNode.h" |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 49 | #include "CCodecBufferChannel.h" |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 50 | #include "CCodecConfig.h" |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 51 | #include "Codec2Mapper.h" |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 52 | #include "InputSurfaceWrapper.h" |
| 53 | |
| 54 | extern "C" android::PersistentSurface *CreateInputSurface(); |
| 55 | |
| 56 | namespace android { |
| 57 | |
| 58 | using namespace std::chrono_literals; |
| 59 | using ::android::hardware::graphics::bufferqueue::V1_0::utils::H2BGraphicBufferProducer; |
| 60 | using android::base::StringPrintf; |
Pawin Vongmasa | d0f0e14 | 2018-11-15 03:36:28 -0800 | [diff] [blame] | 61 | using ::android::hardware::media::c2::V1_0::IInputSurface; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 62 | |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 63 | typedef hardware::media::omx::V1_0::IGraphicBufferSource HGraphicBufferSource; |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 64 | typedef CCodecConfig Config; |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 65 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 66 | namespace { |
| 67 | |
| 68 | class CCodecWatchdog : public AHandler { |
| 69 | private: |
| 70 | enum { |
| 71 | kWhatWatch, |
| 72 | }; |
| 73 | constexpr static int64_t kWatchIntervalUs = 3300000; // 3.3 secs |
| 74 | |
| 75 | public: |
| 76 | static sp<CCodecWatchdog> getInstance() { |
| 77 | static sp<CCodecWatchdog> instance(new CCodecWatchdog); |
| 78 | static std::once_flag flag; |
| 79 | // Call Init() only once. |
| 80 | std::call_once(flag, Init, instance); |
| 81 | return instance; |
| 82 | } |
| 83 | |
| 84 | ~CCodecWatchdog() = default; |
| 85 | |
| 86 | void watch(sp<CCodec> codec) { |
| 87 | bool shouldPost = false; |
| 88 | { |
| 89 | Mutexed<std::set<wp<CCodec>>>::Locked codecs(mCodecsToWatch); |
| 90 | // If a watch message is in flight, piggy-back this instance as well. |
| 91 | // Otherwise, post a new watch message. |
| 92 | shouldPost = codecs->empty(); |
| 93 | codecs->emplace(codec); |
| 94 | } |
| 95 | if (shouldPost) { |
| 96 | ALOGV("posting watch message"); |
| 97 | (new AMessage(kWhatWatch, this))->post(kWatchIntervalUs); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | protected: |
| 102 | void onMessageReceived(const sp<AMessage> &msg) { |
| 103 | switch (msg->what()) { |
| 104 | case kWhatWatch: { |
| 105 | Mutexed<std::set<wp<CCodec>>>::Locked codecs(mCodecsToWatch); |
| 106 | ALOGV("watch for %zu codecs", codecs->size()); |
| 107 | for (auto it = codecs->begin(); it != codecs->end(); ++it) { |
| 108 | sp<CCodec> codec = it->promote(); |
| 109 | if (codec == nullptr) { |
| 110 | continue; |
| 111 | } |
| 112 | codec->initiateReleaseIfStuck(); |
| 113 | } |
| 114 | codecs->clear(); |
| 115 | break; |
| 116 | } |
| 117 | |
| 118 | default: { |
| 119 | TRESPASS("CCodecWatchdog: unrecognized message"); |
| 120 | } |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | private: |
| 125 | CCodecWatchdog() : mLooper(new ALooper) {} |
| 126 | |
| 127 | static void Init(const sp<CCodecWatchdog> &thiz) { |
| 128 | ALOGV("Init"); |
| 129 | thiz->mLooper->setName("CCodecWatchdog"); |
| 130 | thiz->mLooper->registerHandler(thiz); |
| 131 | thiz->mLooper->start(); |
| 132 | } |
| 133 | |
| 134 | sp<ALooper> mLooper; |
| 135 | |
| 136 | Mutexed<std::set<wp<CCodec>>> mCodecsToWatch; |
| 137 | }; |
| 138 | |
| 139 | class C2InputSurfaceWrapper : public InputSurfaceWrapper { |
| 140 | public: |
| 141 | explicit C2InputSurfaceWrapper( |
| 142 | const std::shared_ptr<Codec2Client::InputSurface> &surface) : |
| 143 | mSurface(surface) { |
| 144 | } |
| 145 | |
| 146 | ~C2InputSurfaceWrapper() override = default; |
| 147 | |
| 148 | status_t connect(const std::shared_ptr<Codec2Client::Component> &comp) override { |
| 149 | if (mConnection != nullptr) { |
| 150 | return ALREADY_EXISTS; |
| 151 | } |
Pawin Vongmasa | 1c75a23 | 2019-01-09 04:41:52 -0800 | [diff] [blame] | 152 | return toStatusT(comp->connectToInputSurface(mSurface, &mConnection)); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | void disconnect() override { |
| 156 | if (mConnection != nullptr) { |
| 157 | mConnection->disconnect(); |
| 158 | mConnection = nullptr; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | status_t start() override { |
| 163 | // InputSurface does not distinguish started state |
| 164 | return OK; |
| 165 | } |
| 166 | |
| 167 | status_t signalEndOfInputStream() override { |
| 168 | C2InputSurfaceEosTuning eos(true); |
| 169 | std::vector<std::unique_ptr<C2SettingResult>> failures; |
Pawin Vongmasa | 1c75a23 | 2019-01-09 04:41:52 -0800 | [diff] [blame] | 170 | c2_status_t err = mSurface->config({&eos}, C2_MAY_BLOCK, &failures); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 171 | if (err != C2_OK) { |
| 172 | return UNKNOWN_ERROR; |
| 173 | } |
| 174 | return OK; |
| 175 | } |
| 176 | |
| 177 | status_t configure(Config &config __unused) { |
| 178 | // TODO |
| 179 | return OK; |
| 180 | } |
| 181 | |
| 182 | private: |
| 183 | std::shared_ptr<Codec2Client::InputSurface> mSurface; |
| 184 | std::shared_ptr<Codec2Client::InputSurfaceConnection> mConnection; |
| 185 | }; |
| 186 | |
| 187 | class GraphicBufferSourceWrapper : public InputSurfaceWrapper { |
| 188 | public: |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 189 | typedef hardware::media::omx::V1_0::Status OmxStatus; |
| 190 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 191 | GraphicBufferSourceWrapper( |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 192 | const sp<HGraphicBufferSource> &source, |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 193 | uint32_t width, |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 194 | uint32_t height, |
| 195 | uint64_t usage) |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 196 | : mSource(source), mWidth(width), mHeight(height) { |
| 197 | mDataSpace = HAL_DATASPACE_BT709; |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 198 | mConfig.mUsage = usage; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 199 | } |
| 200 | ~GraphicBufferSourceWrapper() override = default; |
| 201 | |
| 202 | status_t connect(const std::shared_ptr<Codec2Client::Component> &comp) override { |
| 203 | mNode = new C2OMXNode(comp); |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 204 | mOmxNode = new hardware::media::omx::V1_0::utils::TWOmxNode(mNode); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 205 | mNode->setFrameSize(mWidth, mHeight); |
| 206 | |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 207 | // Usage is queried during configure(), so setting it beforehand. |
| 208 | OMX_U32 usage = mConfig.mUsage & 0xFFFFFFFF; |
| 209 | (void)mNode->setParameter( |
| 210 | (OMX_INDEXTYPE)OMX_IndexParamConsumerUsageBits, |
| 211 | &usage, sizeof(usage)); |
| 212 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 213 | // NOTE: we do not use/pass through color aspects from GraphicBufferSource as we |
| 214 | // communicate that directly to the component. |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 215 | mSource->configure( |
| 216 | mOmxNode, static_cast<hardware::graphics::common::V1_0::Dataspace>(mDataSpace)); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 217 | return OK; |
| 218 | } |
| 219 | |
| 220 | void disconnect() override { |
| 221 | if (mNode == nullptr) { |
| 222 | return; |
| 223 | } |
| 224 | sp<IOMXBufferSource> source = mNode->getSource(); |
| 225 | if (source == nullptr) { |
| 226 | ALOGD("GBSWrapper::disconnect: node is not configured with OMXBufferSource."); |
| 227 | return; |
| 228 | } |
| 229 | source->onOmxIdle(); |
| 230 | source->onOmxLoaded(); |
| 231 | mNode.clear(); |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 232 | mOmxNode.clear(); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 233 | } |
| 234 | |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 235 | status_t GetStatus(hardware::Return<OmxStatus> &&status) { |
| 236 | if (status.isOk()) { |
| 237 | return static_cast<status_t>(status.withDefault(OmxStatus::UNKNOWN_ERROR)); |
| 238 | } else if (status.isDeadObject()) { |
| 239 | return DEAD_OBJECT; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 240 | } |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 241 | return UNKNOWN_ERROR; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | status_t start() override { |
| 245 | sp<IOMXBufferSource> source = mNode->getSource(); |
| 246 | if (source == nullptr) { |
| 247 | return NO_INIT; |
| 248 | } |
Taehwan Kim | 8b3bcdd | 2020-11-26 22:40:40 +0900 | [diff] [blame] | 249 | |
Wonsik Kim | 0f6b61d | 2021-01-05 18:55:22 -0800 | [diff] [blame] | 250 | size_t numSlots = 16; |
| 251 | // WORKAROUND: having more slots improve performance while consuming |
| 252 | // more memory. This is a temporary workaround to reduce memory for |
| 253 | // larger-than-4K scenario. |
| 254 | if (mWidth * mHeight > 4096 * 2340) { |
| 255 | constexpr OMX_U32 kPortIndexInput = 0; |
Taehwan Kim | 8b3bcdd | 2020-11-26 22:40:40 +0900 | [diff] [blame] | 256 | |
Wonsik Kim | 0f6b61d | 2021-01-05 18:55:22 -0800 | [diff] [blame] | 257 | OMX_PARAM_PORTDEFINITIONTYPE param; |
| 258 | param.nPortIndex = kPortIndexInput; |
| 259 | status_t err = mNode->getParameter(OMX_IndexParamPortDefinition, |
| 260 | ¶m, sizeof(param)); |
| 261 | if (err == OK) { |
| 262 | numSlots = param.nBufferCountActual; |
| 263 | } |
Taehwan Kim | 8b3bcdd | 2020-11-26 22:40:40 +0900 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | for (size_t i = 0; i < numSlots; ++i) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 267 | source->onInputBufferAdded(i); |
| 268 | } |
| 269 | |
| 270 | source->onOmxExecuting(); |
| 271 | return OK; |
| 272 | } |
| 273 | |
| 274 | status_t signalEndOfInputStream() override { |
| 275 | return GetStatus(mSource->signalEndOfInputStream()); |
| 276 | } |
| 277 | |
| 278 | status_t configure(Config &config) { |
| 279 | std::stringstream status; |
| 280 | status_t err = OK; |
| 281 | |
| 282 | // handle each configuration granually, in case we need to handle part of the configuration |
| 283 | // elsewhere |
| 284 | |
| 285 | // TRICKY: we do not unset frame delay repeating |
| 286 | if (config.mMinFps > 0 && config.mMinFps != mConfig.mMinFps) { |
| 287 | int64_t us = 1e6 / config.mMinFps + 0.5; |
| 288 | status_t res = GetStatus(mSource->setRepeatPreviousFrameDelayUs(us)); |
| 289 | status << " minFps=" << config.mMinFps << " => repeatDelayUs=" << us; |
| 290 | if (res != OK) { |
| 291 | status << " (=> " << asString(res) << ")"; |
| 292 | err = res; |
| 293 | } |
| 294 | mConfig.mMinFps = config.mMinFps; |
| 295 | } |
| 296 | |
| 297 | // pts gap |
| 298 | if (config.mMinAdjustedFps > 0 || config.mFixedAdjustedFps > 0) { |
| 299 | if (mNode != nullptr) { |
| 300 | OMX_PARAM_U32TYPE ptrGapParam = {}; |
| 301 | ptrGapParam.nSize = sizeof(OMX_PARAM_U32TYPE); |
Wonsik Kim | 95ba016 | 2019-03-19 15:51:54 -0700 | [diff] [blame] | 302 | float gap = (config.mMinAdjustedFps > 0) |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 303 | ? c2_min(INT32_MAX + 0., 1e6 / config.mMinAdjustedFps + 0.5) |
| 304 | : c2_max(0. - INT32_MAX, -1e6 / config.mFixedAdjustedFps - 0.5); |
Wonsik Kim | 95ba016 | 2019-03-19 15:51:54 -0700 | [diff] [blame] | 305 | // float -> uint32_t is undefined if the value is negative. |
| 306 | // First convert to int32_t to ensure the expected behavior. |
| 307 | ptrGapParam.nU32 = int32_t(gap); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 308 | (void)mNode->setParameter( |
| 309 | (OMX_INDEXTYPE)OMX_IndexParamMaxFrameDurationForBitrateControl, |
| 310 | &ptrGapParam, sizeof(ptrGapParam)); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | // max fps |
| 315 | // TRICKY: we do not unset max fps to 0 unless using fixed fps |
Wonsik Kim | 95ba016 | 2019-03-19 15:51:54 -0700 | [diff] [blame] | 316 | if ((config.mMaxFps > 0 || (config.mFixedAdjustedFps > 0 && config.mMaxFps == -1)) |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 317 | && config.mMaxFps != mConfig.mMaxFps) { |
| 318 | status_t res = GetStatus(mSource->setMaxFps(config.mMaxFps)); |
| 319 | status << " maxFps=" << config.mMaxFps; |
| 320 | if (res != OK) { |
| 321 | status << " (=> " << asString(res) << ")"; |
| 322 | err = res; |
| 323 | } |
| 324 | mConfig.mMaxFps = config.mMaxFps; |
| 325 | } |
| 326 | |
| 327 | if (config.mTimeOffsetUs != mConfig.mTimeOffsetUs) { |
| 328 | status_t res = GetStatus(mSource->setTimeOffsetUs(config.mTimeOffsetUs)); |
| 329 | status << " timeOffset " << config.mTimeOffsetUs << "us"; |
| 330 | if (res != OK) { |
| 331 | status << " (=> " << asString(res) << ")"; |
| 332 | err = res; |
| 333 | } |
| 334 | mConfig.mTimeOffsetUs = config.mTimeOffsetUs; |
| 335 | } |
| 336 | |
| 337 | if (config.mCaptureFps != mConfig.mCaptureFps || config.mCodedFps != mConfig.mCodedFps) { |
| 338 | status_t res = |
| 339 | GetStatus(mSource->setTimeLapseConfig(config.mCodedFps, config.mCaptureFps)); |
| 340 | status << " timeLapse " << config.mCaptureFps << "fps as " << config.mCodedFps << "fps"; |
| 341 | if (res != OK) { |
| 342 | status << " (=> " << asString(res) << ")"; |
| 343 | err = res; |
| 344 | } |
| 345 | mConfig.mCaptureFps = config.mCaptureFps; |
| 346 | mConfig.mCodedFps = config.mCodedFps; |
| 347 | } |
| 348 | |
| 349 | if (config.mStartAtUs != mConfig.mStartAtUs |
| 350 | || (config.mStopped != mConfig.mStopped && !config.mStopped)) { |
| 351 | status_t res = GetStatus(mSource->setStartTimeUs(config.mStartAtUs)); |
| 352 | status << " start at " << config.mStartAtUs << "us"; |
| 353 | if (res != OK) { |
| 354 | status << " (=> " << asString(res) << ")"; |
| 355 | err = res; |
| 356 | } |
| 357 | mConfig.mStartAtUs = config.mStartAtUs; |
| 358 | mConfig.mStopped = config.mStopped; |
| 359 | } |
| 360 | |
| 361 | // suspend-resume |
| 362 | if (config.mSuspended != mConfig.mSuspended) { |
| 363 | status_t res = GetStatus(mSource->setSuspend(config.mSuspended, config.mSuspendAtUs)); |
| 364 | status << " " << (config.mSuspended ? "suspend" : "resume") |
| 365 | << " at " << config.mSuspendAtUs << "us"; |
| 366 | if (res != OK) { |
| 367 | status << " (=> " << asString(res) << ")"; |
| 368 | err = res; |
| 369 | } |
| 370 | mConfig.mSuspended = config.mSuspended; |
| 371 | mConfig.mSuspendAtUs = config.mSuspendAtUs; |
| 372 | } |
| 373 | |
| 374 | if (config.mStopped != mConfig.mStopped && config.mStopped) { |
| 375 | status_t res = GetStatus(mSource->setStopTimeUs(config.mStopAtUs)); |
| 376 | status << " stop at " << config.mStopAtUs << "us"; |
| 377 | if (res != OK) { |
| 378 | status << " (=> " << asString(res) << ")"; |
| 379 | err = res; |
| 380 | } else { |
| 381 | status << " delayUs"; |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 382 | hardware::Return<void> trans = mSource->getStopTimeOffsetUs( |
| 383 | [&res, &delayUs = config.mInputDelayUs]( |
| 384 | auto status, auto stopTimeOffsetUs) { |
| 385 | res = static_cast<status_t>(status); |
| 386 | delayUs = stopTimeOffsetUs; |
| 387 | }); |
| 388 | if (!trans.isOk()) { |
| 389 | res = trans.isDeadObject() ? DEAD_OBJECT : UNKNOWN_ERROR; |
| 390 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 391 | if (res != OK) { |
| 392 | status << " (=> " << asString(res) << ")"; |
| 393 | } else { |
| 394 | status << "=" << config.mInputDelayUs << "us"; |
| 395 | } |
| 396 | mConfig.mInputDelayUs = config.mInputDelayUs; |
| 397 | } |
| 398 | mConfig.mStopAtUs = config.mStopAtUs; |
| 399 | mConfig.mStopped = config.mStopped; |
| 400 | } |
| 401 | |
| 402 | // color aspects (android._color-aspects) |
| 403 | |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 404 | // consumer usage is queried earlier. |
| 405 | |
Wonsik Kim | bd55793 | 2019-07-02 15:51:20 -0700 | [diff] [blame] | 406 | if (status.str().empty()) { |
| 407 | ALOGD("ISConfig not changed"); |
| 408 | } else { |
| 409 | ALOGD("ISConfig%s", status.str().c_str()); |
| 410 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 411 | return err; |
| 412 | } |
| 413 | |
Wonsik Kim | 4f3314d | 2019-03-26 17:00:34 -0700 | [diff] [blame] | 414 | void onInputBufferDone(c2_cntr64_t index) override { |
| 415 | mNode->onInputBufferDone(index); |
| 416 | } |
| 417 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 418 | private: |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 419 | sp<HGraphicBufferSource> mSource; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 420 | sp<C2OMXNode> mNode; |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 421 | sp<hardware::media::omx::V1_0::IOmxNode> mOmxNode; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 422 | uint32_t mWidth; |
| 423 | uint32_t mHeight; |
| 424 | Config mConfig; |
| 425 | }; |
| 426 | |
| 427 | class Codec2ClientInterfaceWrapper : public C2ComponentStore { |
| 428 | std::shared_ptr<Codec2Client> mClient; |
| 429 | |
| 430 | public: |
| 431 | Codec2ClientInterfaceWrapper(std::shared_ptr<Codec2Client> client) |
| 432 | : mClient(client) { } |
| 433 | |
| 434 | virtual ~Codec2ClientInterfaceWrapper() = default; |
| 435 | |
| 436 | virtual c2_status_t config_sm( |
| 437 | const std::vector<C2Param *> ¶ms, |
| 438 | std::vector<std::unique_ptr<C2SettingResult>> *const failures) { |
| 439 | return mClient->config(params, C2_MAY_BLOCK, failures); |
| 440 | }; |
| 441 | |
| 442 | virtual c2_status_t copyBuffer( |
| 443 | std::shared_ptr<C2GraphicBuffer>, |
| 444 | std::shared_ptr<C2GraphicBuffer>) { |
| 445 | return C2_OMITTED; |
| 446 | } |
| 447 | |
| 448 | virtual c2_status_t createComponent( |
| 449 | C2String, std::shared_ptr<C2Component> *const component) { |
| 450 | component->reset(); |
| 451 | return C2_OMITTED; |
| 452 | } |
| 453 | |
| 454 | virtual c2_status_t createInterface( |
| 455 | C2String, std::shared_ptr<C2ComponentInterface> *const interface) { |
| 456 | interface->reset(); |
| 457 | return C2_OMITTED; |
| 458 | } |
| 459 | |
| 460 | virtual c2_status_t query_sm( |
| 461 | const std::vector<C2Param *> &stackParams, |
| 462 | const std::vector<C2Param::Index> &heapParamIndices, |
| 463 | std::vector<std::unique_ptr<C2Param>> *const heapParams) const { |
| 464 | return mClient->query(stackParams, heapParamIndices, C2_MAY_BLOCK, heapParams); |
| 465 | } |
| 466 | |
| 467 | virtual c2_status_t querySupportedParams_nb( |
| 468 | std::vector<std::shared_ptr<C2ParamDescriptor>> *const params) const { |
| 469 | return mClient->querySupportedParams(params); |
| 470 | } |
| 471 | |
| 472 | virtual c2_status_t querySupportedValues_sm( |
| 473 | std::vector<C2FieldSupportedValuesQuery> &fields) const { |
| 474 | return mClient->querySupportedValues(fields, C2_MAY_BLOCK); |
| 475 | } |
| 476 | |
| 477 | virtual C2String getName() const { |
| 478 | return mClient->getName(); |
| 479 | } |
| 480 | |
| 481 | virtual std::shared_ptr<C2ParamReflector> getParamReflector() const { |
| 482 | return mClient->getParamReflector(); |
| 483 | } |
| 484 | |
| 485 | virtual std::vector<std::shared_ptr<const C2Component::Traits>> listComponents() { |
| 486 | return std::vector<std::shared_ptr<const C2Component::Traits>>(); |
| 487 | } |
| 488 | }; |
| 489 | |
Wonsik Kim | 3b4349a | 2020-11-10 11:54:15 -0800 | [diff] [blame^] | 490 | void RevertOutputFormatIfNeeded( |
| 491 | const sp<AMessage> &oldFormat, sp<AMessage> ¤tFormat) { |
| 492 | // We used to not report changes to these keys to the client. |
| 493 | const static std::set<std::string> sIgnoredKeys({ |
| 494 | KEY_BIT_RATE, |
| 495 | KEY_MAX_BIT_RATE, |
| 496 | "csd-0", |
| 497 | "csd-1", |
| 498 | "csd-2", |
| 499 | }); |
| 500 | if (currentFormat == oldFormat) { |
| 501 | return; |
| 502 | } |
| 503 | sp<AMessage> diff = currentFormat->changesFrom(oldFormat); |
| 504 | AMessage::Type type; |
| 505 | for (size_t i = diff->countEntries(); i > 0; --i) { |
| 506 | if (sIgnoredKeys.count(diff->getEntryNameAt(i - 1, &type)) > 0) { |
| 507 | diff->removeEntryAt(i - 1); |
| 508 | } |
| 509 | } |
| 510 | if (diff->countEntries() == 0) { |
| 511 | currentFormat = oldFormat; |
| 512 | } |
| 513 | } |
| 514 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 515 | } // namespace |
| 516 | |
| 517 | // CCodec::ClientListener |
| 518 | |
| 519 | struct CCodec::ClientListener : public Codec2Client::Listener { |
| 520 | |
| 521 | explicit ClientListener(const wp<CCodec> &codec) : mCodec(codec) {} |
| 522 | |
| 523 | virtual void onWorkDone( |
| 524 | const std::weak_ptr<Codec2Client::Component>& component, |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 525 | std::list<std::unique_ptr<C2Work>>& workItems) override { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 526 | (void)component; |
| 527 | sp<CCodec> codec(mCodec.promote()); |
| 528 | if (!codec) { |
| 529 | return; |
| 530 | } |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 531 | codec->onWorkDone(workItems); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | virtual void onTripped( |
| 535 | const std::weak_ptr<Codec2Client::Component>& component, |
| 536 | const std::vector<std::shared_ptr<C2SettingResult>>& settingResult |
| 537 | ) override { |
| 538 | // TODO |
| 539 | (void)component; |
| 540 | (void)settingResult; |
| 541 | } |
| 542 | |
| 543 | virtual void onError( |
| 544 | const std::weak_ptr<Codec2Client::Component>& component, |
| 545 | uint32_t errorCode) override { |
| 546 | // TODO |
| 547 | (void)component; |
| 548 | (void)errorCode; |
| 549 | } |
| 550 | |
| 551 | virtual void onDeath( |
| 552 | const std::weak_ptr<Codec2Client::Component>& component) override { |
| 553 | { // Log the death of the component. |
| 554 | std::shared_ptr<Codec2Client::Component> comp = component.lock(); |
| 555 | if (!comp) { |
| 556 | ALOGE("Codec2 component died."); |
| 557 | } else { |
| 558 | ALOGE("Codec2 component \"%s\" died.", comp->getName().c_str()); |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | // Report to MediaCodec. |
| 563 | sp<CCodec> codec(mCodec.promote()); |
| 564 | if (!codec || !codec->mCallback) { |
| 565 | return; |
| 566 | } |
| 567 | codec->mCallback->onError(DEAD_OBJECT, ACTION_CODE_FATAL); |
| 568 | } |
| 569 | |
Pawin Vongmasa | 1c75a23 | 2019-01-09 04:41:52 -0800 | [diff] [blame] | 570 | virtual void onFrameRendered(uint64_t bufferQueueId, |
| 571 | int32_t slotId, |
| 572 | int64_t timestampNs) override { |
| 573 | // TODO: implement |
| 574 | (void)bufferQueueId; |
| 575 | (void)slotId; |
| 576 | (void)timestampNs; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 577 | } |
| 578 | |
| 579 | virtual void onInputBufferDone( |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 580 | uint64_t frameIndex, size_t arrayIndex) override { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 581 | sp<CCodec> codec(mCodec.promote()); |
| 582 | if (codec) { |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 583 | codec->onInputBufferDone(frameIndex, arrayIndex); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 584 | } |
| 585 | } |
| 586 | |
| 587 | private: |
| 588 | wp<CCodec> mCodec; |
| 589 | }; |
| 590 | |
| 591 | // CCodecCallbackImpl |
| 592 | |
| 593 | class CCodecCallbackImpl : public CCodecCallback { |
| 594 | public: |
| 595 | explicit CCodecCallbackImpl(CCodec *codec) : mCodec(codec) {} |
| 596 | ~CCodecCallbackImpl() override = default; |
| 597 | |
| 598 | void onError(status_t err, enum ActionCode actionCode) override { |
| 599 | mCodec->mCallback->onError(err, actionCode); |
| 600 | } |
| 601 | |
| 602 | void onOutputFramesRendered(int64_t mediaTimeUs, nsecs_t renderTimeNs) override { |
| 603 | mCodec->mCallback->onOutputFramesRendered( |
| 604 | {RenderedFrameInfo(mediaTimeUs, renderTimeNs)}); |
| 605 | } |
| 606 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 607 | void onOutputBuffersChanged() override { |
| 608 | mCodec->mCallback->onOutputBuffersChanged(); |
| 609 | } |
| 610 | |
| 611 | private: |
| 612 | CCodec *mCodec; |
| 613 | }; |
| 614 | |
| 615 | // CCodec |
| 616 | |
| 617 | CCodec::CCodec() |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 618 | : mChannel(new CCodecBufferChannel(std::make_shared<CCodecCallbackImpl>(this))), |
| 619 | mConfig(new CCodecConfig) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 620 | } |
| 621 | |
| 622 | CCodec::~CCodec() { |
| 623 | } |
| 624 | |
| 625 | std::shared_ptr<BufferChannelBase> CCodec::getBufferChannel() { |
| 626 | return mChannel; |
| 627 | } |
| 628 | |
| 629 | status_t CCodec::tryAndReportOnError(std::function<status_t()> job) { |
| 630 | status_t err = job(); |
| 631 | if (err != C2_OK) { |
| 632 | mCallback->onError(err, ACTION_CODE_FATAL); |
| 633 | } |
| 634 | return err; |
| 635 | } |
| 636 | |
| 637 | void CCodec::initiateAllocateComponent(const sp<AMessage> &msg) { |
| 638 | auto setAllocating = [this] { |
| 639 | Mutexed<State>::Locked state(mState); |
| 640 | if (state->get() != RELEASED) { |
| 641 | return INVALID_OPERATION; |
| 642 | } |
| 643 | state->set(ALLOCATING); |
| 644 | return OK; |
| 645 | }; |
| 646 | if (tryAndReportOnError(setAllocating) != OK) { |
| 647 | return; |
| 648 | } |
| 649 | |
| 650 | sp<RefBase> codecInfo; |
| 651 | CHECK(msg->findObject("codecInfo", &codecInfo)); |
| 652 | // For Codec 2.0 components, componentName == codecInfo->getCodecName(). |
| 653 | |
| 654 | sp<AMessage> allocMsg(new AMessage(kWhatAllocate, this)); |
| 655 | allocMsg->setObject("codecInfo", codecInfo); |
| 656 | allocMsg->post(); |
| 657 | } |
| 658 | |
| 659 | void CCodec::allocate(const sp<MediaCodecInfo> &codecInfo) { |
| 660 | if (codecInfo == nullptr) { |
| 661 | mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL); |
| 662 | return; |
| 663 | } |
| 664 | ALOGD("allocate(%s)", codecInfo->getCodecName()); |
| 665 | mClientListener.reset(new ClientListener(this)); |
| 666 | |
| 667 | AString componentName = codecInfo->getCodecName(); |
| 668 | std::shared_ptr<Codec2Client> client; |
| 669 | |
| 670 | // set up preferred component store to access vendor store parameters |
Pawin Vongmasa | 892c81d | 2019-03-12 00:56:50 -0700 | [diff] [blame] | 671 | client = Codec2Client::CreateFromService("default"); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 672 | if (client) { |
Pawin Vongmasa | 1c75a23 | 2019-01-09 04:41:52 -0800 | [diff] [blame] | 673 | ALOGI("setting up '%s' as default (vendor) store", client->getServiceName().c_str()); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 674 | SetPreferredCodec2ComponentStore( |
| 675 | std::make_shared<Codec2ClientInterfaceWrapper>(client)); |
| 676 | } |
| 677 | |
Chih-Yu Huang | b8fe079 | 2020-12-07 17:14:55 +0900 | [diff] [blame] | 678 | std::shared_ptr<Codec2Client::Component> comp; |
| 679 | c2_status_t status = Codec2Client::CreateComponentByName( |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 680 | componentName.c_str(), |
| 681 | mClientListener, |
Chih-Yu Huang | b8fe079 | 2020-12-07 17:14:55 +0900 | [diff] [blame] | 682 | &comp, |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 683 | &client); |
Chih-Yu Huang | b8fe079 | 2020-12-07 17:14:55 +0900 | [diff] [blame] | 684 | if (status != C2_OK) { |
| 685 | ALOGE("Failed Create component: %s, error=%d", componentName.c_str(), status); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 686 | Mutexed<State>::Locked state(mState); |
| 687 | state->set(RELEASED); |
| 688 | state.unlock(); |
Chih-Yu Huang | b8fe079 | 2020-12-07 17:14:55 +0900 | [diff] [blame] | 689 | mCallback->onError((status == C2_NO_MEMORY ? NO_MEMORY : UNKNOWN_ERROR), ACTION_CODE_FATAL); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 690 | state.lock(); |
| 691 | return; |
| 692 | } |
| 693 | ALOGI("Created component [%s]", componentName.c_str()); |
| 694 | mChannel->setComponent(comp); |
| 695 | auto setAllocated = [this, comp, client] { |
| 696 | Mutexed<State>::Locked state(mState); |
| 697 | if (state->get() != ALLOCATING) { |
| 698 | state->set(RELEASED); |
| 699 | return UNKNOWN_ERROR; |
| 700 | } |
| 701 | state->set(ALLOCATED); |
| 702 | state->comp = comp; |
| 703 | mClient = client; |
| 704 | return OK; |
| 705 | }; |
| 706 | if (tryAndReportOnError(setAllocated) != OK) { |
| 707 | return; |
| 708 | } |
| 709 | |
| 710 | // initialize config here in case setParameters is called prior to configure |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 711 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 712 | const std::unique_ptr<Config> &config = *configLocked; |
Wonsik Kim | 8a6ed37 | 2019-12-03 16:05:51 -0800 | [diff] [blame] | 713 | status_t err = config->initialize(mClient->getParamReflector(), comp); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 714 | if (err != OK) { |
| 715 | ALOGW("Failed to initialize configuration support"); |
| 716 | // TODO: report error once we complete implementation. |
| 717 | } |
| 718 | config->queryConfiguration(comp); |
| 719 | |
| 720 | mCallback->onComponentAllocated(componentName.c_str()); |
| 721 | } |
| 722 | |
| 723 | void CCodec::initiateConfigureComponent(const sp<AMessage> &format) { |
| 724 | auto checkAllocated = [this] { |
| 725 | Mutexed<State>::Locked state(mState); |
| 726 | return (state->get() != ALLOCATED) ? UNKNOWN_ERROR : OK; |
| 727 | }; |
| 728 | if (tryAndReportOnError(checkAllocated) != OK) { |
| 729 | return; |
| 730 | } |
| 731 | |
| 732 | sp<AMessage> msg(new AMessage(kWhatConfigure, this)); |
| 733 | msg->setMessage("format", format); |
| 734 | msg->post(); |
| 735 | } |
| 736 | |
| 737 | void CCodec::configure(const sp<AMessage> &msg) { |
| 738 | std::shared_ptr<Codec2Client::Component> comp; |
| 739 | auto checkAllocated = [this, &comp] { |
| 740 | Mutexed<State>::Locked state(mState); |
| 741 | if (state->get() != ALLOCATED) { |
| 742 | state->set(RELEASED); |
| 743 | return UNKNOWN_ERROR; |
| 744 | } |
| 745 | comp = state->comp; |
| 746 | return OK; |
| 747 | }; |
| 748 | if (tryAndReportOnError(checkAllocated) != OK) { |
| 749 | return; |
| 750 | } |
| 751 | |
| 752 | auto doConfig = [msg, comp, this]() -> status_t { |
| 753 | AString mime; |
| 754 | if (!msg->findString("mime", &mime)) { |
| 755 | return BAD_VALUE; |
| 756 | } |
| 757 | |
| 758 | int32_t encoder; |
| 759 | if (!msg->findInt32("encoder", &encoder)) { |
| 760 | encoder = false; |
| 761 | } |
| 762 | |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 763 | int32_t flags; |
| 764 | if (!msg->findInt32("flags", &flags)) { |
| 765 | return BAD_VALUE; |
| 766 | } |
| 767 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 768 | // TODO: read from intf() |
| 769 | if ((!encoder) != (comp->getName().find("encoder") == std::string::npos)) { |
| 770 | return UNKNOWN_ERROR; |
| 771 | } |
| 772 | |
| 773 | int32_t storeMeta; |
| 774 | if (encoder |
| 775 | && msg->findInt32("android._input-metadata-buffer-type", &storeMeta) |
| 776 | && storeMeta != kMetadataBufferTypeInvalid) { |
| 777 | if (storeMeta != kMetadataBufferTypeANWBuffer) { |
| 778 | ALOGD("Only ANW buffers are supported for legacy metadata mode"); |
| 779 | return BAD_VALUE; |
| 780 | } |
| 781 | mChannel->setMetaMode(CCodecBufferChannel::MODE_ANW); |
| 782 | } |
| 783 | |
| 784 | sp<RefBase> obj; |
| 785 | sp<Surface> surface; |
| 786 | if (msg->findObject("native-window", &obj)) { |
| 787 | surface = static_cast<Surface *>(obj.get()); |
| 788 | setSurface(surface); |
| 789 | } |
| 790 | |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 791 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 792 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 793 | config->mUsingSurface = surface != nullptr; |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 794 | config->mBuffersBoundToCodec = ((flags & CONFIGURE_FLAG_USE_BLOCK_MODEL) == 0); |
| 795 | ALOGD("[%s] buffers are %sbound to CCodec for this session", |
| 796 | comp->getName().c_str(), config->mBuffersBoundToCodec ? "" : "not "); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 797 | |
Wonsik Kim | 1114eea | 2019-02-25 14:35:24 -0800 | [diff] [blame] | 798 | // Enforce required parameters |
| 799 | int32_t i32; |
| 800 | float flt; |
| 801 | if (config->mDomain & Config::IS_AUDIO) { |
| 802 | if (!msg->findInt32(KEY_SAMPLE_RATE, &i32)) { |
| 803 | ALOGD("sample rate is missing, which is required for audio components."); |
| 804 | return BAD_VALUE; |
| 805 | } |
| 806 | if (!msg->findInt32(KEY_CHANNEL_COUNT, &i32)) { |
| 807 | ALOGD("channel count is missing, which is required for audio components."); |
| 808 | return BAD_VALUE; |
| 809 | } |
| 810 | if ((config->mDomain & Config::IS_ENCODER) |
| 811 | && !mime.equalsIgnoreCase(MEDIA_MIMETYPE_AUDIO_FLAC) |
| 812 | && !msg->findInt32(KEY_BIT_RATE, &i32) |
| 813 | && !msg->findFloat(KEY_BIT_RATE, &flt)) { |
| 814 | ALOGD("bitrate is missing, which is required for audio encoders."); |
| 815 | return BAD_VALUE; |
| 816 | } |
| 817 | } |
| 818 | if (config->mDomain & (Config::IS_IMAGE | Config::IS_VIDEO)) { |
| 819 | if (!msg->findInt32(KEY_WIDTH, &i32)) { |
| 820 | ALOGD("width is missing, which is required for image/video components."); |
| 821 | return BAD_VALUE; |
| 822 | } |
| 823 | if (!msg->findInt32(KEY_HEIGHT, &i32)) { |
| 824 | ALOGD("height is missing, which is required for image/video components."); |
| 825 | return BAD_VALUE; |
| 826 | } |
| 827 | if ((config->mDomain & Config::IS_ENCODER) && (config->mDomain & Config::IS_VIDEO)) { |
Harish Mahendrakar | 71cbb9d | 2019-05-21 11:21:27 -0700 | [diff] [blame] | 828 | int32_t mode = BITRATE_MODE_VBR; |
| 829 | if (msg->findInt32(KEY_BITRATE_MODE, &mode) && mode == BITRATE_MODE_CQ) { |
Harish Mahendrakar | 817d318 | 2019-03-11 16:37:47 -0700 | [diff] [blame] | 830 | if (!msg->findInt32(KEY_QUALITY, &i32)) { |
| 831 | ALOGD("quality is missing, which is required for video encoders in CQ."); |
| 832 | return BAD_VALUE; |
| 833 | } |
| 834 | } else { |
| 835 | if (!msg->findInt32(KEY_BIT_RATE, &i32) |
| 836 | && !msg->findFloat(KEY_BIT_RATE, &flt)) { |
| 837 | ALOGD("bitrate is missing, which is required for video encoders."); |
| 838 | return BAD_VALUE; |
| 839 | } |
Wonsik Kim | 1114eea | 2019-02-25 14:35:24 -0800 | [diff] [blame] | 840 | } |
| 841 | if (!msg->findInt32(KEY_I_FRAME_INTERVAL, &i32) |
| 842 | && !msg->findFloat(KEY_I_FRAME_INTERVAL, &flt)) { |
| 843 | ALOGD("I frame interval is missing, which is required for video encoders."); |
| 844 | return BAD_VALUE; |
| 845 | } |
Wonsik Kim | aab2eea | 2019-05-22 10:37:58 -0700 | [diff] [blame] | 846 | if (!msg->findInt32(KEY_FRAME_RATE, &i32) |
| 847 | && !msg->findFloat(KEY_FRAME_RATE, &flt)) { |
| 848 | ALOGD("frame rate is missing, which is required for video encoders."); |
| 849 | return BAD_VALUE; |
| 850 | } |
Wonsik Kim | 1114eea | 2019-02-25 14:35:24 -0800 | [diff] [blame] | 851 | } |
| 852 | } |
| 853 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 854 | /* |
| 855 | * Handle input surface configuration |
| 856 | */ |
| 857 | if ((config->mDomain & (Config::IS_VIDEO | Config::IS_IMAGE)) |
| 858 | && (config->mDomain & Config::IS_ENCODER)) { |
| 859 | config->mISConfig.reset(new InputSurfaceWrapper::Config{}); |
| 860 | { |
| 861 | config->mISConfig->mMinFps = 0; |
| 862 | int64_t value; |
Chong Zhang | 038e8f8 | 2019-02-06 19:05:14 -0800 | [diff] [blame] | 863 | if (msg->findInt64(KEY_REPEAT_PREVIOUS_FRAME_AFTER, &value) && value > 0) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 864 | config->mISConfig->mMinFps = 1e6 / value; |
| 865 | } |
Wonsik Kim | 95ba016 | 2019-03-19 15:51:54 -0700 | [diff] [blame] | 866 | if (!msg->findFloat( |
| 867 | KEY_MAX_FPS_TO_ENCODER, &config->mISConfig->mMaxFps)) { |
| 868 | config->mISConfig->mMaxFps = -1; |
| 869 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 870 | config->mISConfig->mMinAdjustedFps = 0; |
| 871 | config->mISConfig->mFixedAdjustedFps = 0; |
Chong Zhang | 038e8f8 | 2019-02-06 19:05:14 -0800 | [diff] [blame] | 872 | if (msg->findInt64(KEY_MAX_PTS_GAP_TO_ENCODER, &value)) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 873 | if (value < 0 && value >= INT32_MIN) { |
| 874 | config->mISConfig->mFixedAdjustedFps = -1e6 / value; |
Wonsik Kim | 95ba016 | 2019-03-19 15:51:54 -0700 | [diff] [blame] | 875 | config->mISConfig->mMaxFps = -1; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 876 | } else if (value > 0 && value <= INT32_MAX) { |
| 877 | config->mISConfig->mMinAdjustedFps = 1e6 / value; |
| 878 | } |
| 879 | } |
| 880 | } |
| 881 | |
| 882 | { |
Wonsik Kim | 8e55f3a | 2019-09-03 14:10:37 -0700 | [diff] [blame] | 883 | bool captureFpsFound = false; |
| 884 | double timeLapseFps; |
| 885 | float captureRate; |
| 886 | if (msg->findDouble("time-lapse-fps", &timeLapseFps)) { |
| 887 | config->mISConfig->mCaptureFps = timeLapseFps; |
| 888 | captureFpsFound = true; |
| 889 | } else if (msg->findAsFloat(KEY_CAPTURE_RATE, &captureRate)) { |
| 890 | config->mISConfig->mCaptureFps = captureRate; |
| 891 | captureFpsFound = true; |
| 892 | } |
| 893 | if (captureFpsFound) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 894 | (void)msg->findAsFloat(KEY_FRAME_RATE, &config->mISConfig->mCodedFps); |
| 895 | } |
| 896 | } |
| 897 | |
| 898 | { |
| 899 | config->mISConfig->mSuspended = false; |
| 900 | config->mISConfig->mSuspendAtUs = -1; |
| 901 | int32_t value; |
Chong Zhang | 038e8f8 | 2019-02-06 19:05:14 -0800 | [diff] [blame] | 902 | if (msg->findInt32(KEY_CREATE_INPUT_SURFACE_SUSPENDED, &value) && value) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 903 | config->mISConfig->mSuspended = true; |
| 904 | } |
| 905 | } |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 906 | config->mISConfig->mUsage = 0; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 907 | } |
| 908 | |
| 909 | /* |
| 910 | * Handle desired color format. |
| 911 | */ |
| 912 | if ((config->mDomain & (Config::IS_VIDEO | Config::IS_IMAGE))) { |
| 913 | int32_t format = -1; |
| 914 | if (!msg->findInt32(KEY_COLOR_FORMAT, &format)) { |
| 915 | /* |
| 916 | * Also handle default color format (encoders require color format, so this is only |
| 917 | * needed for decoders. |
| 918 | */ |
| 919 | if (!(config->mDomain & Config::IS_ENCODER)) { |
| 920 | format = (surface == nullptr) ? COLOR_FormatYUV420Planar : COLOR_FormatSurface; |
| 921 | } |
| 922 | } |
| 923 | |
| 924 | if (format >= 0) { |
| 925 | msg->setInt32("android._color-format", format); |
| 926 | } |
| 927 | } |
| 928 | |
Wonsik Kim | 8a6ed37 | 2019-12-03 16:05:51 -0800 | [diff] [blame] | 929 | int32_t subscribeToAllVendorParams; |
| 930 | if (msg->findInt32("x-*", &subscribeToAllVendorParams) && subscribeToAllVendorParams) { |
| 931 | if (config->subscribeToAllVendorParams(comp, C2_MAY_BLOCK) != OK) { |
| 932 | ALOGD("[%s] Failed to subscribe to all vendor params", comp->getName().c_str()); |
| 933 | } |
| 934 | } |
| 935 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 936 | std::vector<std::unique_ptr<C2Param>> configUpdate; |
Wonsik Kim | aa484ac | 2019-02-13 16:54:02 -0800 | [diff] [blame] | 937 | // NOTE: We used to ignore "video-bitrate" at configure; replicate |
| 938 | // the behavior here. |
| 939 | sp<AMessage> sdkParams = msg; |
| 940 | int32_t videoBitrate; |
| 941 | if (sdkParams->findInt32(PARAMETER_KEY_VIDEO_BITRATE, &videoBitrate)) { |
| 942 | sdkParams = msg->dup(); |
| 943 | sdkParams->removeEntryAt(sdkParams->findEntryByName(PARAMETER_KEY_VIDEO_BITRATE)); |
| 944 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 945 | status_t err = config->getConfigUpdateFromSdkParams( |
Wonsik Kim | aa484ac | 2019-02-13 16:54:02 -0800 | [diff] [blame] | 946 | comp, sdkParams, Config::IS_CONFIG, C2_DONT_BLOCK, &configUpdate); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 947 | if (err != OK) { |
| 948 | ALOGW("failed to convert configuration to c2 params"); |
| 949 | } |
Wonsik Kim | aab2eea | 2019-05-22 10:37:58 -0700 | [diff] [blame] | 950 | |
| 951 | int32_t maxBframes = 0; |
| 952 | if ((config->mDomain & Config::IS_ENCODER) |
| 953 | && (config->mDomain & Config::IS_VIDEO) |
| 954 | && sdkParams->findInt32(KEY_MAX_B_FRAMES, &maxBframes) |
| 955 | && maxBframes > 0) { |
| 956 | std::unique_ptr<C2StreamGopTuning::output> gop = |
| 957 | C2StreamGopTuning::output::AllocUnique(2 /* flexCount */, 0u /* stream */); |
| 958 | gop->m.values[0] = { P_FRAME, UINT32_MAX }; |
| 959 | gop->m.values[1] = { |
| 960 | C2Config::picture_type_t(P_FRAME | B_FRAME), |
| 961 | uint32_t(maxBframes) |
| 962 | }; |
| 963 | configUpdate.push_back(std::move(gop)); |
| 964 | } |
| 965 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 966 | err = config->setParameters(comp, configUpdate, C2_DONT_BLOCK); |
| 967 | if (err != OK) { |
| 968 | ALOGW("failed to configure c2 params"); |
| 969 | return err; |
| 970 | } |
| 971 | |
| 972 | std::vector<std::unique_ptr<C2Param>> params; |
| 973 | C2StreamUsageTuning::input usage(0u, 0u); |
| 974 | C2StreamMaxBufferSizeInfo::input maxInputSize(0u, 0u); |
Wonsik Kim | 9ca01d3 | 2019-04-01 14:45:47 -0700 | [diff] [blame] | 975 | C2PrependHeaderModeSetting prepend(PREPEND_HEADER_TO_NONE); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 976 | |
| 977 | std::initializer_list<C2Param::Index> indices { |
| 978 | }; |
| 979 | c2_status_t c2err = comp->query( |
Wonsik Kim | 9ca01d3 | 2019-04-01 14:45:47 -0700 | [diff] [blame] | 980 | { &usage, &maxInputSize, &prepend }, |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 981 | indices, |
| 982 | C2_DONT_BLOCK, |
| 983 | ¶ms); |
| 984 | if (c2err != C2_OK && c2err != C2_BAD_INDEX) { |
| 985 | ALOGE("Failed to query component interface: %d", c2err); |
| 986 | return UNKNOWN_ERROR; |
| 987 | } |
| 988 | if (params.size() != indices.size()) { |
| 989 | ALOGE("Component returns wrong number of params: expected %zu actual %zu", |
| 990 | indices.size(), params.size()); |
| 991 | return UNKNOWN_ERROR; |
| 992 | } |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 993 | if (usage) { |
| 994 | if (usage.value & C2MemoryUsage::CPU_READ) { |
| 995 | config->mInputFormat->setInt32("using-sw-read-often", true); |
| 996 | } |
| 997 | if (config->mISConfig) { |
| 998 | C2AndroidMemoryUsage androidUsage(C2MemoryUsage(usage.value)); |
| 999 | config->mISConfig->mUsage = androidUsage.asGrallocUsage(); |
| 1000 | } |
Wonsik Kim | 666604a | 2020-05-14 16:57:49 -0700 | [diff] [blame] | 1001 | config->mInputFormat->setInt64("android._C2MemoryUsage", usage.value); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1002 | } |
| 1003 | |
| 1004 | // NOTE: we don't blindly use client specified input size if specified as clients |
| 1005 | // at times specify too small size. Instead, mimic the behavior from OMX, where the |
| 1006 | // client specified size is only used to ask for bigger buffers than component suggested |
| 1007 | // size. |
| 1008 | int32_t clientInputSize = 0; |
| 1009 | bool clientSpecifiedInputSize = |
| 1010 | msg->findInt32(KEY_MAX_INPUT_SIZE, &clientInputSize) && clientInputSize > 0; |
| 1011 | // TEMP: enforce minimum buffer size of 1MB for video decoders |
| 1012 | // and 16K / 4K for audio encoders/decoders |
| 1013 | if (maxInputSize.value == 0) { |
| 1014 | if (config->mDomain & Config::IS_AUDIO) { |
| 1015 | maxInputSize.value = encoder ? 16384 : 4096; |
| 1016 | } else if (!encoder) { |
| 1017 | maxInputSize.value = 1048576u; |
| 1018 | } |
| 1019 | } |
| 1020 | |
| 1021 | // verify that CSD fits into this size (if defined) |
| 1022 | if ((config->mDomain & Config::IS_DECODER) && maxInputSize.value > 0) { |
| 1023 | sp<ABuffer> csd; |
| 1024 | for (size_t ix = 0; msg->findBuffer(StringPrintf("csd-%zu", ix).c_str(), &csd); ++ix) { |
| 1025 | if (csd && csd->size() > maxInputSize.value) { |
| 1026 | maxInputSize.value = csd->size(); |
| 1027 | } |
| 1028 | } |
| 1029 | } |
| 1030 | |
| 1031 | // TODO: do this based on component requiring linear allocator for input |
| 1032 | if ((config->mDomain & Config::IS_DECODER) || (config->mDomain & Config::IS_AUDIO)) { |
| 1033 | if (clientSpecifiedInputSize) { |
| 1034 | // Warn that we're overriding client's max input size if necessary. |
| 1035 | if ((uint32_t)clientInputSize < maxInputSize.value) { |
| 1036 | ALOGD("client requested max input size %d, which is smaller than " |
| 1037 | "what component recommended (%u); overriding with component " |
| 1038 | "recommendation.", clientInputSize, maxInputSize.value); |
| 1039 | ALOGW("This behavior is subject to change. It is recommended that " |
| 1040 | "app developers double check whether the requested " |
| 1041 | "max input size is in reasonable range."); |
| 1042 | } else { |
| 1043 | maxInputSize.value = clientInputSize; |
| 1044 | } |
| 1045 | } |
| 1046 | // Pass max input size on input format to the buffer channel (if supplied by the |
| 1047 | // component or by a default) |
| 1048 | if (maxInputSize.value) { |
| 1049 | config->mInputFormat->setInt32( |
| 1050 | KEY_MAX_INPUT_SIZE, |
| 1051 | (int32_t)(c2_min(maxInputSize.value, uint32_t(INT32_MAX)))); |
| 1052 | } |
| 1053 | } |
| 1054 | |
Wonsik Kim | 9ca01d3 | 2019-04-01 14:45:47 -0700 | [diff] [blame] | 1055 | int32_t clientPrepend; |
| 1056 | if ((config->mDomain & Config::IS_VIDEO) |
| 1057 | && (config->mDomain & Config::IS_ENCODER) |
| 1058 | && msg->findInt32(KEY_PREPEND_HEADERS_TO_SYNC_FRAMES, &clientPrepend) |
| 1059 | && clientPrepend |
| 1060 | && (!prepend || prepend.value != PREPEND_HEADER_TO_ALL_SYNC)) { |
| 1061 | ALOGE("Failed to set KEY_PREPEND_HEADERS_TO_SYNC_FRAMES"); |
| 1062 | return BAD_VALUE; |
| 1063 | } |
| 1064 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1065 | if ((config->mDomain & (Config::IS_VIDEO | Config::IS_IMAGE))) { |
| 1066 | // propagate HDR static info to output format for both encoders and decoders |
| 1067 | // if component supports this info, we will update from component, but only the raw port, |
| 1068 | // so don't propagate if component already filled it in. |
| 1069 | sp<ABuffer> hdrInfo; |
| 1070 | if (msg->findBuffer(KEY_HDR_STATIC_INFO, &hdrInfo) |
| 1071 | && !config->mOutputFormat->findBuffer(KEY_HDR_STATIC_INFO, &hdrInfo)) { |
| 1072 | config->mOutputFormat->setBuffer(KEY_HDR_STATIC_INFO, hdrInfo); |
| 1073 | } |
| 1074 | |
| 1075 | // Set desired color format from configuration parameter |
| 1076 | int32_t format; |
| 1077 | if (msg->findInt32("android._color-format", &format)) { |
| 1078 | if (config->mDomain & Config::IS_ENCODER) { |
| 1079 | config->mInputFormat->setInt32(KEY_COLOR_FORMAT, format); |
| 1080 | } else { |
| 1081 | config->mOutputFormat->setInt32(KEY_COLOR_FORMAT, format); |
| 1082 | } |
| 1083 | } |
| 1084 | } |
| 1085 | |
| 1086 | // propagate encoder delay and padding to output format |
| 1087 | if ((config->mDomain & Config::IS_DECODER) && (config->mDomain & Config::IS_AUDIO)) { |
| 1088 | int delay = 0; |
| 1089 | if (msg->findInt32("encoder-delay", &delay)) { |
| 1090 | config->mOutputFormat->setInt32("encoder-delay", delay); |
| 1091 | } |
| 1092 | int padding = 0; |
| 1093 | if (msg->findInt32("encoder-padding", &padding)) { |
| 1094 | config->mOutputFormat->setInt32("encoder-padding", padding); |
| 1095 | } |
| 1096 | } |
| 1097 | |
| 1098 | // set channel-mask |
| 1099 | if (config->mDomain & Config::IS_AUDIO) { |
| 1100 | int32_t mask; |
| 1101 | if (msg->findInt32(KEY_CHANNEL_MASK, &mask)) { |
| 1102 | if (config->mDomain & Config::IS_ENCODER) { |
| 1103 | config->mInputFormat->setInt32(KEY_CHANNEL_MASK, mask); |
| 1104 | } else { |
| 1105 | config->mOutputFormat->setInt32(KEY_CHANNEL_MASK, mask); |
| 1106 | } |
| 1107 | } |
| 1108 | } |
| 1109 | |
| 1110 | ALOGD("setup formats input: %s and output: %s", |
| 1111 | config->mInputFormat->debugString().c_str(), |
| 1112 | config->mOutputFormat->debugString().c_str()); |
| 1113 | return OK; |
| 1114 | }; |
| 1115 | if (tryAndReportOnError(doConfig) != OK) { |
| 1116 | return; |
| 1117 | } |
| 1118 | |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1119 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1120 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1121 | |
| 1122 | mCallback->onComponentConfigured(config->mInputFormat, config->mOutputFormat); |
| 1123 | } |
| 1124 | |
| 1125 | void CCodec::initiateCreateInputSurface() { |
| 1126 | status_t err = [this] { |
| 1127 | Mutexed<State>::Locked state(mState); |
| 1128 | if (state->get() != ALLOCATED) { |
| 1129 | return UNKNOWN_ERROR; |
| 1130 | } |
| 1131 | // TODO: read it from intf() properly. |
| 1132 | if (state->comp->getName().find("encoder") == std::string::npos) { |
| 1133 | return INVALID_OPERATION; |
| 1134 | } |
| 1135 | return OK; |
| 1136 | }(); |
| 1137 | if (err != OK) { |
| 1138 | mCallback->onInputSurfaceCreationFailed(err); |
| 1139 | return; |
| 1140 | } |
| 1141 | |
| 1142 | (new AMessage(kWhatCreateInputSurface, this))->post(); |
| 1143 | } |
| 1144 | |
Lajos Molnar | 4711827 | 2019-01-31 16:28:04 -0800 | [diff] [blame] | 1145 | sp<PersistentSurface> CCodec::CreateOmxInputSurface() { |
| 1146 | using namespace android::hardware::media::omx::V1_0; |
| 1147 | using namespace android::hardware::media::omx::V1_0::utils; |
| 1148 | using namespace android::hardware::graphics::bufferqueue::V1_0::utils; |
| 1149 | typedef android::hardware::media::omx::V1_0::Status OmxStatus; |
| 1150 | android::sp<IOmx> omx = IOmx::getService(); |
| 1151 | typedef android::hardware::graphics::bufferqueue::V1_0:: |
| 1152 | IGraphicBufferProducer HGraphicBufferProducer; |
| 1153 | typedef android::hardware::media::omx::V1_0:: |
| 1154 | IGraphicBufferSource HGraphicBufferSource; |
| 1155 | OmxStatus s; |
| 1156 | android::sp<HGraphicBufferProducer> gbp; |
| 1157 | android::sp<HGraphicBufferSource> gbs; |
Pawin Vongmasa | 1858832 | 2019-05-18 01:52:13 -0700 | [diff] [blame] | 1158 | |
Chong Zhang | c8ce1d8 | 2019-03-27 10:18:38 -0700 | [diff] [blame] | 1159 | using ::android::hardware::Return; |
| 1160 | Return<void> transStatus = omx->createInputSurface( |
Lajos Molnar | 4711827 | 2019-01-31 16:28:04 -0800 | [diff] [blame] | 1161 | [&s, &gbp, &gbs]( |
| 1162 | OmxStatus status, |
| 1163 | const android::sp<HGraphicBufferProducer>& producer, |
| 1164 | const android::sp<HGraphicBufferSource>& source) { |
| 1165 | s = status; |
| 1166 | gbp = producer; |
| 1167 | gbs = source; |
| 1168 | }); |
| 1169 | if (transStatus.isOk() && s == OmxStatus::OK) { |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1170 | return new PersistentSurface(new H2BGraphicBufferProducer(gbp), gbs); |
Lajos Molnar | 4711827 | 2019-01-31 16:28:04 -0800 | [diff] [blame] | 1171 | } |
| 1172 | |
| 1173 | return nullptr; |
| 1174 | } |
| 1175 | |
| 1176 | sp<PersistentSurface> CCodec::CreateCompatibleInputSurface() { |
| 1177 | sp<PersistentSurface> surface(CreateInputSurface()); |
| 1178 | |
| 1179 | if (surface == nullptr) { |
| 1180 | surface = CreateOmxInputSurface(); |
| 1181 | } |
| 1182 | |
| 1183 | return surface; |
| 1184 | } |
| 1185 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1186 | void CCodec::createInputSurface() { |
| 1187 | status_t err; |
| 1188 | sp<IGraphicBufferProducer> bufferProducer; |
| 1189 | |
| 1190 | sp<AMessage> inputFormat; |
| 1191 | sp<AMessage> outputFormat; |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 1192 | uint64_t usage = 0; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1193 | { |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1194 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1195 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1196 | inputFormat = config->mInputFormat; |
| 1197 | outputFormat = config->mOutputFormat; |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 1198 | usage = config->mISConfig ? config->mISConfig->mUsage : 0; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1199 | } |
| 1200 | |
Lajos Molnar | 4711827 | 2019-01-31 16:28:04 -0800 | [diff] [blame] | 1201 | sp<PersistentSurface> persistentSurface = CreateCompatibleInputSurface(); |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1202 | sp<hidl::base::V1_0::IBase> hidlTarget = persistentSurface->getHidlTarget(); |
| 1203 | sp<IInputSurface> hidlInputSurface = IInputSurface::castFrom(hidlTarget); |
| 1204 | sp<HGraphicBufferSource> gbs = HGraphicBufferSource::castFrom(hidlTarget); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1205 | |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1206 | if (hidlInputSurface) { |
Pawin Vongmasa | 1c75a23 | 2019-01-09 04:41:52 -0800 | [diff] [blame] | 1207 | std::shared_ptr<Codec2Client::InputSurface> inputSurface = |
| 1208 | std::make_shared<Codec2Client::InputSurface>(hidlInputSurface); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1209 | err = setupInputSurface(std::make_shared<C2InputSurfaceWrapper>( |
Pawin Vongmasa | 1c75a23 | 2019-01-09 04:41:52 -0800 | [diff] [blame] | 1210 | inputSurface)); |
| 1211 | bufferProducer = inputSurface->getGraphicBufferProducer(); |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1212 | } else if (gbs) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1213 | int32_t width = 0; |
| 1214 | (void)outputFormat->findInt32("width", &width); |
| 1215 | int32_t height = 0; |
| 1216 | (void)outputFormat->findInt32("height", &height); |
| 1217 | err = setupInputSurface(std::make_shared<GraphicBufferSourceWrapper>( |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1218 | gbs, width, height, usage)); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1219 | bufferProducer = persistentSurface->getBufferProducer(); |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1220 | } else { |
| 1221 | ALOGE("Corrupted input surface"); |
| 1222 | mCallback->onInputSurfaceCreationFailed(UNKNOWN_ERROR); |
| 1223 | return; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1224 | } |
| 1225 | |
| 1226 | if (err != OK) { |
| 1227 | ALOGE("Failed to set up input surface: %d", err); |
| 1228 | mCallback->onInputSurfaceCreationFailed(err); |
| 1229 | return; |
| 1230 | } |
| 1231 | |
| 1232 | mCallback->onInputSurfaceCreated( |
| 1233 | inputFormat, |
| 1234 | outputFormat, |
| 1235 | new BufferProducerWrapper(bufferProducer)); |
| 1236 | } |
| 1237 | |
| 1238 | status_t CCodec::setupInputSurface(const std::shared_ptr<InputSurfaceWrapper> &surface) { |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1239 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1240 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1241 | config->mUsingSurface = true; |
| 1242 | |
| 1243 | // we are now using surface - apply default color aspects to input format - as well as |
| 1244 | // get dataspace |
Wonsik Kim | 8a6ed37 | 2019-12-03 16:05:51 -0800 | [diff] [blame] | 1245 | bool inputFormatChanged = config->updateFormats(Config::IS_INPUT); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1246 | ALOGD("input format %s to %s", |
| 1247 | inputFormatChanged ? "changed" : "unchanged", |
| 1248 | config->mInputFormat->debugString().c_str()); |
| 1249 | |
| 1250 | // configure dataspace |
| 1251 | static_assert(sizeof(int32_t) == sizeof(android_dataspace), "dataspace size mismatch"); |
| 1252 | android_dataspace dataSpace = HAL_DATASPACE_UNKNOWN; |
| 1253 | (void)config->mInputFormat->findInt32("android._dataspace", (int32_t*)&dataSpace); |
| 1254 | surface->setDataSpace(dataSpace); |
| 1255 | |
| 1256 | status_t err = mChannel->setInputSurface(surface); |
| 1257 | if (err != OK) { |
| 1258 | // undo input format update |
| 1259 | config->mUsingSurface = false; |
Wonsik Kim | 8a6ed37 | 2019-12-03 16:05:51 -0800 | [diff] [blame] | 1260 | (void)config->updateFormats(Config::IS_INPUT); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1261 | return err; |
| 1262 | } |
| 1263 | config->mInputSurface = surface; |
| 1264 | |
| 1265 | if (config->mISConfig) { |
| 1266 | surface->configure(*config->mISConfig); |
| 1267 | } else { |
| 1268 | ALOGD("ISConfig: no configuration"); |
| 1269 | } |
| 1270 | |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 1271 | return OK; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1272 | } |
| 1273 | |
| 1274 | void CCodec::initiateSetInputSurface(const sp<PersistentSurface> &surface) { |
| 1275 | sp<AMessage> msg = new AMessage(kWhatSetInputSurface, this); |
| 1276 | msg->setObject("surface", surface); |
| 1277 | msg->post(); |
| 1278 | } |
| 1279 | |
| 1280 | void CCodec::setInputSurface(const sp<PersistentSurface> &surface) { |
| 1281 | sp<AMessage> inputFormat; |
| 1282 | sp<AMessage> outputFormat; |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 1283 | uint64_t usage = 0; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1284 | { |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1285 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1286 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1287 | inputFormat = config->mInputFormat; |
| 1288 | outputFormat = config->mOutputFormat; |
Wonsik Kim | 9eac4d1 | 2019-05-23 12:58:48 -0700 | [diff] [blame] | 1289 | usage = config->mISConfig ? config->mISConfig->mUsage : 0; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1290 | } |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1291 | sp<hidl::base::V1_0::IBase> hidlTarget = surface->getHidlTarget(); |
| 1292 | sp<IInputSurface> inputSurface = IInputSurface::castFrom(hidlTarget); |
| 1293 | sp<HGraphicBufferSource> gbs = HGraphicBufferSource::castFrom(hidlTarget); |
| 1294 | if (inputSurface) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1295 | status_t err = setupInputSurface(std::make_shared<C2InputSurfaceWrapper>( |
| 1296 | std::make_shared<Codec2Client::InputSurface>(inputSurface))); |
| 1297 | if (err != OK) { |
| 1298 | ALOGE("Failed to set up input surface: %d", err); |
| 1299 | mCallback->onInputSurfaceDeclined(err); |
| 1300 | return; |
| 1301 | } |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1302 | } else if (gbs) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1303 | int32_t width = 0; |
| 1304 | (void)outputFormat->findInt32("width", &width); |
| 1305 | int32_t height = 0; |
| 1306 | (void)outputFormat->findInt32("height", &height); |
| 1307 | status_t err = setupInputSurface(std::make_shared<GraphicBufferSourceWrapper>( |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1308 | gbs, width, height, usage)); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1309 | if (err != OK) { |
| 1310 | ALOGE("Failed to set up input surface: %d", err); |
| 1311 | mCallback->onInputSurfaceDeclined(err); |
| 1312 | return; |
| 1313 | } |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1314 | } else { |
| 1315 | ALOGE("Failed to set input surface: Corrupted surface."); |
| 1316 | mCallback->onInputSurfaceDeclined(UNKNOWN_ERROR); |
| 1317 | return; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1318 | } |
| 1319 | mCallback->onInputSurfaceAccepted(inputFormat, outputFormat); |
| 1320 | } |
| 1321 | |
| 1322 | void CCodec::initiateStart() { |
| 1323 | auto setStarting = [this] { |
| 1324 | Mutexed<State>::Locked state(mState); |
| 1325 | if (state->get() != ALLOCATED) { |
| 1326 | return UNKNOWN_ERROR; |
| 1327 | } |
| 1328 | state->set(STARTING); |
| 1329 | return OK; |
| 1330 | }; |
| 1331 | if (tryAndReportOnError(setStarting) != OK) { |
| 1332 | return; |
| 1333 | } |
| 1334 | |
| 1335 | (new AMessage(kWhatStart, this))->post(); |
| 1336 | } |
| 1337 | |
| 1338 | void CCodec::start() { |
| 1339 | std::shared_ptr<Codec2Client::Component> comp; |
| 1340 | auto checkStarting = [this, &comp] { |
| 1341 | Mutexed<State>::Locked state(mState); |
| 1342 | if (state->get() != STARTING) { |
| 1343 | return UNKNOWN_ERROR; |
| 1344 | } |
| 1345 | comp = state->comp; |
| 1346 | return OK; |
| 1347 | }; |
| 1348 | if (tryAndReportOnError(checkStarting) != OK) { |
| 1349 | return; |
| 1350 | } |
| 1351 | |
| 1352 | c2_status_t err = comp->start(); |
| 1353 | if (err != C2_OK) { |
| 1354 | mCallback->onError(toStatusT(err, C2_OPERATION_Component_start), |
| 1355 | ACTION_CODE_FATAL); |
| 1356 | return; |
| 1357 | } |
| 1358 | sp<AMessage> inputFormat; |
| 1359 | sp<AMessage> outputFormat; |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 1360 | status_t err2 = OK; |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 1361 | bool buffersBoundToCodec = false; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1362 | { |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1363 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1364 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1365 | inputFormat = config->mInputFormat; |
Wonsik Kim | 274c832 | 2020-02-28 10:42:21 -0800 | [diff] [blame] | 1366 | // start triggers format dup |
| 1367 | outputFormat = config->mOutputFormat = config->mOutputFormat->dup(); |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 1368 | if (config->mInputSurface) { |
| 1369 | err2 = config->mInputSurface->start(); |
| 1370 | } |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 1371 | buffersBoundToCodec = config->mBuffersBoundToCodec; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1372 | } |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 1373 | if (err2 != OK) { |
| 1374 | mCallback->onError(err2, ACTION_CODE_FATAL); |
| 1375 | return; |
| 1376 | } |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 1377 | err2 = mChannel->start(inputFormat, outputFormat, buffersBoundToCodec); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1378 | if (err2 != OK) { |
| 1379 | mCallback->onError(err2, ACTION_CODE_FATAL); |
| 1380 | return; |
| 1381 | } |
| 1382 | |
| 1383 | auto setRunning = [this] { |
| 1384 | Mutexed<State>::Locked state(mState); |
| 1385 | if (state->get() != STARTING) { |
| 1386 | return UNKNOWN_ERROR; |
| 1387 | } |
| 1388 | state->set(RUNNING); |
| 1389 | return OK; |
| 1390 | }; |
| 1391 | if (tryAndReportOnError(setRunning) != OK) { |
| 1392 | return; |
| 1393 | } |
| 1394 | mCallback->onStartCompleted(); |
| 1395 | |
| 1396 | (void)mChannel->requestInitialInputBuffers(); |
| 1397 | } |
| 1398 | |
| 1399 | void CCodec::initiateShutdown(bool keepComponentAllocated) { |
| 1400 | if (keepComponentAllocated) { |
| 1401 | initiateStop(); |
| 1402 | } else { |
| 1403 | initiateRelease(); |
| 1404 | } |
| 1405 | } |
| 1406 | |
| 1407 | void CCodec::initiateStop() { |
| 1408 | { |
| 1409 | Mutexed<State>::Locked state(mState); |
| 1410 | if (state->get() == ALLOCATED |
| 1411 | || state->get() == RELEASED |
| 1412 | || state->get() == STOPPING |
| 1413 | || state->get() == RELEASING) { |
| 1414 | // We're already stopped, released, or doing it right now. |
| 1415 | state.unlock(); |
| 1416 | mCallback->onStopCompleted(); |
| 1417 | state.lock(); |
| 1418 | return; |
| 1419 | } |
| 1420 | state->set(STOPPING); |
| 1421 | } |
| 1422 | |
Wonsik Kim | 936a89c | 2020-05-08 16:07:50 -0700 | [diff] [blame] | 1423 | mChannel->reset(); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1424 | (new AMessage(kWhatStop, this))->post(); |
| 1425 | } |
| 1426 | |
| 1427 | void CCodec::stop() { |
| 1428 | std::shared_ptr<Codec2Client::Component> comp; |
| 1429 | { |
| 1430 | Mutexed<State>::Locked state(mState); |
| 1431 | if (state->get() == RELEASING) { |
| 1432 | state.unlock(); |
| 1433 | // We're already stopped or release is in progress. |
| 1434 | mCallback->onStopCompleted(); |
| 1435 | state.lock(); |
| 1436 | return; |
| 1437 | } else if (state->get() != STOPPING) { |
| 1438 | state.unlock(); |
| 1439 | mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL); |
| 1440 | state.lock(); |
| 1441 | return; |
| 1442 | } |
| 1443 | comp = state->comp; |
| 1444 | } |
| 1445 | status_t err = comp->stop(); |
| 1446 | if (err != C2_OK) { |
| 1447 | // TODO: convert err into status_t |
| 1448 | mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL); |
| 1449 | } |
| 1450 | |
| 1451 | { |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1452 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1453 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 1454 | if (config->mInputSurface) { |
| 1455 | config->mInputSurface->disconnect(); |
| 1456 | config->mInputSurface = nullptr; |
| 1457 | } |
| 1458 | } |
| 1459 | { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1460 | Mutexed<State>::Locked state(mState); |
| 1461 | if (state->get() == STOPPING) { |
| 1462 | state->set(ALLOCATED); |
| 1463 | } |
| 1464 | } |
| 1465 | mCallback->onStopCompleted(); |
| 1466 | } |
| 1467 | |
| 1468 | void CCodec::initiateRelease(bool sendCallback /* = true */) { |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 1469 | bool clearInputSurfaceIfNeeded = false; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1470 | { |
| 1471 | Mutexed<State>::Locked state(mState); |
| 1472 | if (state->get() == RELEASED || state->get() == RELEASING) { |
| 1473 | // We're already released or doing it right now. |
| 1474 | if (sendCallback) { |
| 1475 | state.unlock(); |
| 1476 | mCallback->onReleaseCompleted(); |
| 1477 | state.lock(); |
| 1478 | } |
| 1479 | return; |
| 1480 | } |
| 1481 | if (state->get() == ALLOCATING) { |
| 1482 | state->set(RELEASING); |
| 1483 | // With the altered state allocate() would fail and clean up. |
| 1484 | if (sendCallback) { |
| 1485 | state.unlock(); |
| 1486 | mCallback->onReleaseCompleted(); |
| 1487 | state.lock(); |
| 1488 | } |
| 1489 | return; |
| 1490 | } |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 1491 | if (state->get() == STARTING |
| 1492 | || state->get() == RUNNING |
| 1493 | || state->get() == STOPPING) { |
| 1494 | // Input surface may have been started, so clean up is needed. |
| 1495 | clearInputSurfaceIfNeeded = true; |
| 1496 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1497 | state->set(RELEASING); |
| 1498 | } |
| 1499 | |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 1500 | if (clearInputSurfaceIfNeeded) { |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1501 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1502 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 1f21336 | 2019-01-24 06:59:16 -0800 | [diff] [blame] | 1503 | if (config->mInputSurface) { |
| 1504 | config->mInputSurface->disconnect(); |
| 1505 | config->mInputSurface = nullptr; |
| 1506 | } |
| 1507 | } |
| 1508 | |
Wonsik Kim | 936a89c | 2020-05-08 16:07:50 -0700 | [diff] [blame] | 1509 | mChannel->reset(); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1510 | // thiz holds strong ref to this while the thread is running. |
| 1511 | sp<CCodec> thiz(this); |
| 1512 | std::thread([thiz, sendCallback] { thiz->release(sendCallback); }).detach(); |
| 1513 | } |
| 1514 | |
| 1515 | void CCodec::release(bool sendCallback) { |
| 1516 | std::shared_ptr<Codec2Client::Component> comp; |
| 1517 | { |
| 1518 | Mutexed<State>::Locked state(mState); |
| 1519 | if (state->get() == RELEASED) { |
| 1520 | if (sendCallback) { |
| 1521 | state.unlock(); |
| 1522 | mCallback->onReleaseCompleted(); |
| 1523 | state.lock(); |
| 1524 | } |
| 1525 | return; |
| 1526 | } |
| 1527 | comp = state->comp; |
| 1528 | } |
| 1529 | comp->release(); |
| 1530 | |
| 1531 | { |
| 1532 | Mutexed<State>::Locked state(mState); |
| 1533 | state->set(RELEASED); |
| 1534 | state->comp.reset(); |
| 1535 | } |
Wonsik Kim | 936a89c | 2020-05-08 16:07:50 -0700 | [diff] [blame] | 1536 | (new AMessage(kWhatRelease, this))->post(); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1537 | if (sendCallback) { |
| 1538 | mCallback->onReleaseCompleted(); |
| 1539 | } |
| 1540 | } |
| 1541 | |
| 1542 | status_t CCodec::setSurface(const sp<Surface> &surface) { |
| 1543 | return mChannel->setSurface(surface); |
| 1544 | } |
| 1545 | |
| 1546 | void CCodec::signalFlush() { |
| 1547 | status_t err = [this] { |
| 1548 | Mutexed<State>::Locked state(mState); |
| 1549 | if (state->get() == FLUSHED) { |
| 1550 | return ALREADY_EXISTS; |
| 1551 | } |
| 1552 | if (state->get() != RUNNING) { |
| 1553 | return UNKNOWN_ERROR; |
| 1554 | } |
| 1555 | state->set(FLUSHING); |
| 1556 | return OK; |
| 1557 | }(); |
| 1558 | switch (err) { |
| 1559 | case ALREADY_EXISTS: |
| 1560 | mCallback->onFlushCompleted(); |
| 1561 | return; |
| 1562 | case OK: |
| 1563 | break; |
| 1564 | default: |
| 1565 | mCallback->onError(err, ACTION_CODE_FATAL); |
| 1566 | return; |
| 1567 | } |
| 1568 | |
| 1569 | mChannel->stop(); |
| 1570 | (new AMessage(kWhatFlush, this))->post(); |
| 1571 | } |
| 1572 | |
| 1573 | void CCodec::flush() { |
| 1574 | std::shared_ptr<Codec2Client::Component> comp; |
| 1575 | auto checkFlushing = [this, &comp] { |
| 1576 | Mutexed<State>::Locked state(mState); |
| 1577 | if (state->get() != FLUSHING) { |
| 1578 | return UNKNOWN_ERROR; |
| 1579 | } |
| 1580 | comp = state->comp; |
| 1581 | return OK; |
| 1582 | }; |
| 1583 | if (tryAndReportOnError(checkFlushing) != OK) { |
| 1584 | return; |
| 1585 | } |
| 1586 | |
| 1587 | std::list<std::unique_ptr<C2Work>> flushedWork; |
| 1588 | c2_status_t err = comp->flush(C2Component::FLUSH_COMPONENT, &flushedWork); |
| 1589 | { |
| 1590 | Mutexed<std::list<std::unique_ptr<C2Work>>>::Locked queue(mWorkDoneQueue); |
| 1591 | flushedWork.splice(flushedWork.end(), *queue); |
| 1592 | } |
| 1593 | if (err != C2_OK) { |
| 1594 | // TODO: convert err into status_t |
| 1595 | mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL); |
| 1596 | } |
| 1597 | |
| 1598 | mChannel->flush(flushedWork); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1599 | |
| 1600 | { |
| 1601 | Mutexed<State>::Locked state(mState); |
Iris Chang | ce521ee | 2019-07-05 16:18:54 +0800 | [diff] [blame] | 1602 | if (state->get() == FLUSHING) { |
| 1603 | state->set(FLUSHED); |
| 1604 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1605 | } |
| 1606 | mCallback->onFlushCompleted(); |
| 1607 | } |
| 1608 | |
| 1609 | void CCodec::signalResume() { |
Wonsik Kim | e75a5da | 2020-02-14 17:29:03 -0800 | [diff] [blame] | 1610 | std::shared_ptr<Codec2Client::Component> comp; |
| 1611 | auto setResuming = [this, &comp] { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1612 | Mutexed<State>::Locked state(mState); |
| 1613 | if (state->get() != FLUSHED) { |
| 1614 | return UNKNOWN_ERROR; |
| 1615 | } |
| 1616 | state->set(RESUMING); |
Wonsik Kim | e75a5da | 2020-02-14 17:29:03 -0800 | [diff] [blame] | 1617 | comp = state->comp; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1618 | return OK; |
| 1619 | }; |
| 1620 | if (tryAndReportOnError(setResuming) != OK) { |
| 1621 | return; |
| 1622 | } |
| 1623 | |
Wonsik Kim | e75a5da | 2020-02-14 17:29:03 -0800 | [diff] [blame] | 1624 | { |
| 1625 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1626 | const std::unique_ptr<Config> &config = *configLocked; |
| 1627 | config->queryConfiguration(comp); |
| 1628 | } |
| 1629 | |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 1630 | (void)mChannel->start(nullptr, nullptr, [&]{ |
| 1631 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1632 | const std::unique_ptr<Config> &config = *configLocked; |
| 1633 | return config->mBuffersBoundToCodec; |
| 1634 | }()); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1635 | |
| 1636 | { |
| 1637 | Mutexed<State>::Locked state(mState); |
| 1638 | if (state->get() != RESUMING) { |
| 1639 | state.unlock(); |
| 1640 | mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL); |
| 1641 | state.lock(); |
| 1642 | return; |
| 1643 | } |
| 1644 | state->set(RUNNING); |
| 1645 | } |
| 1646 | |
| 1647 | (void)mChannel->requestInitialInputBuffers(); |
| 1648 | } |
| 1649 | |
Wonsik Kim | aa484ac | 2019-02-13 16:54:02 -0800 | [diff] [blame] | 1650 | void CCodec::signalSetParameters(const sp<AMessage> &msg) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1651 | std::shared_ptr<Codec2Client::Component> comp; |
| 1652 | auto checkState = [this, &comp] { |
| 1653 | Mutexed<State>::Locked state(mState); |
| 1654 | if (state->get() == RELEASED) { |
| 1655 | return INVALID_OPERATION; |
| 1656 | } |
| 1657 | comp = state->comp; |
| 1658 | return OK; |
| 1659 | }; |
| 1660 | if (tryAndReportOnError(checkState) != OK) { |
| 1661 | return; |
| 1662 | } |
| 1663 | |
Wonsik Kim | aa484ac | 2019-02-13 16:54:02 -0800 | [diff] [blame] | 1664 | // NOTE: We used to ignore "bitrate" at setParameters; replicate |
| 1665 | // the behavior here. |
| 1666 | sp<AMessage> params = msg; |
| 1667 | int32_t bitrate; |
| 1668 | if (params->findInt32(KEY_BIT_RATE, &bitrate)) { |
| 1669 | params = msg->dup(); |
| 1670 | params->removeEntryAt(params->findEntryByName(KEY_BIT_RATE)); |
| 1671 | } |
| 1672 | |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1673 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1674 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1675 | |
| 1676 | /** |
| 1677 | * Handle input surface parameters |
| 1678 | */ |
| 1679 | if ((config->mDomain & (Config::IS_VIDEO | Config::IS_IMAGE)) |
Wonsik Kim | 8a6ed37 | 2019-12-03 16:05:51 -0800 | [diff] [blame] | 1680 | && (config->mDomain & Config::IS_ENCODER) |
| 1681 | && config->mInputSurface && config->mISConfig) { |
Chong Zhang | 038e8f8 | 2019-02-06 19:05:14 -0800 | [diff] [blame] | 1682 | (void)params->findInt64(PARAMETER_KEY_OFFSET_TIME, &config->mISConfig->mTimeOffsetUs); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1683 | |
| 1684 | if (params->findInt64("skip-frames-before", &config->mISConfig->mStartAtUs)) { |
| 1685 | config->mISConfig->mStopped = false; |
| 1686 | } else if (params->findInt64("stop-time-us", &config->mISConfig->mStopAtUs)) { |
| 1687 | config->mISConfig->mStopped = true; |
| 1688 | } |
| 1689 | |
| 1690 | int32_t value; |
Chong Zhang | 038e8f8 | 2019-02-06 19:05:14 -0800 | [diff] [blame] | 1691 | if (params->findInt32(PARAMETER_KEY_SUSPEND, &value)) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1692 | config->mISConfig->mSuspended = value; |
| 1693 | config->mISConfig->mSuspendAtUs = -1; |
Chong Zhang | 038e8f8 | 2019-02-06 19:05:14 -0800 | [diff] [blame] | 1694 | (void)params->findInt64(PARAMETER_KEY_SUSPEND_TIME, &config->mISConfig->mSuspendAtUs); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1695 | } |
| 1696 | |
| 1697 | (void)config->mInputSurface->configure(*config->mISConfig); |
| 1698 | if (config->mISConfig->mStopped) { |
| 1699 | config->mInputFormat->setInt64( |
| 1700 | "android._stop-time-offset-us", config->mISConfig->mInputDelayUs); |
| 1701 | } |
| 1702 | } |
| 1703 | |
| 1704 | std::vector<std::unique_ptr<C2Param>> configUpdate; |
| 1705 | (void)config->getConfigUpdateFromSdkParams( |
| 1706 | comp, params, Config::IS_PARAM, C2_MAY_BLOCK, &configUpdate); |
| 1707 | // Prefer to pass parameters to the buffer channel, so they can be synchronized with the frames. |
| 1708 | // Parameter synchronization is not defined when using input surface. For now, route |
| 1709 | // these directly to the component. |
| 1710 | if (config->mInputSurface == nullptr |
| 1711 | && (property_get_bool("debug.stagefright.ccodec_delayed_params", false) |
| 1712 | || comp->getName().find("c2.android.") == 0)) { |
| 1713 | mChannel->setParameters(configUpdate); |
| 1714 | } else { |
Wonsik Kim | 3b4349a | 2020-11-10 11:54:15 -0800 | [diff] [blame^] | 1715 | sp<AMessage> outputFormat = config->mOutputFormat; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1716 | (void)config->setParameters(comp, configUpdate, C2_MAY_BLOCK); |
Wonsik Kim | 3b4349a | 2020-11-10 11:54:15 -0800 | [diff] [blame^] | 1717 | RevertOutputFormatIfNeeded(outputFormat, config->mOutputFormat); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1718 | } |
| 1719 | } |
| 1720 | |
| 1721 | void CCodec::signalEndOfInputStream() { |
| 1722 | mCallback->onSignaledInputEOS(mChannel->signalEndOfInputStream()); |
| 1723 | } |
| 1724 | |
| 1725 | void CCodec::signalRequestIDRFrame() { |
| 1726 | std::shared_ptr<Codec2Client::Component> comp; |
| 1727 | { |
| 1728 | Mutexed<State>::Locked state(mState); |
| 1729 | if (state->get() == RELEASED) { |
| 1730 | ALOGD("no IDR request sent since component is released"); |
| 1731 | return; |
| 1732 | } |
| 1733 | comp = state->comp; |
| 1734 | } |
| 1735 | ALOGV("request IDR"); |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1736 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1737 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1738 | std::vector<std::unique_ptr<C2Param>> params; |
| 1739 | params.push_back( |
| 1740 | std::make_unique<C2StreamRequestSyncFrameTuning::output>(0u, true)); |
| 1741 | config->setParameters(comp, params, C2_MAY_BLOCK); |
| 1742 | } |
| 1743 | |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 1744 | void CCodec::onWorkDone(std::list<std::unique_ptr<C2Work>> &workItems) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1745 | if (!workItems.empty()) { |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 1746 | Mutexed<std::list<std::unique_ptr<C2Work>>>::Locked queue(mWorkDoneQueue); |
| 1747 | queue->splice(queue->end(), workItems); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1748 | } |
| 1749 | (new AMessage(kWhatWorkDone, this))->post(); |
| 1750 | } |
| 1751 | |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 1752 | void CCodec::onInputBufferDone(uint64_t frameIndex, size_t arrayIndex) { |
| 1753 | mChannel->onInputBufferDone(frameIndex, arrayIndex); |
Wonsik Kim | 4f3314d | 2019-03-26 17:00:34 -0700 | [diff] [blame] | 1754 | if (arrayIndex == 0) { |
| 1755 | // We always put no more than one buffer per work, if we use an input surface. |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1756 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1757 | const std::unique_ptr<Config> &config = *configLocked; |
Wonsik Kim | 4f3314d | 2019-03-26 17:00:34 -0700 | [diff] [blame] | 1758 | if (config->mInputSurface) { |
| 1759 | config->mInputSurface->onInputBufferDone(frameIndex); |
| 1760 | } |
| 1761 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1762 | } |
| 1763 | |
| 1764 | void CCodec::onMessageReceived(const sp<AMessage> &msg) { |
| 1765 | TimePoint now = std::chrono::steady_clock::now(); |
| 1766 | CCodecWatchdog::getInstance()->watch(this); |
| 1767 | switch (msg->what()) { |
| 1768 | case kWhatAllocate: { |
| 1769 | // C2ComponentStore::createComponent() should return within 100ms. |
Wonsik Kim | 9ee5a7c | 2019-06-17 11:33:24 -0700 | [diff] [blame] | 1770 | setDeadline(now, 1500ms, "allocate"); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1771 | sp<RefBase> obj; |
| 1772 | CHECK(msg->findObject("codecInfo", &obj)); |
| 1773 | allocate((MediaCodecInfo *)obj.get()); |
| 1774 | break; |
| 1775 | } |
| 1776 | case kWhatConfigure: { |
| 1777 | // C2Component::commit_sm() should return within 5ms. |
Wonsik Kim | 9ee5a7c | 2019-06-17 11:33:24 -0700 | [diff] [blame] | 1778 | setDeadline(now, 1500ms, "configure"); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1779 | sp<AMessage> format; |
| 1780 | CHECK(msg->findMessage("format", &format)); |
| 1781 | configure(format); |
| 1782 | break; |
| 1783 | } |
| 1784 | case kWhatStart: { |
| 1785 | // C2Component::start() should return within 500ms. |
Wonsik Kim | 9ee5a7c | 2019-06-17 11:33:24 -0700 | [diff] [blame] | 1786 | setDeadline(now, 1500ms, "start"); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1787 | start(); |
| 1788 | break; |
| 1789 | } |
| 1790 | case kWhatStop: { |
| 1791 | // C2Component::stop() should return within 500ms. |
Wonsik Kim | 9ee5a7c | 2019-06-17 11:33:24 -0700 | [diff] [blame] | 1792 | setDeadline(now, 1500ms, "stop"); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1793 | stop(); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1794 | break; |
| 1795 | } |
| 1796 | case kWhatFlush: { |
| 1797 | // C2Component::flush_sm() should return within 5ms. |
Wonsik Kim | 9ee5a7c | 2019-06-17 11:33:24 -0700 | [diff] [blame] | 1798 | setDeadline(now, 1500ms, "flush"); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1799 | flush(); |
| 1800 | break; |
| 1801 | } |
Wonsik Kim | 936a89c | 2020-05-08 16:07:50 -0700 | [diff] [blame] | 1802 | case kWhatRelease: { |
| 1803 | mChannel->release(); |
| 1804 | mClient.reset(); |
| 1805 | mClientListener.reset(); |
| 1806 | break; |
| 1807 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1808 | case kWhatCreateInputSurface: { |
| 1809 | // Surface operations may be briefly blocking. |
Wonsik Kim | 9ee5a7c | 2019-06-17 11:33:24 -0700 | [diff] [blame] | 1810 | setDeadline(now, 1500ms, "createInputSurface"); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1811 | createInputSurface(); |
| 1812 | break; |
| 1813 | } |
| 1814 | case kWhatSetInputSurface: { |
| 1815 | // Surface operations may be briefly blocking. |
Wonsik Kim | 9ee5a7c | 2019-06-17 11:33:24 -0700 | [diff] [blame] | 1816 | setDeadline(now, 1500ms, "setInputSurface"); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1817 | sp<RefBase> obj; |
| 1818 | CHECK(msg->findObject("surface", &obj)); |
| 1819 | sp<PersistentSurface> surface(static_cast<PersistentSurface *>(obj.get())); |
| 1820 | setInputSurface(surface); |
| 1821 | break; |
| 1822 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1823 | case kWhatWorkDone: { |
| 1824 | std::unique_ptr<C2Work> work; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1825 | bool shouldPost = false; |
| 1826 | { |
| 1827 | Mutexed<std::list<std::unique_ptr<C2Work>>>::Locked queue(mWorkDoneQueue); |
| 1828 | if (queue->empty()) { |
| 1829 | break; |
| 1830 | } |
| 1831 | work.swap(queue->front()); |
| 1832 | queue->pop_front(); |
| 1833 | shouldPost = !queue->empty(); |
| 1834 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1835 | if (shouldPost) { |
| 1836 | (new AMessage(kWhatWorkDone, this))->post(); |
| 1837 | } |
| 1838 | |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1839 | // handle configuration changes in work done |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1840 | Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig); |
| 1841 | const std::unique_ptr<Config> &config = *configLocked; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1842 | Config::Watcher<C2StreamInitDataInfo::output> initData = |
| 1843 | config->watch<C2StreamInitDataInfo::output>(); |
| 1844 | if (!work->worklets.empty() |
| 1845 | && (work->worklets.front()->output.flags |
| 1846 | & C2FrameData::FLAG_DISCARD_FRAME) == 0) { |
| 1847 | |
| 1848 | // copy buffer info to config |
Wonsik Kim | 5ecf383 | 2019-04-18 10:28:58 -0700 | [diff] [blame] | 1849 | std::vector<std::unique_ptr<C2Param>> updates; |
| 1850 | for (const std::unique_ptr<C2Param> ¶m |
| 1851 | : work->worklets.front()->output.configUpdate) { |
| 1852 | updates.push_back(C2Param::Copy(*param)); |
| 1853 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1854 | unsigned stream = 0; |
| 1855 | for (const std::shared_ptr<C2Buffer> &buf : work->worklets.front()->output.buffers) { |
| 1856 | for (const std::shared_ptr<const C2Info> &info : buf->info()) { |
| 1857 | // move all info into output-stream #0 domain |
| 1858 | updates.emplace_back(C2Param::CopyAsStream(*info, true /* output */, stream)); |
| 1859 | } |
George Burgess IV | c813a59 | 2020-02-22 22:54:44 -0800 | [diff] [blame] | 1860 | |
| 1861 | const std::vector<C2ConstGraphicBlock> blocks = buf->data().graphicBlocks(); |
| 1862 | // for now only do the first block |
| 1863 | if (!blocks.empty()) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1864 | // ALOGV("got output buffer with crop %u,%u+%u,%u and size %u,%u", |
| 1865 | // block.crop().left, block.crop().top, |
| 1866 | // block.crop().width, block.crop().height, |
| 1867 | // block.width(), block.height()); |
George Burgess IV | c813a59 | 2020-02-22 22:54:44 -0800 | [diff] [blame] | 1868 | const C2ConstGraphicBlock &block = blocks[0]; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1869 | updates.emplace_back(new C2StreamCropRectInfo::output(stream, block.crop())); |
| 1870 | updates.emplace_back(new C2StreamPictureSizeInfo::output( |
Harish Mahendrakar | f7c49e2 | 2019-05-24 14:19:16 -0700 | [diff] [blame] | 1871 | stream, block.crop().width, block.crop().height)); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1872 | } |
| 1873 | ++stream; |
| 1874 | } |
| 1875 | |
Wonsik Kim | 3b4349a | 2020-11-10 11:54:15 -0800 | [diff] [blame^] | 1876 | sp<AMessage> outputFormat = config->mOutputFormat; |
| 1877 | config->updateConfiguration(updates, config->mOutputDomain); |
| 1878 | RevertOutputFormatIfNeeded(outputFormat, config->mOutputFormat); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1879 | |
| 1880 | // copy standard infos to graphic buffers if not already present (otherwise, we |
| 1881 | // may overwrite the actual intermediate value with a final value) |
| 1882 | stream = 0; |
George Burgess IV | 3f1a090 | 2020-03-18 12:58:32 -0700 | [diff] [blame] | 1883 | const static C2Param::Index stdGfxInfos[] = { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1884 | C2StreamRotationInfo::output::PARAM_TYPE, |
| 1885 | C2StreamColorAspectsInfo::output::PARAM_TYPE, |
| 1886 | C2StreamDataSpaceInfo::output::PARAM_TYPE, |
| 1887 | C2StreamHdrStaticInfo::output::PARAM_TYPE, |
Pawin Vongmasa | 8be9311 | 2018-12-11 14:01:42 -0800 | [diff] [blame] | 1888 | C2StreamHdr10PlusInfo::output::PARAM_TYPE, |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1889 | C2StreamPixelAspectRatioInfo::output::PARAM_TYPE, |
| 1890 | C2StreamSurfaceScalingInfo::output::PARAM_TYPE |
| 1891 | }; |
| 1892 | for (const std::shared_ptr<C2Buffer> &buf : work->worklets.front()->output.buffers) { |
| 1893 | if (buf->data().graphicBlocks().size()) { |
| 1894 | for (C2Param::Index ix : stdGfxInfos) { |
| 1895 | if (!buf->hasInfo(ix)) { |
| 1896 | const C2Param *param = |
| 1897 | config->getConfigParameterValue(ix.withStream(stream)); |
| 1898 | if (param) { |
| 1899 | std::shared_ptr<C2Param> info(C2Param::Copy(*param)); |
| 1900 | buf->setInfo(std::static_pointer_cast<C2Info>(info)); |
| 1901 | } |
| 1902 | } |
| 1903 | } |
| 1904 | } |
| 1905 | ++stream; |
| 1906 | } |
| 1907 | } |
Wonsik Kim | 4f3314d | 2019-03-26 17:00:34 -0700 | [diff] [blame] | 1908 | if (config->mInputSurface) { |
| 1909 | config->mInputSurface->onInputBufferDone(work->input.ordinal.frameIndex); |
| 1910 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1911 | mChannel->onWorkDone( |
Wonsik Kim | 3b4349a | 2020-11-10 11:54:15 -0800 | [diff] [blame^] | 1912 | std::move(work), config->mOutputFormat, |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 1913 | initData.hasChanged() ? initData.update().get() : nullptr); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1914 | break; |
| 1915 | } |
| 1916 | case kWhatWatch: { |
| 1917 | // watch message already posted; no-op. |
| 1918 | break; |
| 1919 | } |
| 1920 | default: { |
| 1921 | ALOGE("unrecognized message"); |
| 1922 | break; |
| 1923 | } |
| 1924 | } |
| 1925 | setDeadline(TimePoint::max(), 0ms, "none"); |
| 1926 | } |
| 1927 | |
| 1928 | void CCodec::setDeadline( |
| 1929 | const TimePoint &now, |
| 1930 | const std::chrono::milliseconds &timeout, |
| 1931 | const char *name) { |
| 1932 | int32_t mult = std::max(1, property_get_int32("debug.stagefright.ccodec_timeout_mult", 1)); |
| 1933 | Mutexed<NamedTimePoint>::Locked deadline(mDeadline); |
| 1934 | deadline->set(now + (timeout * mult), name); |
| 1935 | } |
| 1936 | |
| 1937 | void CCodec::initiateReleaseIfStuck() { |
| 1938 | std::string name; |
| 1939 | bool pendingDeadline = false; |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 1940 | { |
| 1941 | Mutexed<NamedTimePoint>::Locked deadline(mDeadline); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1942 | if (deadline->get() < std::chrono::steady_clock::now()) { |
| 1943 | name = deadline->getName(); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1944 | } |
| 1945 | if (deadline->get() != TimePoint::max()) { |
| 1946 | pendingDeadline = true; |
| 1947 | } |
| 1948 | } |
| 1949 | if (name.empty()) { |
Wonsik Kim | ab34ed6 | 2019-01-31 15:28:46 -0800 | [diff] [blame] | 1950 | constexpr std::chrono::steady_clock::duration kWorkDurationThreshold = 3s; |
| 1951 | std::chrono::steady_clock::duration elapsed = mChannel->elapsed(); |
| 1952 | if (elapsed >= kWorkDurationThreshold) { |
| 1953 | name = "queue"; |
| 1954 | } |
| 1955 | if (elapsed > 0s) { |
| 1956 | pendingDeadline = true; |
| 1957 | } |
| 1958 | } |
| 1959 | if (name.empty()) { |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1960 | // We're not stuck. |
| 1961 | if (pendingDeadline) { |
| 1962 | // If we are not stuck yet but still has deadline coming up, |
| 1963 | // post watch message to check back later. |
| 1964 | (new AMessage(kWhatWatch, this))->post(); |
| 1965 | } |
| 1966 | return; |
| 1967 | } |
| 1968 | |
| 1969 | ALOGW("previous call to %s exceeded timeout", name.c_str()); |
| 1970 | initiateRelease(false); |
| 1971 | mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL); |
| 1972 | } |
| 1973 | |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 1974 | // static |
| 1975 | PersistentSurface *CCodec::CreateInputSurface() { |
Pawin Vongmasa | 1858832 | 2019-05-18 01:52:13 -0700 | [diff] [blame] | 1976 | using namespace android; |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1977 | using ::android::hardware::media::omx::V1_0::implementation::TWGraphicBufferSource; |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1978 | // Attempt to create a Codec2's input surface. |
Pawin Vongmasa | 1858832 | 2019-05-18 01:52:13 -0700 | [diff] [blame] | 1979 | std::shared_ptr<Codec2Client::InputSurface> inputSurface = |
| 1980 | Codec2Client::CreateInputSurface(); |
Lajos Molnar | 4711827 | 2019-01-31 16:28:04 -0800 | [diff] [blame] | 1981 | if (!inputSurface) { |
Pawin Vongmasa | 1858832 | 2019-05-18 01:52:13 -0700 | [diff] [blame] | 1982 | if (property_get_int32("debug.stagefright.c2inputsurface", 0) == -1) { |
| 1983 | sp<IGraphicBufferProducer> gbp; |
| 1984 | sp<OmxGraphicBufferSource> gbs = new OmxGraphicBufferSource(); |
| 1985 | status_t err = gbs->initCheck(); |
| 1986 | if (err != OK) { |
| 1987 | ALOGE("Failed to create persistent input surface: error %d", err); |
| 1988 | return nullptr; |
| 1989 | } |
| 1990 | return new PersistentSurface( |
Wonsik Kim | 9917d4a | 2019-10-24 12:56:38 -0700 | [diff] [blame] | 1991 | gbs->getIGraphicBufferProducer(), new TWGraphicBufferSource(gbs)); |
Pawin Vongmasa | 1858832 | 2019-05-18 01:52:13 -0700 | [diff] [blame] | 1992 | } else { |
| 1993 | return nullptr; |
| 1994 | } |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 1995 | } |
Pawin Vongmasa | 1858832 | 2019-05-18 01:52:13 -0700 | [diff] [blame] | 1996 | return new PersistentSurface( |
Lajos Molnar | 4711827 | 2019-01-31 16:28:04 -0800 | [diff] [blame] | 1997 | inputSurface->getGraphicBufferProducer(), |
Pawin Vongmasa | 1858832 | 2019-05-18 01:52:13 -0700 | [diff] [blame] | 1998 | static_cast<sp<android::hidl::base::V1_0::IBase>>( |
Lajos Molnar | 4711827 | 2019-01-31 16:28:04 -0800 | [diff] [blame] | 1999 | inputSurface->getHalInterface())); |
Pawin Vongmasa | 3665390 | 2018-11-15 00:10:25 -0800 | [diff] [blame] | 2000 | } |
| 2001 | |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2002 | class IntfCache { |
| 2003 | public: |
| 2004 | IntfCache() = default; |
| 2005 | |
| 2006 | status_t init(const std::string &name) { |
| 2007 | std::shared_ptr<Codec2Client::Interface> intf{ |
| 2008 | Codec2Client::CreateInterfaceByName(name.c_str())}; |
| 2009 | if (!intf) { |
| 2010 | ALOGW("IntfCache [%s]: Unrecognized interface name", name.c_str()); |
| 2011 | mInitStatus = NO_INIT; |
| 2012 | return NO_INIT; |
| 2013 | } |
| 2014 | const static C2StreamUsageTuning::input sUsage{0u /* stream id */}; |
| 2015 | mFields.push_back(C2FieldSupportedValuesQuery::Possible( |
| 2016 | C2ParamField{&sUsage, &sUsage.value})); |
| 2017 | c2_status_t err = intf->querySupportedValues(mFields, C2_MAY_BLOCK); |
| 2018 | if (err != C2_OK) { |
| 2019 | ALOGW("IntfCache [%s]: failed to query usage supported value (err=%d)", |
| 2020 | name.c_str(), err); |
| 2021 | mFields[0].status = err; |
| 2022 | } |
| 2023 | std::vector<std::unique_ptr<C2Param>> params; |
| 2024 | err = intf->query( |
| 2025 | {&mApiFeatures}, |
| 2026 | {C2PortAllocatorsTuning::input::PARAM_TYPE}, |
| 2027 | C2_MAY_BLOCK, |
| 2028 | ¶ms); |
| 2029 | if (err != C2_OK && err != C2_BAD_INDEX) { |
| 2030 | ALOGW("IntfCache [%s]: failed to query api features (err=%d)", |
| 2031 | name.c_str(), err); |
| 2032 | } |
| 2033 | while (!params.empty()) { |
| 2034 | C2Param *param = params.back().release(); |
| 2035 | params.pop_back(); |
| 2036 | if (!param) { |
| 2037 | continue; |
| 2038 | } |
| 2039 | if (param->type() == C2PortAllocatorsTuning::input::PARAM_TYPE) { |
| 2040 | mInputAllocators.reset( |
| 2041 | C2PortAllocatorsTuning::input::From(params[0].get())); |
| 2042 | } |
| 2043 | } |
| 2044 | mInitStatus = OK; |
| 2045 | return OK; |
Wonsik Kim | fcf46c3 | 2020-04-22 13:50:45 -0700 | [diff] [blame] | 2046 | } |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2047 | |
| 2048 | status_t initCheck() const { return mInitStatus; } |
| 2049 | |
| 2050 | const C2FieldSupportedValuesQuery &getUsageSupportedValues() const { |
| 2051 | CHECK_EQ(1u, mFields.size()); |
| 2052 | return mFields[0]; |
| 2053 | } |
| 2054 | |
| 2055 | const C2ApiFeaturesSetting &getApiFeatures() const { |
| 2056 | return mApiFeatures; |
| 2057 | } |
| 2058 | |
| 2059 | const C2PortAllocatorsTuning::input &getInputAllocators() const { |
| 2060 | static std::unique_ptr<C2PortAllocatorsTuning::input> sInvalidated = []{ |
| 2061 | std::unique_ptr<C2PortAllocatorsTuning::input> param = |
| 2062 | C2PortAllocatorsTuning::input::AllocUnique(0); |
| 2063 | param->invalidate(); |
| 2064 | return param; |
| 2065 | }(); |
| 2066 | return mInputAllocators ? *mInputAllocators : *sInvalidated; |
| 2067 | } |
| 2068 | |
| 2069 | private: |
| 2070 | status_t mInitStatus{NO_INIT}; |
| 2071 | |
| 2072 | std::vector<C2FieldSupportedValuesQuery> mFields; |
| 2073 | C2ApiFeaturesSetting mApiFeatures; |
| 2074 | std::unique_ptr<C2PortAllocatorsTuning::input> mInputAllocators; |
| 2075 | }; |
| 2076 | |
| 2077 | static const IntfCache &GetIntfCache(const std::string &name) { |
| 2078 | static IntfCache sNullIntfCache; |
| 2079 | static std::mutex sMutex; |
| 2080 | static std::map<std::string, IntfCache> sCache; |
| 2081 | std::unique_lock<std::mutex> lock{sMutex}; |
| 2082 | auto it = sCache.find(name); |
| 2083 | if (it == sCache.end()) { |
| 2084 | lock.unlock(); |
| 2085 | IntfCache intfCache; |
| 2086 | status_t err = intfCache.init(name); |
| 2087 | if (err != OK) { |
| 2088 | return sNullIntfCache; |
| 2089 | } |
| 2090 | lock.lock(); |
| 2091 | it = sCache.insert({name, std::move(intfCache)}).first; |
| 2092 | } |
| 2093 | return it->second; |
Wonsik Kim | fcf46c3 | 2020-04-22 13:50:45 -0700 | [diff] [blame] | 2094 | } |
| 2095 | |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2096 | static status_t GetCommonAllocatorIds( |
| 2097 | const std::vector<std::string> &names, |
| 2098 | C2Allocator::type_t type, |
| 2099 | std::set<C2Allocator::id_t> *ids) { |
| 2100 | int poolMask = GetCodec2PoolMask(); |
| 2101 | C2PlatformAllocatorStore::id_t preferredLinearId = GetPreferredLinearAllocatorId(poolMask); |
| 2102 | C2Allocator::id_t defaultAllocatorId = |
| 2103 | (type == C2Allocator::LINEAR) ? preferredLinearId : C2PlatformAllocatorStore::GRALLOC; |
| 2104 | |
| 2105 | ids->clear(); |
| 2106 | if (names.empty()) { |
| 2107 | return OK; |
| 2108 | } |
Wonsik Kim | fcf46c3 | 2020-04-22 13:50:45 -0700 | [diff] [blame] | 2109 | bool firstIteration = true; |
| 2110 | for (const std::string &name : names) { |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2111 | const IntfCache &intfCache = GetIntfCache(name); |
| 2112 | if (intfCache.initCheck() != OK) { |
Wonsik Kim | fcf46c3 | 2020-04-22 13:50:45 -0700 | [diff] [blame] | 2113 | continue; |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2114 | } |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2115 | const C2PortAllocatorsTuning::input &allocators = intfCache.getInputAllocators(); |
Wonsik Kim | fcf46c3 | 2020-04-22 13:50:45 -0700 | [diff] [blame] | 2116 | if (firstIteration) { |
| 2117 | firstIteration = false; |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2118 | if (allocators && allocators.flexCount() > 0) { |
| 2119 | ids->insert(allocators.m.values, |
| 2120 | allocators.m.values + allocators.flexCount()); |
Wonsik Kim | fcf46c3 | 2020-04-22 13:50:45 -0700 | [diff] [blame] | 2121 | } |
| 2122 | if (ids->empty()) { |
| 2123 | // The component does not advertise allocators. Use default. |
| 2124 | ids->insert(defaultAllocatorId); |
| 2125 | } |
| 2126 | continue; |
| 2127 | } |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2128 | bool filtered = false; |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2129 | if (allocators && allocators.flexCount() > 0) { |
| 2130 | filtered = true; |
| 2131 | for (auto it = ids->begin(); it != ids->end(); ) { |
| 2132 | bool found = false; |
| 2133 | for (size_t j = 0; j < allocators.flexCount(); ++j) { |
| 2134 | if (allocators.m.values[j] == *it) { |
| 2135 | found = true; |
| 2136 | break; |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2137 | } |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2138 | } |
| 2139 | if (found) { |
| 2140 | ++it; |
| 2141 | } else { |
| 2142 | it = ids->erase(it); |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2143 | } |
| 2144 | } |
| 2145 | } |
| 2146 | if (!filtered) { |
| 2147 | // The component does not advertise supported allocators. Use default. |
| 2148 | bool containsDefault = (ids->count(defaultAllocatorId) > 0u); |
| 2149 | if (ids->size() != (containsDefault ? 1 : 0)) { |
| 2150 | ids->clear(); |
| 2151 | if (containsDefault) { |
| 2152 | ids->insert(defaultAllocatorId); |
| 2153 | } |
| 2154 | } |
| 2155 | } |
| 2156 | } |
| 2157 | // Finally, filter with pool masks |
| 2158 | for (auto it = ids->begin(); it != ids->end(); ) { |
| 2159 | if ((poolMask >> *it) & 1) { |
| 2160 | ++it; |
| 2161 | } else { |
| 2162 | it = ids->erase(it); |
| 2163 | } |
| 2164 | } |
| 2165 | return OK; |
| 2166 | } |
| 2167 | |
| 2168 | static status_t CalculateMinMaxUsage( |
| 2169 | const std::vector<std::string> &names, uint64_t *minUsage, uint64_t *maxUsage) { |
| 2170 | static C2StreamUsageTuning::input sUsage{0u /* stream id */}; |
| 2171 | *minUsage = 0; |
| 2172 | *maxUsage = ~0ull; |
| 2173 | for (const std::string &name : names) { |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2174 | const IntfCache &intfCache = GetIntfCache(name); |
| 2175 | if (intfCache.initCheck() != OK) { |
Wonsik Kim | fcf46c3 | 2020-04-22 13:50:45 -0700 | [diff] [blame] | 2176 | continue; |
| 2177 | } |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2178 | const C2FieldSupportedValuesQuery &usageSupportedValues = |
| 2179 | intfCache.getUsageSupportedValues(); |
| 2180 | if (usageSupportedValues.status != C2_OK) { |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2181 | continue; |
| 2182 | } |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2183 | const C2FieldSupportedValues &supported = usageSupportedValues.values; |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2184 | if (supported.type != C2FieldSupportedValues::FLAGS) { |
| 2185 | continue; |
| 2186 | } |
| 2187 | if (supported.values.empty()) { |
| 2188 | *maxUsage = 0; |
| 2189 | continue; |
| 2190 | } |
| 2191 | *minUsage |= supported.values[0].u64; |
| 2192 | int64_t currentMaxUsage = 0; |
| 2193 | for (const C2Value::Primitive &flags : supported.values) { |
| 2194 | currentMaxUsage |= flags.u64; |
| 2195 | } |
| 2196 | *maxUsage &= currentMaxUsage; |
| 2197 | } |
| 2198 | return OK; |
| 2199 | } |
| 2200 | |
| 2201 | // static |
| 2202 | status_t CCodec::CanFetchLinearBlock( |
| 2203 | const std::vector<std::string> &names, const C2MemoryUsage &usage, bool *isCompatible) { |
Wonsik Kim | ffb889a | 2020-05-28 11:32:25 -0700 | [diff] [blame] | 2204 | for (const std::string &name : names) { |
| 2205 | const IntfCache &intfCache = GetIntfCache(name); |
| 2206 | if (intfCache.initCheck() != OK) { |
| 2207 | continue; |
| 2208 | } |
| 2209 | const C2ApiFeaturesSetting &features = intfCache.getApiFeatures(); |
| 2210 | if (features && !(features.value & API_SAME_INPUT_BUFFER)) { |
| 2211 | *isCompatible = false; |
| 2212 | return OK; |
| 2213 | } |
| 2214 | } |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2215 | std::set<C2Allocator::id_t> allocators; |
| 2216 | GetCommonAllocatorIds(names, C2Allocator::LINEAR, &allocators); |
| 2217 | if (allocators.empty()) { |
| 2218 | *isCompatible = false; |
| 2219 | return OK; |
| 2220 | } |
Chih-Yu Huang | 990b562 | 2020-10-13 14:53:37 +0900 | [diff] [blame] | 2221 | |
| 2222 | uint64_t minUsage = 0; |
| 2223 | uint64_t maxUsage = ~0ull; |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2224 | CalculateMinMaxUsage(names, &minUsage, &maxUsage); |
Chih-Yu Huang | 990b562 | 2020-10-13 14:53:37 +0900 | [diff] [blame] | 2225 | minUsage |= usage.expected; |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2226 | *isCompatible = ((maxUsage & minUsage) == minUsage); |
| 2227 | return OK; |
| 2228 | } |
| 2229 | |
| 2230 | static std::shared_ptr<C2BlockPool> GetPool(C2Allocator::id_t allocId) { |
| 2231 | static std::mutex sMutex{}; |
| 2232 | static std::map<C2Allocator::id_t, std::shared_ptr<C2BlockPool>> sPools; |
| 2233 | std::unique_lock<std::mutex> lock{sMutex}; |
| 2234 | std::shared_ptr<C2BlockPool> pool; |
| 2235 | auto it = sPools.find(allocId); |
| 2236 | if (it == sPools.end()) { |
| 2237 | c2_status_t err = CreateCodec2BlockPool(allocId, nullptr, &pool); |
| 2238 | if (err == OK) { |
| 2239 | sPools.emplace(allocId, pool); |
| 2240 | } else { |
| 2241 | pool.reset(); |
| 2242 | } |
| 2243 | } else { |
| 2244 | pool = it->second; |
| 2245 | } |
| 2246 | return pool; |
| 2247 | } |
| 2248 | |
| 2249 | // static |
| 2250 | std::shared_ptr<C2LinearBlock> CCodec::FetchLinearBlock( |
| 2251 | size_t capacity, const C2MemoryUsage &usage, const std::vector<std::string> &names) { |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2252 | std::set<C2Allocator::id_t> allocators; |
| 2253 | GetCommonAllocatorIds(names, C2Allocator::LINEAR, &allocators); |
| 2254 | if (allocators.empty()) { |
| 2255 | allocators.insert(C2PlatformAllocatorStore::DEFAULT_LINEAR); |
| 2256 | } |
Chih-Yu Huang | 990b562 | 2020-10-13 14:53:37 +0900 | [diff] [blame] | 2257 | |
| 2258 | uint64_t minUsage = 0; |
| 2259 | uint64_t maxUsage = ~0ull; |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2260 | CalculateMinMaxUsage(names, &minUsage, &maxUsage); |
Chih-Yu Huang | 990b562 | 2020-10-13 14:53:37 +0900 | [diff] [blame] | 2261 | minUsage |= usage.expected; |
Wonsik Kim | fb7a767 | 2019-12-27 17:13:33 -0800 | [diff] [blame] | 2262 | if ((maxUsage & minUsage) != minUsage) { |
| 2263 | allocators.clear(); |
| 2264 | allocators.insert(C2PlatformAllocatorStore::DEFAULT_LINEAR); |
| 2265 | } |
| 2266 | std::shared_ptr<C2LinearBlock> block; |
| 2267 | for (C2Allocator::id_t allocId : allocators) { |
| 2268 | std::shared_ptr<C2BlockPool> pool = GetPool(allocId); |
| 2269 | if (!pool) { |
| 2270 | continue; |
| 2271 | } |
| 2272 | c2_status_t err = pool->fetchLinearBlock(capacity, C2MemoryUsage{minUsage}, &block); |
| 2273 | if (err != C2_OK || !block) { |
| 2274 | block.reset(); |
| 2275 | continue; |
| 2276 | } |
| 2277 | break; |
| 2278 | } |
| 2279 | return block; |
| 2280 | } |
| 2281 | |
| 2282 | // static |
| 2283 | status_t CCodec::CanFetchGraphicBlock( |
| 2284 | const std::vector<std::string> &names, bool *isCompatible) { |
| 2285 | uint64_t minUsage = 0; |
| 2286 | uint64_t maxUsage = ~0ull; |
| 2287 | std::set<C2Allocator::id_t> allocators; |
| 2288 | GetCommonAllocatorIds(names, C2Allocator::GRAPHIC, &allocators); |
| 2289 | if (allocators.empty()) { |
| 2290 | *isCompatible = false; |
| 2291 | return OK; |
| 2292 | } |
| 2293 | CalculateMinMaxUsage(names, &minUsage, &maxUsage); |
| 2294 | *isCompatible = ((maxUsage & minUsage) == minUsage); |
| 2295 | return OK; |
| 2296 | } |
| 2297 | |
| 2298 | // static |
| 2299 | std::shared_ptr<C2GraphicBlock> CCodec::FetchGraphicBlock( |
| 2300 | int32_t width, |
| 2301 | int32_t height, |
| 2302 | int32_t format, |
| 2303 | uint64_t usage, |
| 2304 | const std::vector<std::string> &names) { |
| 2305 | uint32_t halPixelFormat = HAL_PIXEL_FORMAT_YCBCR_420_888; |
| 2306 | if (!C2Mapper::mapPixelFormatFrameworkToCodec(format, &halPixelFormat)) { |
| 2307 | ALOGD("Unrecognized pixel format: %d", format); |
| 2308 | return nullptr; |
| 2309 | } |
| 2310 | uint64_t minUsage = 0; |
| 2311 | uint64_t maxUsage = ~0ull; |
| 2312 | std::set<C2Allocator::id_t> allocators; |
| 2313 | GetCommonAllocatorIds(names, C2Allocator::GRAPHIC, &allocators); |
| 2314 | if (allocators.empty()) { |
| 2315 | allocators.insert(C2PlatformAllocatorStore::DEFAULT_GRAPHIC); |
| 2316 | } |
| 2317 | CalculateMinMaxUsage(names, &minUsage, &maxUsage); |
| 2318 | minUsage |= usage; |
| 2319 | if ((maxUsage & minUsage) != minUsage) { |
| 2320 | allocators.clear(); |
| 2321 | allocators.insert(C2PlatformAllocatorStore::DEFAULT_GRAPHIC); |
| 2322 | } |
| 2323 | std::shared_ptr<C2GraphicBlock> block; |
| 2324 | for (C2Allocator::id_t allocId : allocators) { |
| 2325 | std::shared_ptr<C2BlockPool> pool; |
| 2326 | c2_status_t err = CreateCodec2BlockPool(allocId, nullptr, &pool); |
| 2327 | if (err != C2_OK || !pool) { |
| 2328 | continue; |
| 2329 | } |
| 2330 | err = pool->fetchGraphicBlock( |
| 2331 | width, height, halPixelFormat, C2MemoryUsage{minUsage}, &block); |
| 2332 | if (err != C2_OK || !block) { |
| 2333 | block.reset(); |
| 2334 | continue; |
| 2335 | } |
| 2336 | break; |
| 2337 | } |
| 2338 | return block; |
| 2339 | } |
| 2340 | |
Wonsik Kim | 155d5cb | 2019-10-09 12:49:49 -0700 | [diff] [blame] | 2341 | } // namespace android |
| 2342 | |