blob: 4fd03415d63f11d55bef7a73f5e1a4cf8e61e7c6 [file] [log] [blame]
Pawin Vongmasa36653902018-11-15 00:10:25 -08001/*
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 Vongmasa36653902018-11-15 00:10:25 -080029#include <android/IOMXBufferSource.h>
Pawin Vongmasabf69de92019-10-29 06:21:27 -070030#include <android/hardware/media/c2/1.0/IInputSurface.h>
Pawin Vongmasa36653902018-11-15 00:10:25 -080031#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 Kim9917d4a2019-10-24 12:56:38 -070038#include <media/omx/1.0/WOmxNode.h>
39#include <media/openmax/OMX_Core.h>
Pawin Vongmasa36653902018-11-15 00:10:25 -080040#include <media/openmax/OMX_IndexExt.h>
Wonsik Kim9917d4a2019-10-24 12:56:38 -070041#include <media/stagefright/omx/1.0/WGraphicBufferSource.h>
42#include <media/stagefright/omx/OmxGraphicBufferSource.h>
Wonsik Kim155d5cb2019-10-09 12:49:49 -070043#include <media/stagefright/CCodec.h>
Pawin Vongmasa36653902018-11-15 00:10:25 -080044#include <media/stagefright/BufferProducerWrapper.h>
45#include <media/stagefright/MediaCodecConstants.h>
46#include <media/stagefright/PersistentSurface.h>
Pawin Vongmasa36653902018-11-15 00:10:25 -080047
48#include "C2OMXNode.h"
Pawin Vongmasa36653902018-11-15 00:10:25 -080049#include "CCodecBufferChannel.h"
Wonsik Kim155d5cb2019-10-09 12:49:49 -070050#include "CCodecConfig.h"
Wonsik Kimfb7a7672019-12-27 17:13:33 -080051#include "Codec2Mapper.h"
Pawin Vongmasa36653902018-11-15 00:10:25 -080052#include "InputSurfaceWrapper.h"
53
54extern "C" android::PersistentSurface *CreateInputSurface();
55
56namespace android {
57
58using namespace std::chrono_literals;
59using ::android::hardware::graphics::bufferqueue::V1_0::utils::H2BGraphicBufferProducer;
60using android::base::StringPrintf;
Pawin Vongmasad0f0e142018-11-15 03:36:28 -080061using ::android::hardware::media::c2::V1_0::IInputSurface;
Pawin Vongmasa36653902018-11-15 00:10:25 -080062
Wonsik Kim9917d4a2019-10-24 12:56:38 -070063typedef hardware::media::omx::V1_0::IGraphicBufferSource HGraphicBufferSource;
Wonsik Kim155d5cb2019-10-09 12:49:49 -070064typedef CCodecConfig Config;
Wonsik Kim9917d4a2019-10-24 12:56:38 -070065
Pawin Vongmasa36653902018-11-15 00:10:25 -080066namespace {
67
68class CCodecWatchdog : public AHandler {
69private:
70 enum {
71 kWhatWatch,
72 };
73 constexpr static int64_t kWatchIntervalUs = 3300000; // 3.3 secs
74
75public:
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
101protected:
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
124private:
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
139class C2InputSurfaceWrapper : public InputSurfaceWrapper {
140public:
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 Vongmasa1c75a232019-01-09 04:41:52 -0800152 return toStatusT(comp->connectToInputSurface(mSurface, &mConnection));
Pawin Vongmasa36653902018-11-15 00:10:25 -0800153 }
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 Vongmasa1c75a232019-01-09 04:41:52 -0800170 c2_status_t err = mSurface->config({&eos}, C2_MAY_BLOCK, &failures);
Pawin Vongmasa36653902018-11-15 00:10:25 -0800171 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
182private:
183 std::shared_ptr<Codec2Client::InputSurface> mSurface;
184 std::shared_ptr<Codec2Client::InputSurfaceConnection> mConnection;
185};
186
187class GraphicBufferSourceWrapper : public InputSurfaceWrapper {
188public:
Wonsik Kim9917d4a2019-10-24 12:56:38 -0700189 typedef hardware::media::omx::V1_0::Status OmxStatus;
190
Pawin Vongmasa36653902018-11-15 00:10:25 -0800191 GraphicBufferSourceWrapper(
Wonsik Kim9917d4a2019-10-24 12:56:38 -0700192 const sp<HGraphicBufferSource> &source,
Pawin Vongmasa36653902018-11-15 00:10:25 -0800193 uint32_t width,
Wonsik Kim9eac4d12019-05-23 12:58:48 -0700194 uint32_t height,
195 uint64_t usage)
Pawin Vongmasa36653902018-11-15 00:10:25 -0800196 : mSource(source), mWidth(width), mHeight(height) {
197 mDataSpace = HAL_DATASPACE_BT709;
Wonsik Kim9eac4d12019-05-23 12:58:48 -0700198 mConfig.mUsage = usage;
Pawin Vongmasa36653902018-11-15 00:10:25 -0800199 }
200 ~GraphicBufferSourceWrapper() override = default;
201
202 status_t connect(const std::shared_ptr<Codec2Client::Component> &comp) override {
203 mNode = new C2OMXNode(comp);
Wonsik Kim9917d4a2019-10-24 12:56:38 -0700204 mOmxNode = new hardware::media::omx::V1_0::utils::TWOmxNode(mNode);
Pawin Vongmasa36653902018-11-15 00:10:25 -0800205 mNode->setFrameSize(mWidth, mHeight);
206
Wonsik Kim9eac4d12019-05-23 12:58:48 -0700207 // 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 Vongmasa36653902018-11-15 00:10:25 -0800213 // NOTE: we do not use/pass through color aspects from GraphicBufferSource as we
214 // communicate that directly to the component.
Wonsik Kim9917d4a2019-10-24 12:56:38 -0700215 mSource->configure(
216 mOmxNode, static_cast<hardware::graphics::common::V1_0::Dataspace>(mDataSpace));
Pawin Vongmasa36653902018-11-15 00:10:25 -0800217 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 Kim9917d4a2019-10-24 12:56:38 -0700232 mOmxNode.clear();
Pawin Vongmasa36653902018-11-15 00:10:25 -0800233 }
234
Wonsik Kim9917d4a2019-10-24 12:56:38 -0700235 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 Vongmasa36653902018-11-15 00:10:25 -0800240 }
Wonsik Kim9917d4a2019-10-24 12:56:38 -0700241 return UNKNOWN_ERROR;
Pawin Vongmasa36653902018-11-15 00:10:25 -0800242 }
243
244 status_t start() override {
245 sp<IOMXBufferSource> source = mNode->getSource();
246 if (source == nullptr) {
247 return NO_INIT;
248 }
Taehwan Kim8b3bcdd2020-11-26 22:40:40 +0900249
Wonsik Kim0f6b61d2021-01-05 18:55:22 -0800250 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 Kim8b3bcdd2020-11-26 22:40:40 +0900256
Wonsik Kim0f6b61d2021-01-05 18:55:22 -0800257 OMX_PARAM_PORTDEFINITIONTYPE param;
258 param.nPortIndex = kPortIndexInput;
259 status_t err = mNode->getParameter(OMX_IndexParamPortDefinition,
260 &param, sizeof(param));
261 if (err == OK) {
262 numSlots = param.nBufferCountActual;
263 }
Taehwan Kim8b3bcdd2020-11-26 22:40:40 +0900264 }
265
266 for (size_t i = 0; i < numSlots; ++i) {
Pawin Vongmasa36653902018-11-15 00:10:25 -0800267 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 Kim95ba0162019-03-19 15:51:54 -0700302 float gap = (config.mMinAdjustedFps > 0)
Pawin Vongmasa36653902018-11-15 00:10:25 -0800303 ? c2_min(INT32_MAX + 0., 1e6 / config.mMinAdjustedFps + 0.5)
304 : c2_max(0. - INT32_MAX, -1e6 / config.mFixedAdjustedFps - 0.5);
Wonsik Kim95ba0162019-03-19 15:51:54 -0700305 // 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 Vongmasa36653902018-11-15 00:10:25 -0800308 (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 Kim95ba0162019-03-19 15:51:54 -0700316 if ((config.mMaxFps > 0 || (config.mFixedAdjustedFps > 0 && config.mMaxFps == -1))
Pawin Vongmasa36653902018-11-15 00:10:25 -0800317 && 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 Kim9917d4a2019-10-24 12:56:38 -0700382 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 Vongmasa36653902018-11-15 00:10:25 -0800391 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 Kim9eac4d12019-05-23 12:58:48 -0700404 // consumer usage is queried earlier.
405
Wonsik Kimbd557932019-07-02 15:51:20 -0700406 if (status.str().empty()) {
407 ALOGD("ISConfig not changed");
408 } else {
409 ALOGD("ISConfig%s", status.str().c_str());
410 }
Pawin Vongmasa36653902018-11-15 00:10:25 -0800411 return err;
412 }
413
Wonsik Kim4f3314d2019-03-26 17:00:34 -0700414 void onInputBufferDone(c2_cntr64_t index) override {
415 mNode->onInputBufferDone(index);
416 }
417
Pawin Vongmasa36653902018-11-15 00:10:25 -0800418private:
Wonsik Kim9917d4a2019-10-24 12:56:38 -0700419 sp<HGraphicBufferSource> mSource;
Pawin Vongmasa36653902018-11-15 00:10:25 -0800420 sp<C2OMXNode> mNode;
Wonsik Kim9917d4a2019-10-24 12:56:38 -0700421 sp<hardware::media::omx::V1_0::IOmxNode> mOmxNode;
Pawin Vongmasa36653902018-11-15 00:10:25 -0800422 uint32_t mWidth;
423 uint32_t mHeight;
424 Config mConfig;
425};
426
427class Codec2ClientInterfaceWrapper : public C2ComponentStore {
428 std::shared_ptr<Codec2Client> mClient;
429
430public:
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 *> &params,
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 Kim3b4349a2020-11-10 11:54:15 -0800490void RevertOutputFormatIfNeeded(
491 const sp<AMessage> &oldFormat, sp<AMessage> &currentFormat) {
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 Vongmasa36653902018-11-15 00:10:25 -0800515} // namespace
516
517// CCodec::ClientListener
518
519struct 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 Kimab34ed62019-01-31 15:28:46 -0800525 std::list<std::unique_ptr<C2Work>>& workItems) override {
Pawin Vongmasa36653902018-11-15 00:10:25 -0800526 (void)component;
527 sp<CCodec> codec(mCodec.promote());
528 if (!codec) {
529 return;
530 }
Wonsik Kimab34ed62019-01-31 15:28:46 -0800531 codec->onWorkDone(workItems);
Pawin Vongmasa36653902018-11-15 00:10:25 -0800532 }
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 {
Praveen Chavan72eff012020-11-20 23:20:28 -0800546 {
547 // Component is only used for reporting as we use a separate listener for each instance
548 std::shared_ptr<Codec2Client::Component> comp = component.lock();
549 if (!comp) {
550 ALOGD("Component died with error: 0x%x", errorCode);
551 } else {
552 ALOGD("Component \"%s\" returned error: 0x%x", comp->getName().c_str(), errorCode);
553 }
554 }
555
556 // Report to MediaCodec
557 // Note: for now we do not propagate the error code to MediaCodec as we would need
558 // to translate to a MediaCodec error.
559 sp<CCodec> codec(mCodec.promote());
560 if (!codec || !codec->mCallback) {
561 return;
562 }
563 codec->mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL);
Pawin Vongmasa36653902018-11-15 00:10:25 -0800564 }
565
566 virtual void onDeath(
567 const std::weak_ptr<Codec2Client::Component>& component) override {
568 { // Log the death of the component.
569 std::shared_ptr<Codec2Client::Component> comp = component.lock();
570 if (!comp) {
571 ALOGE("Codec2 component died.");
572 } else {
573 ALOGE("Codec2 component \"%s\" died.", comp->getName().c_str());
574 }
575 }
576
577 // Report to MediaCodec.
578 sp<CCodec> codec(mCodec.promote());
579 if (!codec || !codec->mCallback) {
580 return;
581 }
582 codec->mCallback->onError(DEAD_OBJECT, ACTION_CODE_FATAL);
583 }
584
Pawin Vongmasa1c75a232019-01-09 04:41:52 -0800585 virtual void onFrameRendered(uint64_t bufferQueueId,
586 int32_t slotId,
587 int64_t timestampNs) override {
588 // TODO: implement
589 (void)bufferQueueId;
590 (void)slotId;
591 (void)timestampNs;
Pawin Vongmasa36653902018-11-15 00:10:25 -0800592 }
593
594 virtual void onInputBufferDone(
Wonsik Kimab34ed62019-01-31 15:28:46 -0800595 uint64_t frameIndex, size_t arrayIndex) override {
Pawin Vongmasa36653902018-11-15 00:10:25 -0800596 sp<CCodec> codec(mCodec.promote());
597 if (codec) {
Wonsik Kimab34ed62019-01-31 15:28:46 -0800598 codec->onInputBufferDone(frameIndex, arrayIndex);
Pawin Vongmasa36653902018-11-15 00:10:25 -0800599 }
600 }
601
602private:
603 wp<CCodec> mCodec;
604};
605
606// CCodecCallbackImpl
607
608class CCodecCallbackImpl : public CCodecCallback {
609public:
610 explicit CCodecCallbackImpl(CCodec *codec) : mCodec(codec) {}
611 ~CCodecCallbackImpl() override = default;
612
613 void onError(status_t err, enum ActionCode actionCode) override {
614 mCodec->mCallback->onError(err, actionCode);
615 }
616
617 void onOutputFramesRendered(int64_t mediaTimeUs, nsecs_t renderTimeNs) override {
618 mCodec->mCallback->onOutputFramesRendered(
619 {RenderedFrameInfo(mediaTimeUs, renderTimeNs)});
620 }
621
Pawin Vongmasa36653902018-11-15 00:10:25 -0800622 void onOutputBuffersChanged() override {
623 mCodec->mCallback->onOutputBuffersChanged();
624 }
625
626private:
627 CCodec *mCodec;
628};
629
630// CCodec
631
632CCodec::CCodec()
Wonsik Kim155d5cb2019-10-09 12:49:49 -0700633 : mChannel(new CCodecBufferChannel(std::make_shared<CCodecCallbackImpl>(this))),
634 mConfig(new CCodecConfig) {
Pawin Vongmasa36653902018-11-15 00:10:25 -0800635}
636
637CCodec::~CCodec() {
638}
639
640std::shared_ptr<BufferChannelBase> CCodec::getBufferChannel() {
641 return mChannel;
642}
643
644status_t CCodec::tryAndReportOnError(std::function<status_t()> job) {
645 status_t err = job();
646 if (err != C2_OK) {
647 mCallback->onError(err, ACTION_CODE_FATAL);
648 }
649 return err;
650}
651
652void CCodec::initiateAllocateComponent(const sp<AMessage> &msg) {
653 auto setAllocating = [this] {
654 Mutexed<State>::Locked state(mState);
655 if (state->get() != RELEASED) {
656 return INVALID_OPERATION;
657 }
658 state->set(ALLOCATING);
659 return OK;
660 };
661 if (tryAndReportOnError(setAllocating) != OK) {
662 return;
663 }
664
665 sp<RefBase> codecInfo;
666 CHECK(msg->findObject("codecInfo", &codecInfo));
667 // For Codec 2.0 components, componentName == codecInfo->getCodecName().
668
669 sp<AMessage> allocMsg(new AMessage(kWhatAllocate, this));
670 allocMsg->setObject("codecInfo", codecInfo);
671 allocMsg->post();
672}
673
674void CCodec::allocate(const sp<MediaCodecInfo> &codecInfo) {
675 if (codecInfo == nullptr) {
676 mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL);
677 return;
678 }
679 ALOGD("allocate(%s)", codecInfo->getCodecName());
680 mClientListener.reset(new ClientListener(this));
681
682 AString componentName = codecInfo->getCodecName();
683 std::shared_ptr<Codec2Client> client;
684
685 // set up preferred component store to access vendor store parameters
Pawin Vongmasa892c81d2019-03-12 00:56:50 -0700686 client = Codec2Client::CreateFromService("default");
Pawin Vongmasa36653902018-11-15 00:10:25 -0800687 if (client) {
Pawin Vongmasa1c75a232019-01-09 04:41:52 -0800688 ALOGI("setting up '%s' as default (vendor) store", client->getServiceName().c_str());
Pawin Vongmasa36653902018-11-15 00:10:25 -0800689 SetPreferredCodec2ComponentStore(
690 std::make_shared<Codec2ClientInterfaceWrapper>(client));
691 }
692
Chih-Yu Huangb8fe0792020-12-07 17:14:55 +0900693 std::shared_ptr<Codec2Client::Component> comp;
694 c2_status_t status = Codec2Client::CreateComponentByName(
Pawin Vongmasa36653902018-11-15 00:10:25 -0800695 componentName.c_str(),
696 mClientListener,
Chih-Yu Huangb8fe0792020-12-07 17:14:55 +0900697 &comp,
Pawin Vongmasa36653902018-11-15 00:10:25 -0800698 &client);
Chih-Yu Huangb8fe0792020-12-07 17:14:55 +0900699 if (status != C2_OK) {
700 ALOGE("Failed Create component: %s, error=%d", componentName.c_str(), status);
Pawin Vongmasa36653902018-11-15 00:10:25 -0800701 Mutexed<State>::Locked state(mState);
702 state->set(RELEASED);
703 state.unlock();
Chih-Yu Huangb8fe0792020-12-07 17:14:55 +0900704 mCallback->onError((status == C2_NO_MEMORY ? NO_MEMORY : UNKNOWN_ERROR), ACTION_CODE_FATAL);
Pawin Vongmasa36653902018-11-15 00:10:25 -0800705 state.lock();
706 return;
707 }
708 ALOGI("Created component [%s]", componentName.c_str());
709 mChannel->setComponent(comp);
710 auto setAllocated = [this, comp, client] {
711 Mutexed<State>::Locked state(mState);
712 if (state->get() != ALLOCATING) {
713 state->set(RELEASED);
714 return UNKNOWN_ERROR;
715 }
716 state->set(ALLOCATED);
717 state->comp = comp;
718 mClient = client;
719 return OK;
720 };
721 if (tryAndReportOnError(setAllocated) != OK) {
722 return;
723 }
724
725 // initialize config here in case setParameters is called prior to configure
Wonsik Kim155d5cb2019-10-09 12:49:49 -0700726 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
727 const std::unique_ptr<Config> &config = *configLocked;
Wonsik Kim8a6ed372019-12-03 16:05:51 -0800728 status_t err = config->initialize(mClient->getParamReflector(), comp);
Pawin Vongmasa36653902018-11-15 00:10:25 -0800729 if (err != OK) {
730 ALOGW("Failed to initialize configuration support");
731 // TODO: report error once we complete implementation.
732 }
733 config->queryConfiguration(comp);
734
735 mCallback->onComponentAllocated(componentName.c_str());
736}
737
738void CCodec::initiateConfigureComponent(const sp<AMessage> &format) {
739 auto checkAllocated = [this] {
740 Mutexed<State>::Locked state(mState);
741 return (state->get() != ALLOCATED) ? UNKNOWN_ERROR : OK;
742 };
743 if (tryAndReportOnError(checkAllocated) != OK) {
744 return;
745 }
746
747 sp<AMessage> msg(new AMessage(kWhatConfigure, this));
748 msg->setMessage("format", format);
749 msg->post();
750}
751
752void CCodec::configure(const sp<AMessage> &msg) {
753 std::shared_ptr<Codec2Client::Component> comp;
754 auto checkAllocated = [this, &comp] {
755 Mutexed<State>::Locked state(mState);
756 if (state->get() != ALLOCATED) {
757 state->set(RELEASED);
758 return UNKNOWN_ERROR;
759 }
760 comp = state->comp;
761 return OK;
762 };
763 if (tryAndReportOnError(checkAllocated) != OK) {
764 return;
765 }
766
767 auto doConfig = [msg, comp, this]() -> status_t {
768 AString mime;
769 if (!msg->findString("mime", &mime)) {
770 return BAD_VALUE;
771 }
772
773 int32_t encoder;
774 if (!msg->findInt32("encoder", &encoder)) {
775 encoder = false;
776 }
777
Wonsik Kimfb7a7672019-12-27 17:13:33 -0800778 int32_t flags;
779 if (!msg->findInt32("flags", &flags)) {
780 return BAD_VALUE;
781 }
782
Pawin Vongmasa36653902018-11-15 00:10:25 -0800783 // TODO: read from intf()
784 if ((!encoder) != (comp->getName().find("encoder") == std::string::npos)) {
785 return UNKNOWN_ERROR;
786 }
787
788 int32_t storeMeta;
789 if (encoder
790 && msg->findInt32("android._input-metadata-buffer-type", &storeMeta)
791 && storeMeta != kMetadataBufferTypeInvalid) {
792 if (storeMeta != kMetadataBufferTypeANWBuffer) {
793 ALOGD("Only ANW buffers are supported for legacy metadata mode");
794 return BAD_VALUE;
795 }
796 mChannel->setMetaMode(CCodecBufferChannel::MODE_ANW);
797 }
798
799 sp<RefBase> obj;
800 sp<Surface> surface;
801 if (msg->findObject("native-window", &obj)) {
802 surface = static_cast<Surface *>(obj.get());
803 setSurface(surface);
804 }
805
Wonsik Kim155d5cb2019-10-09 12:49:49 -0700806 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
807 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa36653902018-11-15 00:10:25 -0800808 config->mUsingSurface = surface != nullptr;
Wonsik Kimfb7a7672019-12-27 17:13:33 -0800809 config->mBuffersBoundToCodec = ((flags & CONFIGURE_FLAG_USE_BLOCK_MODEL) == 0);
810 ALOGD("[%s] buffers are %sbound to CCodec for this session",
811 comp->getName().c_str(), config->mBuffersBoundToCodec ? "" : "not ");
Pawin Vongmasa36653902018-11-15 00:10:25 -0800812
Wonsik Kim1114eea2019-02-25 14:35:24 -0800813 // Enforce required parameters
814 int32_t i32;
815 float flt;
816 if (config->mDomain & Config::IS_AUDIO) {
817 if (!msg->findInt32(KEY_SAMPLE_RATE, &i32)) {
818 ALOGD("sample rate is missing, which is required for audio components.");
819 return BAD_VALUE;
820 }
821 if (!msg->findInt32(KEY_CHANNEL_COUNT, &i32)) {
822 ALOGD("channel count is missing, which is required for audio components.");
823 return BAD_VALUE;
824 }
825 if ((config->mDomain & Config::IS_ENCODER)
826 && !mime.equalsIgnoreCase(MEDIA_MIMETYPE_AUDIO_FLAC)
827 && !msg->findInt32(KEY_BIT_RATE, &i32)
828 && !msg->findFloat(KEY_BIT_RATE, &flt)) {
829 ALOGD("bitrate is missing, which is required for audio encoders.");
830 return BAD_VALUE;
831 }
832 }
833 if (config->mDomain & (Config::IS_IMAGE | Config::IS_VIDEO)) {
834 if (!msg->findInt32(KEY_WIDTH, &i32)) {
835 ALOGD("width is missing, which is required for image/video components.");
836 return BAD_VALUE;
837 }
838 if (!msg->findInt32(KEY_HEIGHT, &i32)) {
839 ALOGD("height is missing, which is required for image/video components.");
840 return BAD_VALUE;
841 }
842 if ((config->mDomain & Config::IS_ENCODER) && (config->mDomain & Config::IS_VIDEO)) {
Harish Mahendrakar71cbb9d2019-05-21 11:21:27 -0700843 int32_t mode = BITRATE_MODE_VBR;
844 if (msg->findInt32(KEY_BITRATE_MODE, &mode) && mode == BITRATE_MODE_CQ) {
Harish Mahendrakar817d3182019-03-11 16:37:47 -0700845 if (!msg->findInt32(KEY_QUALITY, &i32)) {
846 ALOGD("quality is missing, which is required for video encoders in CQ.");
847 return BAD_VALUE;
848 }
849 } else {
850 if (!msg->findInt32(KEY_BIT_RATE, &i32)
851 && !msg->findFloat(KEY_BIT_RATE, &flt)) {
852 ALOGD("bitrate is missing, which is required for video encoders.");
853 return BAD_VALUE;
854 }
Wonsik Kim1114eea2019-02-25 14:35:24 -0800855 }
856 if (!msg->findInt32(KEY_I_FRAME_INTERVAL, &i32)
857 && !msg->findFloat(KEY_I_FRAME_INTERVAL, &flt)) {
858 ALOGD("I frame interval is missing, which is required for video encoders.");
859 return BAD_VALUE;
860 }
Wonsik Kimaab2eea2019-05-22 10:37:58 -0700861 if (!msg->findInt32(KEY_FRAME_RATE, &i32)
862 && !msg->findFloat(KEY_FRAME_RATE, &flt)) {
863 ALOGD("frame rate is missing, which is required for video encoders.");
864 return BAD_VALUE;
865 }
Wonsik Kim1114eea2019-02-25 14:35:24 -0800866 }
867 }
868
Pawin Vongmasa36653902018-11-15 00:10:25 -0800869 /*
870 * Handle input surface configuration
871 */
872 if ((config->mDomain & (Config::IS_VIDEO | Config::IS_IMAGE))
873 && (config->mDomain & Config::IS_ENCODER)) {
874 config->mISConfig.reset(new InputSurfaceWrapper::Config{});
875 {
876 config->mISConfig->mMinFps = 0;
877 int64_t value;
Chong Zhang038e8f82019-02-06 19:05:14 -0800878 if (msg->findInt64(KEY_REPEAT_PREVIOUS_FRAME_AFTER, &value) && value > 0) {
Pawin Vongmasa36653902018-11-15 00:10:25 -0800879 config->mISConfig->mMinFps = 1e6 / value;
880 }
Wonsik Kim95ba0162019-03-19 15:51:54 -0700881 if (!msg->findFloat(
882 KEY_MAX_FPS_TO_ENCODER, &config->mISConfig->mMaxFps)) {
883 config->mISConfig->mMaxFps = -1;
884 }
Pawin Vongmasa36653902018-11-15 00:10:25 -0800885 config->mISConfig->mMinAdjustedFps = 0;
886 config->mISConfig->mFixedAdjustedFps = 0;
Chong Zhang038e8f82019-02-06 19:05:14 -0800887 if (msg->findInt64(KEY_MAX_PTS_GAP_TO_ENCODER, &value)) {
Pawin Vongmasa36653902018-11-15 00:10:25 -0800888 if (value < 0 && value >= INT32_MIN) {
889 config->mISConfig->mFixedAdjustedFps = -1e6 / value;
Wonsik Kim95ba0162019-03-19 15:51:54 -0700890 config->mISConfig->mMaxFps = -1;
Pawin Vongmasa36653902018-11-15 00:10:25 -0800891 } else if (value > 0 && value <= INT32_MAX) {
892 config->mISConfig->mMinAdjustedFps = 1e6 / value;
893 }
894 }
895 }
896
897 {
Wonsik Kim8e55f3a2019-09-03 14:10:37 -0700898 bool captureFpsFound = false;
899 double timeLapseFps;
900 float captureRate;
901 if (msg->findDouble("time-lapse-fps", &timeLapseFps)) {
902 config->mISConfig->mCaptureFps = timeLapseFps;
903 captureFpsFound = true;
904 } else if (msg->findAsFloat(KEY_CAPTURE_RATE, &captureRate)) {
905 config->mISConfig->mCaptureFps = captureRate;
906 captureFpsFound = true;
907 }
908 if (captureFpsFound) {
Pawin Vongmasa36653902018-11-15 00:10:25 -0800909 (void)msg->findAsFloat(KEY_FRAME_RATE, &config->mISConfig->mCodedFps);
910 }
911 }
912
913 {
914 config->mISConfig->mSuspended = false;
915 config->mISConfig->mSuspendAtUs = -1;
916 int32_t value;
Chong Zhang038e8f82019-02-06 19:05:14 -0800917 if (msg->findInt32(KEY_CREATE_INPUT_SURFACE_SUSPENDED, &value) && value) {
Pawin Vongmasa36653902018-11-15 00:10:25 -0800918 config->mISConfig->mSuspended = true;
919 }
920 }
Wonsik Kim9eac4d12019-05-23 12:58:48 -0700921 config->mISConfig->mUsage = 0;
Pawin Vongmasa36653902018-11-15 00:10:25 -0800922 }
923
924 /*
925 * Handle desired color format.
926 */
Wonsik Kimd79ee1f2020-08-27 17:41:56 -0700927 int32_t defaultColorFormat = COLOR_FormatYUV420Flexible;
Pawin Vongmasa36653902018-11-15 00:10:25 -0800928 if ((config->mDomain & (Config::IS_VIDEO | Config::IS_IMAGE))) {
Wonsik Kimd79ee1f2020-08-27 17:41:56 -0700929 int32_t format = 0;
930 // Query vendor format for Flexible YUV
931 std::vector<std::unique_ptr<C2Param>> heapParams;
932 C2StoreFlexiblePixelFormatDescriptorsInfo *pixelFormatInfo = nullptr;
933 if (mClient->query(
934 {},
935 {C2StoreFlexiblePixelFormatDescriptorsInfo::PARAM_TYPE},
936 C2_MAY_BLOCK,
937 &heapParams) == C2_OK
938 && heapParams.size() == 1u) {
939 pixelFormatInfo = C2StoreFlexiblePixelFormatDescriptorsInfo::From(
940 heapParams[0].get());
941 } else {
942 pixelFormatInfo = nullptr;
943 }
944 std::optional<uint32_t> flexPixelFormat{};
945 std::optional<uint32_t> flexPlanarPixelFormat{};
946 std::optional<uint32_t> flexSemiPlanarPixelFormat{};
947 if (pixelFormatInfo && *pixelFormatInfo) {
948 for (size_t i = 0; i < pixelFormatInfo->flexCount(); ++i) {
949 const C2FlexiblePixelFormatDescriptorStruct &desc =
950 pixelFormatInfo->m.values[i];
951 if (desc.bitDepth != 8
952 || desc.subsampling != C2Color::YUV_420
953 // TODO(b/180076105): some device report wrong layout
954 // || desc.layout == C2Color::INTERLEAVED_PACKED
955 // || desc.layout == C2Color::INTERLEAVED_ALIGNED
956 || desc.layout == C2Color::UNKNOWN_LAYOUT) {
957 continue;
958 }
959 if (!flexPixelFormat) {
960 flexPixelFormat = desc.pixelFormat;
961 }
962 if (desc.layout == C2Color::PLANAR_PACKED && !flexPlanarPixelFormat) {
963 flexPlanarPixelFormat = desc.pixelFormat;
964 }
965 if (desc.layout == C2Color::SEMIPLANAR_PACKED && !flexSemiPlanarPixelFormat) {
966 flexSemiPlanarPixelFormat = desc.pixelFormat;
967 }
968 }
969 }
Pawin Vongmasa36653902018-11-15 00:10:25 -0800970 if (!msg->findInt32(KEY_COLOR_FORMAT, &format)) {
Wonsik Kimd79ee1f2020-08-27 17:41:56 -0700971 // Also handle default color format (encoders require color format, so this is only
972 // needed for decoders.
Pawin Vongmasa36653902018-11-15 00:10:25 -0800973 if (!(config->mDomain & Config::IS_ENCODER)) {
Wonsik Kimd79ee1f2020-08-27 17:41:56 -0700974 if (surface == nullptr) {
975 format = flexPixelFormat.value_or(COLOR_FormatYUV420Flexible);
976 } else {
977 format = COLOR_FormatSurface;
978 }
979 defaultColorFormat = format;
980 }
981 } else {
982 if ((config->mDomain & Config::IS_ENCODER) || !surface) {
983 switch (format) {
984 case COLOR_FormatYUV420Flexible:
985 format = flexPixelFormat.value_or(COLOR_FormatYUV420Planar);
986 break;
987 case COLOR_FormatYUV420Planar:
988 case COLOR_FormatYUV420PackedPlanar:
989 format = flexPlanarPixelFormat.value_or(
990 flexPixelFormat.value_or(format));
991 break;
992 case COLOR_FormatYUV420SemiPlanar:
993 case COLOR_FormatYUV420PackedSemiPlanar:
994 format = flexSemiPlanarPixelFormat.value_or(
995 flexPixelFormat.value_or(format));
996 break;
997 default:
998 // No-op
999 break;
1000 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001001 }
1002 }
1003
Wonsik Kimd79ee1f2020-08-27 17:41:56 -07001004 if (format != 0) {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001005 msg->setInt32("android._color-format", format);
1006 }
1007 }
1008
Wonsik Kim8a6ed372019-12-03 16:05:51 -08001009 int32_t subscribeToAllVendorParams;
1010 if (msg->findInt32("x-*", &subscribeToAllVendorParams) && subscribeToAllVendorParams) {
1011 if (config->subscribeToAllVendorParams(comp, C2_MAY_BLOCK) != OK) {
1012 ALOGD("[%s] Failed to subscribe to all vendor params", comp->getName().c_str());
1013 }
1014 }
1015
Pawin Vongmasa36653902018-11-15 00:10:25 -08001016 std::vector<std::unique_ptr<C2Param>> configUpdate;
Wonsik Kimaa484ac2019-02-13 16:54:02 -08001017 // NOTE: We used to ignore "video-bitrate" at configure; replicate
1018 // the behavior here.
1019 sp<AMessage> sdkParams = msg;
1020 int32_t videoBitrate;
1021 if (sdkParams->findInt32(PARAMETER_KEY_VIDEO_BITRATE, &videoBitrate)) {
1022 sdkParams = msg->dup();
1023 sdkParams->removeEntryAt(sdkParams->findEntryByName(PARAMETER_KEY_VIDEO_BITRATE));
1024 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001025 status_t err = config->getConfigUpdateFromSdkParams(
Wonsik Kimaa484ac2019-02-13 16:54:02 -08001026 comp, sdkParams, Config::IS_CONFIG, C2_DONT_BLOCK, &configUpdate);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001027 if (err != OK) {
1028 ALOGW("failed to convert configuration to c2 params");
1029 }
Wonsik Kimaab2eea2019-05-22 10:37:58 -07001030
1031 int32_t maxBframes = 0;
1032 if ((config->mDomain & Config::IS_ENCODER)
1033 && (config->mDomain & Config::IS_VIDEO)
1034 && sdkParams->findInt32(KEY_MAX_B_FRAMES, &maxBframes)
1035 && maxBframes > 0) {
1036 std::unique_ptr<C2StreamGopTuning::output> gop =
1037 C2StreamGopTuning::output::AllocUnique(2 /* flexCount */, 0u /* stream */);
1038 gop->m.values[0] = { P_FRAME, UINT32_MAX };
1039 gop->m.values[1] = {
1040 C2Config::picture_type_t(P_FRAME | B_FRAME),
1041 uint32_t(maxBframes)
1042 };
1043 configUpdate.push_back(std::move(gop));
1044 }
1045
Pawin Vongmasa36653902018-11-15 00:10:25 -08001046 err = config->setParameters(comp, configUpdate, C2_DONT_BLOCK);
1047 if (err != OK) {
1048 ALOGW("failed to configure c2 params");
1049 return err;
1050 }
1051
1052 std::vector<std::unique_ptr<C2Param>> params;
1053 C2StreamUsageTuning::input usage(0u, 0u);
1054 C2StreamMaxBufferSizeInfo::input maxInputSize(0u, 0u);
Wonsik Kim9ca01d32019-04-01 14:45:47 -07001055 C2PrependHeaderModeSetting prepend(PREPEND_HEADER_TO_NONE);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001056
1057 std::initializer_list<C2Param::Index> indices {
1058 };
1059 c2_status_t c2err = comp->query(
Wonsik Kim9ca01d32019-04-01 14:45:47 -07001060 { &usage, &maxInputSize, &prepend },
Pawin Vongmasa36653902018-11-15 00:10:25 -08001061 indices,
1062 C2_DONT_BLOCK,
1063 &params);
1064 if (c2err != C2_OK && c2err != C2_BAD_INDEX) {
1065 ALOGE("Failed to query component interface: %d", c2err);
1066 return UNKNOWN_ERROR;
1067 }
1068 if (params.size() != indices.size()) {
1069 ALOGE("Component returns wrong number of params: expected %zu actual %zu",
1070 indices.size(), params.size());
1071 return UNKNOWN_ERROR;
1072 }
Wonsik Kim9eac4d12019-05-23 12:58:48 -07001073 if (usage) {
1074 if (usage.value & C2MemoryUsage::CPU_READ) {
1075 config->mInputFormat->setInt32("using-sw-read-often", true);
1076 }
1077 if (config->mISConfig) {
1078 C2AndroidMemoryUsage androidUsage(C2MemoryUsage(usage.value));
1079 config->mISConfig->mUsage = androidUsage.asGrallocUsage();
1080 }
Wonsik Kim666604a2020-05-14 16:57:49 -07001081 config->mInputFormat->setInt64("android._C2MemoryUsage", usage.value);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001082 }
1083
1084 // NOTE: we don't blindly use client specified input size if specified as clients
1085 // at times specify too small size. Instead, mimic the behavior from OMX, where the
1086 // client specified size is only used to ask for bigger buffers than component suggested
1087 // size.
1088 int32_t clientInputSize = 0;
1089 bool clientSpecifiedInputSize =
1090 msg->findInt32(KEY_MAX_INPUT_SIZE, &clientInputSize) && clientInputSize > 0;
1091 // TEMP: enforce minimum buffer size of 1MB for video decoders
1092 // and 16K / 4K for audio encoders/decoders
1093 if (maxInputSize.value == 0) {
1094 if (config->mDomain & Config::IS_AUDIO) {
1095 maxInputSize.value = encoder ? 16384 : 4096;
1096 } else if (!encoder) {
1097 maxInputSize.value = 1048576u;
1098 }
1099 }
1100
1101 // verify that CSD fits into this size (if defined)
1102 if ((config->mDomain & Config::IS_DECODER) && maxInputSize.value > 0) {
1103 sp<ABuffer> csd;
1104 for (size_t ix = 0; msg->findBuffer(StringPrintf("csd-%zu", ix).c_str(), &csd); ++ix) {
1105 if (csd && csd->size() > maxInputSize.value) {
1106 maxInputSize.value = csd->size();
1107 }
1108 }
1109 }
1110
1111 // TODO: do this based on component requiring linear allocator for input
1112 if ((config->mDomain & Config::IS_DECODER) || (config->mDomain & Config::IS_AUDIO)) {
1113 if (clientSpecifiedInputSize) {
1114 // Warn that we're overriding client's max input size if necessary.
1115 if ((uint32_t)clientInputSize < maxInputSize.value) {
1116 ALOGD("client requested max input size %d, which is smaller than "
1117 "what component recommended (%u); overriding with component "
1118 "recommendation.", clientInputSize, maxInputSize.value);
1119 ALOGW("This behavior is subject to change. It is recommended that "
1120 "app developers double check whether the requested "
1121 "max input size is in reasonable range.");
1122 } else {
1123 maxInputSize.value = clientInputSize;
1124 }
1125 }
1126 // Pass max input size on input format to the buffer channel (if supplied by the
1127 // component or by a default)
1128 if (maxInputSize.value) {
1129 config->mInputFormat->setInt32(
1130 KEY_MAX_INPUT_SIZE,
1131 (int32_t)(c2_min(maxInputSize.value, uint32_t(INT32_MAX))));
1132 }
1133 }
1134
Wonsik Kim9ca01d32019-04-01 14:45:47 -07001135 int32_t clientPrepend;
1136 if ((config->mDomain & Config::IS_VIDEO)
1137 && (config->mDomain & Config::IS_ENCODER)
1138 && msg->findInt32(KEY_PREPEND_HEADERS_TO_SYNC_FRAMES, &clientPrepend)
1139 && clientPrepend
1140 && (!prepend || prepend.value != PREPEND_HEADER_TO_ALL_SYNC)) {
1141 ALOGE("Failed to set KEY_PREPEND_HEADERS_TO_SYNC_FRAMES");
1142 return BAD_VALUE;
1143 }
1144
Pawin Vongmasa36653902018-11-15 00:10:25 -08001145 if ((config->mDomain & (Config::IS_VIDEO | Config::IS_IMAGE))) {
1146 // propagate HDR static info to output format for both encoders and decoders
1147 // if component supports this info, we will update from component, but only the raw port,
1148 // so don't propagate if component already filled it in.
1149 sp<ABuffer> hdrInfo;
1150 if (msg->findBuffer(KEY_HDR_STATIC_INFO, &hdrInfo)
1151 && !config->mOutputFormat->findBuffer(KEY_HDR_STATIC_INFO, &hdrInfo)) {
1152 config->mOutputFormat->setBuffer(KEY_HDR_STATIC_INFO, hdrInfo);
1153 }
1154
1155 // Set desired color format from configuration parameter
1156 int32_t format;
Wonsik Kimd79ee1f2020-08-27 17:41:56 -07001157 if (!msg->findInt32(KEY_COLOR_FORMAT, &format)) {
1158 format = defaultColorFormat;
1159 }
1160 if (config->mDomain & Config::IS_ENCODER) {
1161 config->mInputFormat->setInt32(KEY_COLOR_FORMAT, format);
1162 if (msg->findInt32("android._color-format", &format)) {
1163 config->mInputFormat->setInt32("android._color-format", format);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001164 }
Wonsik Kimd79ee1f2020-08-27 17:41:56 -07001165 } else {
1166 config->mOutputFormat->setInt32(KEY_COLOR_FORMAT, format);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001167 }
1168 }
1169
1170 // propagate encoder delay and padding to output format
1171 if ((config->mDomain & Config::IS_DECODER) && (config->mDomain & Config::IS_AUDIO)) {
1172 int delay = 0;
1173 if (msg->findInt32("encoder-delay", &delay)) {
1174 config->mOutputFormat->setInt32("encoder-delay", delay);
1175 }
1176 int padding = 0;
1177 if (msg->findInt32("encoder-padding", &padding)) {
1178 config->mOutputFormat->setInt32("encoder-padding", padding);
1179 }
1180 }
1181
1182 // set channel-mask
1183 if (config->mDomain & Config::IS_AUDIO) {
1184 int32_t mask;
1185 if (msg->findInt32(KEY_CHANNEL_MASK, &mask)) {
1186 if (config->mDomain & Config::IS_ENCODER) {
1187 config->mInputFormat->setInt32(KEY_CHANNEL_MASK, mask);
1188 } else {
1189 config->mOutputFormat->setInt32(KEY_CHANNEL_MASK, mask);
1190 }
1191 }
1192 }
1193
1194 ALOGD("setup formats input: %s and output: %s",
1195 config->mInputFormat->debugString().c_str(),
1196 config->mOutputFormat->debugString().c_str());
1197 return OK;
1198 };
1199 if (tryAndReportOnError(doConfig) != OK) {
1200 return;
1201 }
1202
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001203 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1204 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001205
1206 mCallback->onComponentConfigured(config->mInputFormat, config->mOutputFormat);
1207}
1208
1209void CCodec::initiateCreateInputSurface() {
1210 status_t err = [this] {
1211 Mutexed<State>::Locked state(mState);
1212 if (state->get() != ALLOCATED) {
1213 return UNKNOWN_ERROR;
1214 }
1215 // TODO: read it from intf() properly.
1216 if (state->comp->getName().find("encoder") == std::string::npos) {
1217 return INVALID_OPERATION;
1218 }
1219 return OK;
1220 }();
1221 if (err != OK) {
1222 mCallback->onInputSurfaceCreationFailed(err);
1223 return;
1224 }
1225
1226 (new AMessage(kWhatCreateInputSurface, this))->post();
1227}
1228
Lajos Molnar47118272019-01-31 16:28:04 -08001229sp<PersistentSurface> CCodec::CreateOmxInputSurface() {
1230 using namespace android::hardware::media::omx::V1_0;
1231 using namespace android::hardware::media::omx::V1_0::utils;
1232 using namespace android::hardware::graphics::bufferqueue::V1_0::utils;
1233 typedef android::hardware::media::omx::V1_0::Status OmxStatus;
1234 android::sp<IOmx> omx = IOmx::getService();
1235 typedef android::hardware::graphics::bufferqueue::V1_0::
1236 IGraphicBufferProducer HGraphicBufferProducer;
1237 typedef android::hardware::media::omx::V1_0::
1238 IGraphicBufferSource HGraphicBufferSource;
1239 OmxStatus s;
1240 android::sp<HGraphicBufferProducer> gbp;
1241 android::sp<HGraphicBufferSource> gbs;
Pawin Vongmasa18588322019-05-18 01:52:13 -07001242
Chong Zhangc8ce1d82019-03-27 10:18:38 -07001243 using ::android::hardware::Return;
1244 Return<void> transStatus = omx->createInputSurface(
Lajos Molnar47118272019-01-31 16:28:04 -08001245 [&s, &gbp, &gbs](
1246 OmxStatus status,
1247 const android::sp<HGraphicBufferProducer>& producer,
1248 const android::sp<HGraphicBufferSource>& source) {
1249 s = status;
1250 gbp = producer;
1251 gbs = source;
1252 });
1253 if (transStatus.isOk() && s == OmxStatus::OK) {
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001254 return new PersistentSurface(new H2BGraphicBufferProducer(gbp), gbs);
Lajos Molnar47118272019-01-31 16:28:04 -08001255 }
1256
1257 return nullptr;
1258}
1259
1260sp<PersistentSurface> CCodec::CreateCompatibleInputSurface() {
1261 sp<PersistentSurface> surface(CreateInputSurface());
1262
1263 if (surface == nullptr) {
1264 surface = CreateOmxInputSurface();
1265 }
1266
1267 return surface;
1268}
1269
Pawin Vongmasa36653902018-11-15 00:10:25 -08001270void CCodec::createInputSurface() {
1271 status_t err;
1272 sp<IGraphicBufferProducer> bufferProducer;
1273
1274 sp<AMessage> inputFormat;
1275 sp<AMessage> outputFormat;
Wonsik Kim9eac4d12019-05-23 12:58:48 -07001276 uint64_t usage = 0;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001277 {
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001278 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1279 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001280 inputFormat = config->mInputFormat;
1281 outputFormat = config->mOutputFormat;
Wonsik Kim9eac4d12019-05-23 12:58:48 -07001282 usage = config->mISConfig ? config->mISConfig->mUsage : 0;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001283 }
1284
Lajos Molnar47118272019-01-31 16:28:04 -08001285 sp<PersistentSurface> persistentSurface = CreateCompatibleInputSurface();
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001286 sp<hidl::base::V1_0::IBase> hidlTarget = persistentSurface->getHidlTarget();
1287 sp<IInputSurface> hidlInputSurface = IInputSurface::castFrom(hidlTarget);
1288 sp<HGraphicBufferSource> gbs = HGraphicBufferSource::castFrom(hidlTarget);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001289
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001290 if (hidlInputSurface) {
Pawin Vongmasa1c75a232019-01-09 04:41:52 -08001291 std::shared_ptr<Codec2Client::InputSurface> inputSurface =
1292 std::make_shared<Codec2Client::InputSurface>(hidlInputSurface);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001293 err = setupInputSurface(std::make_shared<C2InputSurfaceWrapper>(
Pawin Vongmasa1c75a232019-01-09 04:41:52 -08001294 inputSurface));
1295 bufferProducer = inputSurface->getGraphicBufferProducer();
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001296 } else if (gbs) {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001297 int32_t width = 0;
1298 (void)outputFormat->findInt32("width", &width);
1299 int32_t height = 0;
1300 (void)outputFormat->findInt32("height", &height);
1301 err = setupInputSurface(std::make_shared<GraphicBufferSourceWrapper>(
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001302 gbs, width, height, usage));
Pawin Vongmasa36653902018-11-15 00:10:25 -08001303 bufferProducer = persistentSurface->getBufferProducer();
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001304 } else {
1305 ALOGE("Corrupted input surface");
1306 mCallback->onInputSurfaceCreationFailed(UNKNOWN_ERROR);
1307 return;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001308 }
1309
1310 if (err != OK) {
1311 ALOGE("Failed to set up input surface: %d", err);
1312 mCallback->onInputSurfaceCreationFailed(err);
1313 return;
1314 }
1315
1316 mCallback->onInputSurfaceCreated(
1317 inputFormat,
1318 outputFormat,
1319 new BufferProducerWrapper(bufferProducer));
1320}
1321
1322status_t CCodec::setupInputSurface(const std::shared_ptr<InputSurfaceWrapper> &surface) {
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001323 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1324 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001325 config->mUsingSurface = true;
1326
1327 // we are now using surface - apply default color aspects to input format - as well as
1328 // get dataspace
Wonsik Kim8a6ed372019-12-03 16:05:51 -08001329 bool inputFormatChanged = config->updateFormats(Config::IS_INPUT);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001330 ALOGD("input format %s to %s",
1331 inputFormatChanged ? "changed" : "unchanged",
1332 config->mInputFormat->debugString().c_str());
1333
1334 // configure dataspace
1335 static_assert(sizeof(int32_t) == sizeof(android_dataspace), "dataspace size mismatch");
1336 android_dataspace dataSpace = HAL_DATASPACE_UNKNOWN;
1337 (void)config->mInputFormat->findInt32("android._dataspace", (int32_t*)&dataSpace);
1338 surface->setDataSpace(dataSpace);
1339
1340 status_t err = mChannel->setInputSurface(surface);
1341 if (err != OK) {
1342 // undo input format update
1343 config->mUsingSurface = false;
Wonsik Kim8a6ed372019-12-03 16:05:51 -08001344 (void)config->updateFormats(Config::IS_INPUT);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001345 return err;
1346 }
1347 config->mInputSurface = surface;
1348
1349 if (config->mISConfig) {
1350 surface->configure(*config->mISConfig);
1351 } else {
1352 ALOGD("ISConfig: no configuration");
1353 }
1354
Pawin Vongmasa1f213362019-01-24 06:59:16 -08001355 return OK;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001356}
1357
1358void CCodec::initiateSetInputSurface(const sp<PersistentSurface> &surface) {
1359 sp<AMessage> msg = new AMessage(kWhatSetInputSurface, this);
1360 msg->setObject("surface", surface);
1361 msg->post();
1362}
1363
1364void CCodec::setInputSurface(const sp<PersistentSurface> &surface) {
1365 sp<AMessage> inputFormat;
1366 sp<AMessage> outputFormat;
Wonsik Kim9eac4d12019-05-23 12:58:48 -07001367 uint64_t usage = 0;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001368 {
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001369 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1370 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001371 inputFormat = config->mInputFormat;
1372 outputFormat = config->mOutputFormat;
Wonsik Kim9eac4d12019-05-23 12:58:48 -07001373 usage = config->mISConfig ? config->mISConfig->mUsage : 0;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001374 }
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001375 sp<hidl::base::V1_0::IBase> hidlTarget = surface->getHidlTarget();
1376 sp<IInputSurface> inputSurface = IInputSurface::castFrom(hidlTarget);
1377 sp<HGraphicBufferSource> gbs = HGraphicBufferSource::castFrom(hidlTarget);
1378 if (inputSurface) {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001379 status_t err = setupInputSurface(std::make_shared<C2InputSurfaceWrapper>(
1380 std::make_shared<Codec2Client::InputSurface>(inputSurface)));
1381 if (err != OK) {
1382 ALOGE("Failed to set up input surface: %d", err);
1383 mCallback->onInputSurfaceDeclined(err);
1384 return;
1385 }
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001386 } else if (gbs) {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001387 int32_t width = 0;
1388 (void)outputFormat->findInt32("width", &width);
1389 int32_t height = 0;
1390 (void)outputFormat->findInt32("height", &height);
1391 status_t err = setupInputSurface(std::make_shared<GraphicBufferSourceWrapper>(
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001392 gbs, width, height, usage));
Pawin Vongmasa36653902018-11-15 00:10:25 -08001393 if (err != OK) {
1394 ALOGE("Failed to set up input surface: %d", err);
1395 mCallback->onInputSurfaceDeclined(err);
1396 return;
1397 }
Wonsik Kim9917d4a2019-10-24 12:56:38 -07001398 } else {
1399 ALOGE("Failed to set input surface: Corrupted surface.");
1400 mCallback->onInputSurfaceDeclined(UNKNOWN_ERROR);
1401 return;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001402 }
1403 mCallback->onInputSurfaceAccepted(inputFormat, outputFormat);
1404}
1405
1406void CCodec::initiateStart() {
1407 auto setStarting = [this] {
1408 Mutexed<State>::Locked state(mState);
1409 if (state->get() != ALLOCATED) {
1410 return UNKNOWN_ERROR;
1411 }
1412 state->set(STARTING);
1413 return OK;
1414 };
1415 if (tryAndReportOnError(setStarting) != OK) {
1416 return;
1417 }
1418
1419 (new AMessage(kWhatStart, this))->post();
1420}
1421
1422void CCodec::start() {
1423 std::shared_ptr<Codec2Client::Component> comp;
1424 auto checkStarting = [this, &comp] {
1425 Mutexed<State>::Locked state(mState);
1426 if (state->get() != STARTING) {
1427 return UNKNOWN_ERROR;
1428 }
1429 comp = state->comp;
1430 return OK;
1431 };
1432 if (tryAndReportOnError(checkStarting) != OK) {
1433 return;
1434 }
1435
1436 c2_status_t err = comp->start();
1437 if (err != C2_OK) {
1438 mCallback->onError(toStatusT(err, C2_OPERATION_Component_start),
1439 ACTION_CODE_FATAL);
1440 return;
1441 }
1442 sp<AMessage> inputFormat;
1443 sp<AMessage> outputFormat;
Pawin Vongmasa1f213362019-01-24 06:59:16 -08001444 status_t err2 = OK;
Wonsik Kimfb7a7672019-12-27 17:13:33 -08001445 bool buffersBoundToCodec = false;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001446 {
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001447 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1448 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001449 inputFormat = config->mInputFormat;
Wonsik Kim274c8322020-02-28 10:42:21 -08001450 // start triggers format dup
1451 outputFormat = config->mOutputFormat = config->mOutputFormat->dup();
Pawin Vongmasa1f213362019-01-24 06:59:16 -08001452 if (config->mInputSurface) {
1453 err2 = config->mInputSurface->start();
1454 }
Wonsik Kimfb7a7672019-12-27 17:13:33 -08001455 buffersBoundToCodec = config->mBuffersBoundToCodec;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001456 }
Pawin Vongmasa1f213362019-01-24 06:59:16 -08001457 if (err2 != OK) {
1458 mCallback->onError(err2, ACTION_CODE_FATAL);
1459 return;
1460 }
Wonsik Kimfb7a7672019-12-27 17:13:33 -08001461 err2 = mChannel->start(inputFormat, outputFormat, buffersBoundToCodec);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001462 if (err2 != OK) {
1463 mCallback->onError(err2, ACTION_CODE_FATAL);
1464 return;
1465 }
1466
1467 auto setRunning = [this] {
1468 Mutexed<State>::Locked state(mState);
1469 if (state->get() != STARTING) {
1470 return UNKNOWN_ERROR;
1471 }
1472 state->set(RUNNING);
1473 return OK;
1474 };
1475 if (tryAndReportOnError(setRunning) != OK) {
1476 return;
1477 }
1478 mCallback->onStartCompleted();
1479
1480 (void)mChannel->requestInitialInputBuffers();
1481}
1482
1483void CCodec::initiateShutdown(bool keepComponentAllocated) {
1484 if (keepComponentAllocated) {
1485 initiateStop();
1486 } else {
1487 initiateRelease();
1488 }
1489}
1490
1491void CCodec::initiateStop() {
1492 {
1493 Mutexed<State>::Locked state(mState);
1494 if (state->get() == ALLOCATED
1495 || state->get() == RELEASED
1496 || state->get() == STOPPING
1497 || state->get() == RELEASING) {
1498 // We're already stopped, released, or doing it right now.
1499 state.unlock();
1500 mCallback->onStopCompleted();
1501 state.lock();
1502 return;
1503 }
1504 state->set(STOPPING);
1505 }
1506
Wonsik Kim936a89c2020-05-08 16:07:50 -07001507 mChannel->reset();
Pawin Vongmasa36653902018-11-15 00:10:25 -08001508 (new AMessage(kWhatStop, this))->post();
1509}
1510
1511void CCodec::stop() {
1512 std::shared_ptr<Codec2Client::Component> comp;
1513 {
1514 Mutexed<State>::Locked state(mState);
1515 if (state->get() == RELEASING) {
1516 state.unlock();
1517 // We're already stopped or release is in progress.
1518 mCallback->onStopCompleted();
1519 state.lock();
1520 return;
1521 } else if (state->get() != STOPPING) {
1522 state.unlock();
1523 mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL);
1524 state.lock();
1525 return;
1526 }
1527 comp = state->comp;
1528 }
1529 status_t err = comp->stop();
1530 if (err != C2_OK) {
1531 // TODO: convert err into status_t
1532 mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL);
1533 }
1534
1535 {
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001536 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1537 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa1f213362019-01-24 06:59:16 -08001538 if (config->mInputSurface) {
1539 config->mInputSurface->disconnect();
1540 config->mInputSurface = nullptr;
1541 }
1542 }
1543 {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001544 Mutexed<State>::Locked state(mState);
1545 if (state->get() == STOPPING) {
1546 state->set(ALLOCATED);
1547 }
1548 }
1549 mCallback->onStopCompleted();
1550}
1551
1552void CCodec::initiateRelease(bool sendCallback /* = true */) {
Pawin Vongmasa1f213362019-01-24 06:59:16 -08001553 bool clearInputSurfaceIfNeeded = false;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001554 {
1555 Mutexed<State>::Locked state(mState);
1556 if (state->get() == RELEASED || state->get() == RELEASING) {
1557 // We're already released or doing it right now.
1558 if (sendCallback) {
1559 state.unlock();
1560 mCallback->onReleaseCompleted();
1561 state.lock();
1562 }
1563 return;
1564 }
1565 if (state->get() == ALLOCATING) {
1566 state->set(RELEASING);
1567 // With the altered state allocate() would fail and clean up.
1568 if (sendCallback) {
1569 state.unlock();
1570 mCallback->onReleaseCompleted();
1571 state.lock();
1572 }
1573 return;
1574 }
Pawin Vongmasa1f213362019-01-24 06:59:16 -08001575 if (state->get() == STARTING
1576 || state->get() == RUNNING
1577 || state->get() == STOPPING) {
1578 // Input surface may have been started, so clean up is needed.
1579 clearInputSurfaceIfNeeded = true;
1580 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001581 state->set(RELEASING);
1582 }
1583
Pawin Vongmasa1f213362019-01-24 06:59:16 -08001584 if (clearInputSurfaceIfNeeded) {
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001585 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1586 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa1f213362019-01-24 06:59:16 -08001587 if (config->mInputSurface) {
1588 config->mInputSurface->disconnect();
1589 config->mInputSurface = nullptr;
1590 }
1591 }
1592
Wonsik Kim936a89c2020-05-08 16:07:50 -07001593 mChannel->reset();
Pawin Vongmasa36653902018-11-15 00:10:25 -08001594 // thiz holds strong ref to this while the thread is running.
1595 sp<CCodec> thiz(this);
1596 std::thread([thiz, sendCallback] { thiz->release(sendCallback); }).detach();
1597}
1598
1599void CCodec::release(bool sendCallback) {
1600 std::shared_ptr<Codec2Client::Component> comp;
1601 {
1602 Mutexed<State>::Locked state(mState);
1603 if (state->get() == RELEASED) {
1604 if (sendCallback) {
1605 state.unlock();
1606 mCallback->onReleaseCompleted();
1607 state.lock();
1608 }
1609 return;
1610 }
1611 comp = state->comp;
1612 }
1613 comp->release();
1614
1615 {
1616 Mutexed<State>::Locked state(mState);
1617 state->set(RELEASED);
1618 state->comp.reset();
1619 }
Wonsik Kim936a89c2020-05-08 16:07:50 -07001620 (new AMessage(kWhatRelease, this))->post();
Pawin Vongmasa36653902018-11-15 00:10:25 -08001621 if (sendCallback) {
1622 mCallback->onReleaseCompleted();
1623 }
1624}
1625
1626status_t CCodec::setSurface(const sp<Surface> &surface) {
1627 return mChannel->setSurface(surface);
1628}
1629
1630void CCodec::signalFlush() {
1631 status_t err = [this] {
1632 Mutexed<State>::Locked state(mState);
1633 if (state->get() == FLUSHED) {
1634 return ALREADY_EXISTS;
1635 }
1636 if (state->get() != RUNNING) {
1637 return UNKNOWN_ERROR;
1638 }
1639 state->set(FLUSHING);
1640 return OK;
1641 }();
1642 switch (err) {
1643 case ALREADY_EXISTS:
1644 mCallback->onFlushCompleted();
1645 return;
1646 case OK:
1647 break;
1648 default:
1649 mCallback->onError(err, ACTION_CODE_FATAL);
1650 return;
1651 }
1652
1653 mChannel->stop();
1654 (new AMessage(kWhatFlush, this))->post();
1655}
1656
1657void CCodec::flush() {
1658 std::shared_ptr<Codec2Client::Component> comp;
1659 auto checkFlushing = [this, &comp] {
1660 Mutexed<State>::Locked state(mState);
1661 if (state->get() != FLUSHING) {
1662 return UNKNOWN_ERROR;
1663 }
1664 comp = state->comp;
1665 return OK;
1666 };
1667 if (tryAndReportOnError(checkFlushing) != OK) {
1668 return;
1669 }
1670
1671 std::list<std::unique_ptr<C2Work>> flushedWork;
1672 c2_status_t err = comp->flush(C2Component::FLUSH_COMPONENT, &flushedWork);
1673 {
1674 Mutexed<std::list<std::unique_ptr<C2Work>>>::Locked queue(mWorkDoneQueue);
1675 flushedWork.splice(flushedWork.end(), *queue);
1676 }
1677 if (err != C2_OK) {
1678 // TODO: convert err into status_t
1679 mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL);
1680 }
1681
1682 mChannel->flush(flushedWork);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001683
1684 {
1685 Mutexed<State>::Locked state(mState);
Iris Changce521ee2019-07-05 16:18:54 +08001686 if (state->get() == FLUSHING) {
1687 state->set(FLUSHED);
1688 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001689 }
1690 mCallback->onFlushCompleted();
1691}
1692
1693void CCodec::signalResume() {
Wonsik Kime75a5da2020-02-14 17:29:03 -08001694 std::shared_ptr<Codec2Client::Component> comp;
1695 auto setResuming = [this, &comp] {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001696 Mutexed<State>::Locked state(mState);
1697 if (state->get() != FLUSHED) {
1698 return UNKNOWN_ERROR;
1699 }
1700 state->set(RESUMING);
Wonsik Kime75a5da2020-02-14 17:29:03 -08001701 comp = state->comp;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001702 return OK;
1703 };
1704 if (tryAndReportOnError(setResuming) != OK) {
1705 return;
1706 }
1707
Wonsik Kime75a5da2020-02-14 17:29:03 -08001708 {
1709 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1710 const std::unique_ptr<Config> &config = *configLocked;
1711 config->queryConfiguration(comp);
1712 }
1713
Wonsik Kimfb7a7672019-12-27 17:13:33 -08001714 (void)mChannel->start(nullptr, nullptr, [&]{
1715 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1716 const std::unique_ptr<Config> &config = *configLocked;
1717 return config->mBuffersBoundToCodec;
1718 }());
Pawin Vongmasa36653902018-11-15 00:10:25 -08001719
1720 {
1721 Mutexed<State>::Locked state(mState);
1722 if (state->get() != RESUMING) {
1723 state.unlock();
1724 mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL);
1725 state.lock();
1726 return;
1727 }
1728 state->set(RUNNING);
1729 }
1730
1731 (void)mChannel->requestInitialInputBuffers();
1732}
1733
Wonsik Kimaa484ac2019-02-13 16:54:02 -08001734void CCodec::signalSetParameters(const sp<AMessage> &msg) {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001735 std::shared_ptr<Codec2Client::Component> comp;
1736 auto checkState = [this, &comp] {
1737 Mutexed<State>::Locked state(mState);
1738 if (state->get() == RELEASED) {
1739 return INVALID_OPERATION;
1740 }
1741 comp = state->comp;
1742 return OK;
1743 };
1744 if (tryAndReportOnError(checkState) != OK) {
1745 return;
1746 }
1747
Wonsik Kimaa484ac2019-02-13 16:54:02 -08001748 // NOTE: We used to ignore "bitrate" at setParameters; replicate
1749 // the behavior here.
1750 sp<AMessage> params = msg;
1751 int32_t bitrate;
1752 if (params->findInt32(KEY_BIT_RATE, &bitrate)) {
1753 params = msg->dup();
1754 params->removeEntryAt(params->findEntryByName(KEY_BIT_RATE));
1755 }
1756
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001757 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1758 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001759
1760 /**
1761 * Handle input surface parameters
1762 */
1763 if ((config->mDomain & (Config::IS_VIDEO | Config::IS_IMAGE))
Wonsik Kim8a6ed372019-12-03 16:05:51 -08001764 && (config->mDomain & Config::IS_ENCODER)
1765 && config->mInputSurface && config->mISConfig) {
Chong Zhang038e8f82019-02-06 19:05:14 -08001766 (void)params->findInt64(PARAMETER_KEY_OFFSET_TIME, &config->mISConfig->mTimeOffsetUs);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001767
1768 if (params->findInt64("skip-frames-before", &config->mISConfig->mStartAtUs)) {
1769 config->mISConfig->mStopped = false;
1770 } else if (params->findInt64("stop-time-us", &config->mISConfig->mStopAtUs)) {
1771 config->mISConfig->mStopped = true;
1772 }
1773
1774 int32_t value;
Chong Zhang038e8f82019-02-06 19:05:14 -08001775 if (params->findInt32(PARAMETER_KEY_SUSPEND, &value)) {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001776 config->mISConfig->mSuspended = value;
1777 config->mISConfig->mSuspendAtUs = -1;
Chong Zhang038e8f82019-02-06 19:05:14 -08001778 (void)params->findInt64(PARAMETER_KEY_SUSPEND_TIME, &config->mISConfig->mSuspendAtUs);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001779 }
1780
1781 (void)config->mInputSurface->configure(*config->mISConfig);
1782 if (config->mISConfig->mStopped) {
1783 config->mInputFormat->setInt64(
1784 "android._stop-time-offset-us", config->mISConfig->mInputDelayUs);
1785 }
1786 }
1787
1788 std::vector<std::unique_ptr<C2Param>> configUpdate;
1789 (void)config->getConfigUpdateFromSdkParams(
1790 comp, params, Config::IS_PARAM, C2_MAY_BLOCK, &configUpdate);
1791 // Prefer to pass parameters to the buffer channel, so they can be synchronized with the frames.
1792 // Parameter synchronization is not defined when using input surface. For now, route
1793 // these directly to the component.
1794 if (config->mInputSurface == nullptr
1795 && (property_get_bool("debug.stagefright.ccodec_delayed_params", false)
1796 || comp->getName().find("c2.android.") == 0)) {
1797 mChannel->setParameters(configUpdate);
1798 } else {
Wonsik Kim3b4349a2020-11-10 11:54:15 -08001799 sp<AMessage> outputFormat = config->mOutputFormat;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001800 (void)config->setParameters(comp, configUpdate, C2_MAY_BLOCK);
Wonsik Kim3b4349a2020-11-10 11:54:15 -08001801 RevertOutputFormatIfNeeded(outputFormat, config->mOutputFormat);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001802 }
1803}
1804
1805void CCodec::signalEndOfInputStream() {
1806 mCallback->onSignaledInputEOS(mChannel->signalEndOfInputStream());
1807}
1808
1809void CCodec::signalRequestIDRFrame() {
1810 std::shared_ptr<Codec2Client::Component> comp;
1811 {
1812 Mutexed<State>::Locked state(mState);
1813 if (state->get() == RELEASED) {
1814 ALOGD("no IDR request sent since component is released");
1815 return;
1816 }
1817 comp = state->comp;
1818 }
1819 ALOGV("request IDR");
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001820 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1821 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001822 std::vector<std::unique_ptr<C2Param>> params;
1823 params.push_back(
1824 std::make_unique<C2StreamRequestSyncFrameTuning::output>(0u, true));
1825 config->setParameters(comp, params, C2_MAY_BLOCK);
1826}
1827
Wonsik Kimab34ed62019-01-31 15:28:46 -08001828void CCodec::onWorkDone(std::list<std::unique_ptr<C2Work>> &workItems) {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001829 if (!workItems.empty()) {
Wonsik Kimab34ed62019-01-31 15:28:46 -08001830 Mutexed<std::list<std::unique_ptr<C2Work>>>::Locked queue(mWorkDoneQueue);
1831 queue->splice(queue->end(), workItems);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001832 }
1833 (new AMessage(kWhatWorkDone, this))->post();
1834}
1835
Wonsik Kimab34ed62019-01-31 15:28:46 -08001836void CCodec::onInputBufferDone(uint64_t frameIndex, size_t arrayIndex) {
1837 mChannel->onInputBufferDone(frameIndex, arrayIndex);
Wonsik Kim4f3314d2019-03-26 17:00:34 -07001838 if (arrayIndex == 0) {
1839 // We always put no more than one buffer per work, if we use an input surface.
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001840 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1841 const std::unique_ptr<Config> &config = *configLocked;
Wonsik Kim4f3314d2019-03-26 17:00:34 -07001842 if (config->mInputSurface) {
1843 config->mInputSurface->onInputBufferDone(frameIndex);
1844 }
1845 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001846}
1847
1848void CCodec::onMessageReceived(const sp<AMessage> &msg) {
1849 TimePoint now = std::chrono::steady_clock::now();
1850 CCodecWatchdog::getInstance()->watch(this);
1851 switch (msg->what()) {
1852 case kWhatAllocate: {
1853 // C2ComponentStore::createComponent() should return within 100ms.
Wonsik Kim9ee5a7c2019-06-17 11:33:24 -07001854 setDeadline(now, 1500ms, "allocate");
Pawin Vongmasa36653902018-11-15 00:10:25 -08001855 sp<RefBase> obj;
1856 CHECK(msg->findObject("codecInfo", &obj));
1857 allocate((MediaCodecInfo *)obj.get());
1858 break;
1859 }
1860 case kWhatConfigure: {
1861 // C2Component::commit_sm() should return within 5ms.
Wonsik Kim9ee5a7c2019-06-17 11:33:24 -07001862 setDeadline(now, 1500ms, "configure");
Pawin Vongmasa36653902018-11-15 00:10:25 -08001863 sp<AMessage> format;
1864 CHECK(msg->findMessage("format", &format));
1865 configure(format);
1866 break;
1867 }
1868 case kWhatStart: {
1869 // C2Component::start() should return within 500ms.
Wonsik Kim9ee5a7c2019-06-17 11:33:24 -07001870 setDeadline(now, 1500ms, "start");
Pawin Vongmasa36653902018-11-15 00:10:25 -08001871 start();
1872 break;
1873 }
1874 case kWhatStop: {
1875 // C2Component::stop() should return within 500ms.
Wonsik Kim9ee5a7c2019-06-17 11:33:24 -07001876 setDeadline(now, 1500ms, "stop");
Pawin Vongmasa36653902018-11-15 00:10:25 -08001877 stop();
Pawin Vongmasa36653902018-11-15 00:10:25 -08001878 break;
1879 }
1880 case kWhatFlush: {
1881 // C2Component::flush_sm() should return within 5ms.
Wonsik Kim9ee5a7c2019-06-17 11:33:24 -07001882 setDeadline(now, 1500ms, "flush");
Pawin Vongmasa36653902018-11-15 00:10:25 -08001883 flush();
1884 break;
1885 }
Wonsik Kim936a89c2020-05-08 16:07:50 -07001886 case kWhatRelease: {
1887 mChannel->release();
1888 mClient.reset();
1889 mClientListener.reset();
1890 break;
1891 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001892 case kWhatCreateInputSurface: {
1893 // Surface operations may be briefly blocking.
Wonsik Kim9ee5a7c2019-06-17 11:33:24 -07001894 setDeadline(now, 1500ms, "createInputSurface");
Pawin Vongmasa36653902018-11-15 00:10:25 -08001895 createInputSurface();
1896 break;
1897 }
1898 case kWhatSetInputSurface: {
1899 // Surface operations may be briefly blocking.
Wonsik Kim9ee5a7c2019-06-17 11:33:24 -07001900 setDeadline(now, 1500ms, "setInputSurface");
Pawin Vongmasa36653902018-11-15 00:10:25 -08001901 sp<RefBase> obj;
1902 CHECK(msg->findObject("surface", &obj));
1903 sp<PersistentSurface> surface(static_cast<PersistentSurface *>(obj.get()));
1904 setInputSurface(surface);
1905 break;
1906 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001907 case kWhatWorkDone: {
1908 std::unique_ptr<C2Work> work;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001909 bool shouldPost = false;
1910 {
1911 Mutexed<std::list<std::unique_ptr<C2Work>>>::Locked queue(mWorkDoneQueue);
1912 if (queue->empty()) {
1913 break;
1914 }
1915 work.swap(queue->front());
1916 queue->pop_front();
1917 shouldPost = !queue->empty();
1918 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001919 if (shouldPost) {
1920 (new AMessage(kWhatWorkDone, this))->post();
1921 }
1922
Pawin Vongmasa36653902018-11-15 00:10:25 -08001923 // handle configuration changes in work done
Wonsik Kim155d5cb2019-10-09 12:49:49 -07001924 Mutexed<std::unique_ptr<Config>>::Locked configLocked(mConfig);
1925 const std::unique_ptr<Config> &config = *configLocked;
Pawin Vongmasa36653902018-11-15 00:10:25 -08001926 Config::Watcher<C2StreamInitDataInfo::output> initData =
1927 config->watch<C2StreamInitDataInfo::output>();
1928 if (!work->worklets.empty()
1929 && (work->worklets.front()->output.flags
1930 & C2FrameData::FLAG_DISCARD_FRAME) == 0) {
1931
1932 // copy buffer info to config
Wonsik Kim5ecf3832019-04-18 10:28:58 -07001933 std::vector<std::unique_ptr<C2Param>> updates;
1934 for (const std::unique_ptr<C2Param> &param
1935 : work->worklets.front()->output.configUpdate) {
1936 updates.push_back(C2Param::Copy(*param));
1937 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001938 unsigned stream = 0;
1939 for (const std::shared_ptr<C2Buffer> &buf : work->worklets.front()->output.buffers) {
1940 for (const std::shared_ptr<const C2Info> &info : buf->info()) {
1941 // move all info into output-stream #0 domain
1942 updates.emplace_back(C2Param::CopyAsStream(*info, true /* output */, stream));
1943 }
George Burgess IVc813a592020-02-22 22:54:44 -08001944
1945 const std::vector<C2ConstGraphicBlock> blocks = buf->data().graphicBlocks();
1946 // for now only do the first block
1947 if (!blocks.empty()) {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001948 // ALOGV("got output buffer with crop %u,%u+%u,%u and size %u,%u",
1949 // block.crop().left, block.crop().top,
1950 // block.crop().width, block.crop().height,
1951 // block.width(), block.height());
George Burgess IVc813a592020-02-22 22:54:44 -08001952 const C2ConstGraphicBlock &block = blocks[0];
Pawin Vongmasa36653902018-11-15 00:10:25 -08001953 updates.emplace_back(new C2StreamCropRectInfo::output(stream, block.crop()));
1954 updates.emplace_back(new C2StreamPictureSizeInfo::output(
Harish Mahendrakarf7c49e22019-05-24 14:19:16 -07001955 stream, block.crop().width, block.crop().height));
Pawin Vongmasa36653902018-11-15 00:10:25 -08001956 }
1957 ++stream;
1958 }
1959
Wonsik Kim3b4349a2020-11-10 11:54:15 -08001960 sp<AMessage> outputFormat = config->mOutputFormat;
1961 config->updateConfiguration(updates, config->mOutputDomain);
1962 RevertOutputFormatIfNeeded(outputFormat, config->mOutputFormat);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001963
1964 // copy standard infos to graphic buffers if not already present (otherwise, we
1965 // may overwrite the actual intermediate value with a final value)
1966 stream = 0;
George Burgess IV3f1a0902020-03-18 12:58:32 -07001967 const static C2Param::Index stdGfxInfos[] = {
Pawin Vongmasa36653902018-11-15 00:10:25 -08001968 C2StreamRotationInfo::output::PARAM_TYPE,
1969 C2StreamColorAspectsInfo::output::PARAM_TYPE,
1970 C2StreamDataSpaceInfo::output::PARAM_TYPE,
1971 C2StreamHdrStaticInfo::output::PARAM_TYPE,
Pawin Vongmasa8be93112018-12-11 14:01:42 -08001972 C2StreamHdr10PlusInfo::output::PARAM_TYPE,
Pawin Vongmasa36653902018-11-15 00:10:25 -08001973 C2StreamPixelAspectRatioInfo::output::PARAM_TYPE,
1974 C2StreamSurfaceScalingInfo::output::PARAM_TYPE
1975 };
1976 for (const std::shared_ptr<C2Buffer> &buf : work->worklets.front()->output.buffers) {
1977 if (buf->data().graphicBlocks().size()) {
1978 for (C2Param::Index ix : stdGfxInfos) {
1979 if (!buf->hasInfo(ix)) {
1980 const C2Param *param =
1981 config->getConfigParameterValue(ix.withStream(stream));
1982 if (param) {
1983 std::shared_ptr<C2Param> info(C2Param::Copy(*param));
1984 buf->setInfo(std::static_pointer_cast<C2Info>(info));
1985 }
1986 }
1987 }
1988 }
1989 ++stream;
1990 }
1991 }
Wonsik Kim4f3314d2019-03-26 17:00:34 -07001992 if (config->mInputSurface) {
1993 config->mInputSurface->onInputBufferDone(work->input.ordinal.frameIndex);
1994 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08001995 mChannel->onWorkDone(
Wonsik Kim3b4349a2020-11-10 11:54:15 -08001996 std::move(work), config->mOutputFormat,
Wonsik Kimab34ed62019-01-31 15:28:46 -08001997 initData.hasChanged() ? initData.update().get() : nullptr);
Pawin Vongmasa36653902018-11-15 00:10:25 -08001998 break;
1999 }
2000 case kWhatWatch: {
2001 // watch message already posted; no-op.
2002 break;
2003 }
2004 default: {
2005 ALOGE("unrecognized message");
2006 break;
2007 }
2008 }
2009 setDeadline(TimePoint::max(), 0ms, "none");
2010}
2011
2012void CCodec::setDeadline(
2013 const TimePoint &now,
2014 const std::chrono::milliseconds &timeout,
2015 const char *name) {
2016 int32_t mult = std::max(1, property_get_int32("debug.stagefright.ccodec_timeout_mult", 1));
2017 Mutexed<NamedTimePoint>::Locked deadline(mDeadline);
2018 deadline->set(now + (timeout * mult), name);
2019}
2020
2021void CCodec::initiateReleaseIfStuck() {
2022 std::string name;
2023 bool pendingDeadline = false;
Wonsik Kimab34ed62019-01-31 15:28:46 -08002024 {
2025 Mutexed<NamedTimePoint>::Locked deadline(mDeadline);
Pawin Vongmasa36653902018-11-15 00:10:25 -08002026 if (deadline->get() < std::chrono::steady_clock::now()) {
2027 name = deadline->getName();
Pawin Vongmasa36653902018-11-15 00:10:25 -08002028 }
2029 if (deadline->get() != TimePoint::max()) {
2030 pendingDeadline = true;
2031 }
2032 }
2033 if (name.empty()) {
Wonsik Kimab34ed62019-01-31 15:28:46 -08002034 constexpr std::chrono::steady_clock::duration kWorkDurationThreshold = 3s;
2035 std::chrono::steady_clock::duration elapsed = mChannel->elapsed();
2036 if (elapsed >= kWorkDurationThreshold) {
2037 name = "queue";
2038 }
2039 if (elapsed > 0s) {
2040 pendingDeadline = true;
2041 }
2042 }
2043 if (name.empty()) {
Pawin Vongmasa36653902018-11-15 00:10:25 -08002044 // We're not stuck.
2045 if (pendingDeadline) {
2046 // If we are not stuck yet but still has deadline coming up,
2047 // post watch message to check back later.
2048 (new AMessage(kWhatWatch, this))->post();
2049 }
2050 return;
2051 }
2052
2053 ALOGW("previous call to %s exceeded timeout", name.c_str());
2054 initiateRelease(false);
2055 mCallback->onError(UNKNOWN_ERROR, ACTION_CODE_FATAL);
2056}
2057
Wonsik Kim155d5cb2019-10-09 12:49:49 -07002058// static
2059PersistentSurface *CCodec::CreateInputSurface() {
Pawin Vongmasa18588322019-05-18 01:52:13 -07002060 using namespace android;
Wonsik Kim9917d4a2019-10-24 12:56:38 -07002061 using ::android::hardware::media::omx::V1_0::implementation::TWGraphicBufferSource;
Pawin Vongmasa36653902018-11-15 00:10:25 -08002062 // Attempt to create a Codec2's input surface.
Pawin Vongmasa18588322019-05-18 01:52:13 -07002063 std::shared_ptr<Codec2Client::InputSurface> inputSurface =
2064 Codec2Client::CreateInputSurface();
Lajos Molnar47118272019-01-31 16:28:04 -08002065 if (!inputSurface) {
Pawin Vongmasa18588322019-05-18 01:52:13 -07002066 if (property_get_int32("debug.stagefright.c2inputsurface", 0) == -1) {
2067 sp<IGraphicBufferProducer> gbp;
2068 sp<OmxGraphicBufferSource> gbs = new OmxGraphicBufferSource();
2069 status_t err = gbs->initCheck();
2070 if (err != OK) {
2071 ALOGE("Failed to create persistent input surface: error %d", err);
2072 return nullptr;
2073 }
2074 return new PersistentSurface(
Wonsik Kim9917d4a2019-10-24 12:56:38 -07002075 gbs->getIGraphicBufferProducer(), new TWGraphicBufferSource(gbs));
Pawin Vongmasa18588322019-05-18 01:52:13 -07002076 } else {
2077 return nullptr;
2078 }
Pawin Vongmasa36653902018-11-15 00:10:25 -08002079 }
Pawin Vongmasa18588322019-05-18 01:52:13 -07002080 return new PersistentSurface(
Lajos Molnar47118272019-01-31 16:28:04 -08002081 inputSurface->getGraphicBufferProducer(),
Pawin Vongmasa18588322019-05-18 01:52:13 -07002082 static_cast<sp<android::hidl::base::V1_0::IBase>>(
Lajos Molnar47118272019-01-31 16:28:04 -08002083 inputSurface->getHalInterface()));
Pawin Vongmasa36653902018-11-15 00:10:25 -08002084}
2085
Wonsik Kimffb889a2020-05-28 11:32:25 -07002086class IntfCache {
2087public:
2088 IntfCache() = default;
2089
2090 status_t init(const std::string &name) {
2091 std::shared_ptr<Codec2Client::Interface> intf{
2092 Codec2Client::CreateInterfaceByName(name.c_str())};
2093 if (!intf) {
2094 ALOGW("IntfCache [%s]: Unrecognized interface name", name.c_str());
2095 mInitStatus = NO_INIT;
2096 return NO_INIT;
2097 }
2098 const static C2StreamUsageTuning::input sUsage{0u /* stream id */};
2099 mFields.push_back(C2FieldSupportedValuesQuery::Possible(
2100 C2ParamField{&sUsage, &sUsage.value}));
2101 c2_status_t err = intf->querySupportedValues(mFields, C2_MAY_BLOCK);
2102 if (err != C2_OK) {
2103 ALOGW("IntfCache [%s]: failed to query usage supported value (err=%d)",
2104 name.c_str(), err);
2105 mFields[0].status = err;
2106 }
2107 std::vector<std::unique_ptr<C2Param>> params;
2108 err = intf->query(
2109 {&mApiFeatures},
2110 {C2PortAllocatorsTuning::input::PARAM_TYPE},
2111 C2_MAY_BLOCK,
2112 &params);
2113 if (err != C2_OK && err != C2_BAD_INDEX) {
2114 ALOGW("IntfCache [%s]: failed to query api features (err=%d)",
2115 name.c_str(), err);
2116 }
2117 while (!params.empty()) {
2118 C2Param *param = params.back().release();
2119 params.pop_back();
2120 if (!param) {
2121 continue;
2122 }
2123 if (param->type() == C2PortAllocatorsTuning::input::PARAM_TYPE) {
2124 mInputAllocators.reset(
Wonsik Kimd79ee1f2020-08-27 17:41:56 -07002125 C2PortAllocatorsTuning::input::From(param));
Wonsik Kimffb889a2020-05-28 11:32:25 -07002126 }
2127 }
2128 mInitStatus = OK;
2129 return OK;
Wonsik Kimfcf46c32020-04-22 13:50:45 -07002130 }
Wonsik Kimffb889a2020-05-28 11:32:25 -07002131
2132 status_t initCheck() const { return mInitStatus; }
2133
2134 const C2FieldSupportedValuesQuery &getUsageSupportedValues() const {
2135 CHECK_EQ(1u, mFields.size());
2136 return mFields[0];
2137 }
2138
2139 const C2ApiFeaturesSetting &getApiFeatures() const {
2140 return mApiFeatures;
2141 }
2142
2143 const C2PortAllocatorsTuning::input &getInputAllocators() const {
2144 static std::unique_ptr<C2PortAllocatorsTuning::input> sInvalidated = []{
2145 std::unique_ptr<C2PortAllocatorsTuning::input> param =
2146 C2PortAllocatorsTuning::input::AllocUnique(0);
2147 param->invalidate();
2148 return param;
2149 }();
2150 return mInputAllocators ? *mInputAllocators : *sInvalidated;
2151 }
2152
2153private:
2154 status_t mInitStatus{NO_INIT};
2155
2156 std::vector<C2FieldSupportedValuesQuery> mFields;
2157 C2ApiFeaturesSetting mApiFeatures;
2158 std::unique_ptr<C2PortAllocatorsTuning::input> mInputAllocators;
2159};
2160
2161static const IntfCache &GetIntfCache(const std::string &name) {
2162 static IntfCache sNullIntfCache;
2163 static std::mutex sMutex;
2164 static std::map<std::string, IntfCache> sCache;
2165 std::unique_lock<std::mutex> lock{sMutex};
2166 auto it = sCache.find(name);
2167 if (it == sCache.end()) {
2168 lock.unlock();
2169 IntfCache intfCache;
2170 status_t err = intfCache.init(name);
2171 if (err != OK) {
2172 return sNullIntfCache;
2173 }
2174 lock.lock();
2175 it = sCache.insert({name, std::move(intfCache)}).first;
2176 }
2177 return it->second;
Wonsik Kimfcf46c32020-04-22 13:50:45 -07002178}
2179
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002180static status_t GetCommonAllocatorIds(
2181 const std::vector<std::string> &names,
2182 C2Allocator::type_t type,
2183 std::set<C2Allocator::id_t> *ids) {
2184 int poolMask = GetCodec2PoolMask();
2185 C2PlatformAllocatorStore::id_t preferredLinearId = GetPreferredLinearAllocatorId(poolMask);
2186 C2Allocator::id_t defaultAllocatorId =
2187 (type == C2Allocator::LINEAR) ? preferredLinearId : C2PlatformAllocatorStore::GRALLOC;
2188
2189 ids->clear();
2190 if (names.empty()) {
2191 return OK;
2192 }
Wonsik Kimfcf46c32020-04-22 13:50:45 -07002193 bool firstIteration = true;
2194 for (const std::string &name : names) {
Wonsik Kimffb889a2020-05-28 11:32:25 -07002195 const IntfCache &intfCache = GetIntfCache(name);
2196 if (intfCache.initCheck() != OK) {
Wonsik Kimfcf46c32020-04-22 13:50:45 -07002197 continue;
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002198 }
Wonsik Kimffb889a2020-05-28 11:32:25 -07002199 const C2PortAllocatorsTuning::input &allocators = intfCache.getInputAllocators();
Wonsik Kimfcf46c32020-04-22 13:50:45 -07002200 if (firstIteration) {
2201 firstIteration = false;
Wonsik Kimffb889a2020-05-28 11:32:25 -07002202 if (allocators && allocators.flexCount() > 0) {
2203 ids->insert(allocators.m.values,
2204 allocators.m.values + allocators.flexCount());
Wonsik Kimfcf46c32020-04-22 13:50:45 -07002205 }
2206 if (ids->empty()) {
2207 // The component does not advertise allocators. Use default.
2208 ids->insert(defaultAllocatorId);
2209 }
2210 continue;
2211 }
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002212 bool filtered = false;
Wonsik Kimffb889a2020-05-28 11:32:25 -07002213 if (allocators && allocators.flexCount() > 0) {
2214 filtered = true;
2215 for (auto it = ids->begin(); it != ids->end(); ) {
2216 bool found = false;
2217 for (size_t j = 0; j < allocators.flexCount(); ++j) {
2218 if (allocators.m.values[j] == *it) {
2219 found = true;
2220 break;
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002221 }
Wonsik Kimffb889a2020-05-28 11:32:25 -07002222 }
2223 if (found) {
2224 ++it;
2225 } else {
2226 it = ids->erase(it);
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002227 }
2228 }
2229 }
2230 if (!filtered) {
2231 // The component does not advertise supported allocators. Use default.
2232 bool containsDefault = (ids->count(defaultAllocatorId) > 0u);
2233 if (ids->size() != (containsDefault ? 1 : 0)) {
2234 ids->clear();
2235 if (containsDefault) {
2236 ids->insert(defaultAllocatorId);
2237 }
2238 }
2239 }
2240 }
2241 // Finally, filter with pool masks
2242 for (auto it = ids->begin(); it != ids->end(); ) {
2243 if ((poolMask >> *it) & 1) {
2244 ++it;
2245 } else {
2246 it = ids->erase(it);
2247 }
2248 }
2249 return OK;
2250}
2251
2252static status_t CalculateMinMaxUsage(
2253 const std::vector<std::string> &names, uint64_t *minUsage, uint64_t *maxUsage) {
2254 static C2StreamUsageTuning::input sUsage{0u /* stream id */};
2255 *minUsage = 0;
2256 *maxUsage = ~0ull;
2257 for (const std::string &name : names) {
Wonsik Kimffb889a2020-05-28 11:32:25 -07002258 const IntfCache &intfCache = GetIntfCache(name);
2259 if (intfCache.initCheck() != OK) {
Wonsik Kimfcf46c32020-04-22 13:50:45 -07002260 continue;
2261 }
Wonsik Kimffb889a2020-05-28 11:32:25 -07002262 const C2FieldSupportedValuesQuery &usageSupportedValues =
2263 intfCache.getUsageSupportedValues();
2264 if (usageSupportedValues.status != C2_OK) {
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002265 continue;
2266 }
Wonsik Kimffb889a2020-05-28 11:32:25 -07002267 const C2FieldSupportedValues &supported = usageSupportedValues.values;
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002268 if (supported.type != C2FieldSupportedValues::FLAGS) {
2269 continue;
2270 }
2271 if (supported.values.empty()) {
2272 *maxUsage = 0;
2273 continue;
2274 }
2275 *minUsage |= supported.values[0].u64;
2276 int64_t currentMaxUsage = 0;
2277 for (const C2Value::Primitive &flags : supported.values) {
2278 currentMaxUsage |= flags.u64;
2279 }
2280 *maxUsage &= currentMaxUsage;
2281 }
2282 return OK;
2283}
2284
2285// static
2286status_t CCodec::CanFetchLinearBlock(
2287 const std::vector<std::string> &names, const C2MemoryUsage &usage, bool *isCompatible) {
Wonsik Kimffb889a2020-05-28 11:32:25 -07002288 for (const std::string &name : names) {
2289 const IntfCache &intfCache = GetIntfCache(name);
2290 if (intfCache.initCheck() != OK) {
2291 continue;
2292 }
2293 const C2ApiFeaturesSetting &features = intfCache.getApiFeatures();
2294 if (features && !(features.value & API_SAME_INPUT_BUFFER)) {
2295 *isCompatible = false;
2296 return OK;
2297 }
2298 }
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002299 std::set<C2Allocator::id_t> allocators;
2300 GetCommonAllocatorIds(names, C2Allocator::LINEAR, &allocators);
2301 if (allocators.empty()) {
2302 *isCompatible = false;
2303 return OK;
2304 }
Chih-Yu Huang990b5622020-10-13 14:53:37 +09002305
2306 uint64_t minUsage = 0;
2307 uint64_t maxUsage = ~0ull;
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002308 CalculateMinMaxUsage(names, &minUsage, &maxUsage);
Chih-Yu Huang990b5622020-10-13 14:53:37 +09002309 minUsage |= usage.expected;
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002310 *isCompatible = ((maxUsage & minUsage) == minUsage);
2311 return OK;
2312}
2313
2314static std::shared_ptr<C2BlockPool> GetPool(C2Allocator::id_t allocId) {
2315 static std::mutex sMutex{};
2316 static std::map<C2Allocator::id_t, std::shared_ptr<C2BlockPool>> sPools;
2317 std::unique_lock<std::mutex> lock{sMutex};
2318 std::shared_ptr<C2BlockPool> pool;
2319 auto it = sPools.find(allocId);
2320 if (it == sPools.end()) {
2321 c2_status_t err = CreateCodec2BlockPool(allocId, nullptr, &pool);
2322 if (err == OK) {
2323 sPools.emplace(allocId, pool);
2324 } else {
2325 pool.reset();
2326 }
2327 } else {
2328 pool = it->second;
2329 }
2330 return pool;
2331}
2332
2333// static
2334std::shared_ptr<C2LinearBlock> CCodec::FetchLinearBlock(
2335 size_t capacity, const C2MemoryUsage &usage, const std::vector<std::string> &names) {
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002336 std::set<C2Allocator::id_t> allocators;
2337 GetCommonAllocatorIds(names, C2Allocator::LINEAR, &allocators);
2338 if (allocators.empty()) {
2339 allocators.insert(C2PlatformAllocatorStore::DEFAULT_LINEAR);
2340 }
Chih-Yu Huang990b5622020-10-13 14:53:37 +09002341
2342 uint64_t minUsage = 0;
2343 uint64_t maxUsage = ~0ull;
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002344 CalculateMinMaxUsage(names, &minUsage, &maxUsage);
Chih-Yu Huang990b5622020-10-13 14:53:37 +09002345 minUsage |= usage.expected;
Wonsik Kimfb7a7672019-12-27 17:13:33 -08002346 if ((maxUsage & minUsage) != minUsage) {
2347 allocators.clear();
2348 allocators.insert(C2PlatformAllocatorStore::DEFAULT_LINEAR);
2349 }
2350 std::shared_ptr<C2LinearBlock> block;
2351 for (C2Allocator::id_t allocId : allocators) {
2352 std::shared_ptr<C2BlockPool> pool = GetPool(allocId);
2353 if (!pool) {
2354 continue;
2355 }
2356 c2_status_t err = pool->fetchLinearBlock(capacity, C2MemoryUsage{minUsage}, &block);
2357 if (err != C2_OK || !block) {
2358 block.reset();
2359 continue;
2360 }
2361 break;
2362 }
2363 return block;
2364}
2365
2366// static
2367status_t CCodec::CanFetchGraphicBlock(
2368 const std::vector<std::string> &names, bool *isCompatible) {
2369 uint64_t minUsage = 0;
2370 uint64_t maxUsage = ~0ull;
2371 std::set<C2Allocator::id_t> allocators;
2372 GetCommonAllocatorIds(names, C2Allocator::GRAPHIC, &allocators);
2373 if (allocators.empty()) {
2374 *isCompatible = false;
2375 return OK;
2376 }
2377 CalculateMinMaxUsage(names, &minUsage, &maxUsage);
2378 *isCompatible = ((maxUsage & minUsage) == minUsage);
2379 return OK;
2380}
2381
2382// static
2383std::shared_ptr<C2GraphicBlock> CCodec::FetchGraphicBlock(
2384 int32_t width,
2385 int32_t height,
2386 int32_t format,
2387 uint64_t usage,
2388 const std::vector<std::string> &names) {
2389 uint32_t halPixelFormat = HAL_PIXEL_FORMAT_YCBCR_420_888;
2390 if (!C2Mapper::mapPixelFormatFrameworkToCodec(format, &halPixelFormat)) {
2391 ALOGD("Unrecognized pixel format: %d", format);
2392 return nullptr;
2393 }
2394 uint64_t minUsage = 0;
2395 uint64_t maxUsage = ~0ull;
2396 std::set<C2Allocator::id_t> allocators;
2397 GetCommonAllocatorIds(names, C2Allocator::GRAPHIC, &allocators);
2398 if (allocators.empty()) {
2399 allocators.insert(C2PlatformAllocatorStore::DEFAULT_GRAPHIC);
2400 }
2401 CalculateMinMaxUsage(names, &minUsage, &maxUsage);
2402 minUsage |= usage;
2403 if ((maxUsage & minUsage) != minUsage) {
2404 allocators.clear();
2405 allocators.insert(C2PlatformAllocatorStore::DEFAULT_GRAPHIC);
2406 }
2407 std::shared_ptr<C2GraphicBlock> block;
2408 for (C2Allocator::id_t allocId : allocators) {
2409 std::shared_ptr<C2BlockPool> pool;
2410 c2_status_t err = CreateCodec2BlockPool(allocId, nullptr, &pool);
2411 if (err != C2_OK || !pool) {
2412 continue;
2413 }
2414 err = pool->fetchGraphicBlock(
2415 width, height, halPixelFormat, C2MemoryUsage{minUsage}, &block);
2416 if (err != C2_OK || !block) {
2417 block.reset();
2418 continue;
2419 }
2420 break;
2421 }
2422 return block;
2423}
2424
Wonsik Kim155d5cb2019-10-09 12:49:49 -07002425} // namespace android
2426