/* * Copyright (C) 2023 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ANDROID_C2_SOFT_DAV1D_DEC_H_ #define ANDROID_C2_SOFT_DAV1D_DEC_H_ #include #include #include #include #include #include #include #include //#define FILE_DUMP_ENABLE 1 namespace android { struct C2SoftDav1dDec : public SimpleC2Component { class IntfImpl; C2SoftDav1dDec(const char* name, c2_node_id_t id, const std::shared_ptr& intfImpl); ~C2SoftDav1dDec(); // Begin SimpleC2Component overrides. c2_status_t onInit() override; c2_status_t onStop() override; void onReset() override; void onRelease() override; c2_status_t onFlush_sm() override; void process(const std::unique_ptr& work, const std::shared_ptr& pool) override; c2_status_t drain(uint32_t drainMode, const std::shared_ptr& pool) override; // End SimpleC2Component overrides. private: std::shared_ptr mIntf; int mInputBufferIndex = 0; int mOutputBufferIndex = 0; Dav1dContext* mDav1dCtx = nullptr; // configurations used by component in process // (TODO: keep this in intf but make them internal only) std::shared_ptr mPixelFormatInfo; std::shared_ptr mActualOutputDelayInfo; uint32_t mHalPixelFormat; uint32_t mWidth; uint32_t mHeight; bool mSignalledOutputEos; bool mSignalledError; // Used during 10-bit I444/I422 to 10-bit P010 & 8-bit I420 conversions. std::unique_ptr mTmpFrameBuffer; size_t mTmpFrameBufferSize = 0; C2StreamHdrStaticMetadataInfo::output mHdrStaticMetadataInfo; std::unique_ptr mHdr10PlusInfo = nullptr; // Color aspects. These are ISO values and are meant to detect changes in aspects to avoid // converting them to C2 values for each frame struct VuiColorAspects { uint8_t primaries; uint8_t transfer; uint8_t coeffs; uint8_t fullRange; // default color aspects VuiColorAspects() : primaries(C2Color::PRIMARIES_UNSPECIFIED), transfer(C2Color::TRANSFER_UNSPECIFIED), coeffs(C2Color::MATRIX_UNSPECIFIED), fullRange(C2Color::RANGE_UNSPECIFIED) {} bool operator==(const VuiColorAspects& o) { return primaries == o.primaries && transfer == o.transfer && coeffs == o.coeffs && fullRange == o.fullRange; } } mBitstreamColorAspects; nsecs_t mTimeStart = 0; // Time at the start of decode() nsecs_t mTimeEnd = 0; // Time at the end of decode() bool initDecoder(); void getHDRStaticParams(const Dav1dPicture* picture, const std::unique_ptr& work); void getHDR10PlusInfoData(const Dav1dPicture* picture, const std::unique_ptr& work); void getVuiParams(const Dav1dPicture* picture); void destroyDecoder(); void finishWork(uint64_t index, const std::unique_ptr& work, const std::shared_ptr& block, const Dav1dPicture &img); // Sets |work->result| and mSignalledError. Returns false. void setError(const std::unique_ptr& work, c2_status_t error); bool allocTmpFrameBuffer(size_t size); bool outputBuffer(const std::shared_ptr& pool, const std::unique_ptr& work); c2_status_t drainInternal(uint32_t drainMode, const std::shared_ptr& pool, const std::unique_ptr& work); void flushDav1d(); #ifdef FILE_DUMP_ENABLE C2SoftDav1dDump mC2SoftDav1dDump; #endif C2_DO_NOT_COPY(C2SoftDav1dDec); }; } // namespace android #endif // ANDROID_C2_SOFT_DAV1D_DEC_H_