mirror of
https://github.com/openharmony/drivers_peripheral.git
synced 2026-08-25 02:23:31 -04:00
75e8f98bea
Signed-off-by: qijinquan <qijinquan@kaihongdigi.com>
62 lines
3.1 KiB
C++
62 lines
3.1 KiB
C++
/*
|
|
* Copyright 2022 Shenzhen Kaihong DID Co., Ltd.
|
|
* 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 OHOS_HDI_CODEC_V1_0_CODECCOMPONENTSERVICE_H
|
|
#define OHOS_HDI_CODEC_V1_0_CODECCOMPONENTSERVICE_H
|
|
|
|
#include "component_node.h"
|
|
#include "v1_0/icodec_component.h"
|
|
namespace OHOS {
|
|
namespace HDI {
|
|
namespace Codec {
|
|
namespace V1_0 {
|
|
class CodecComponentService : public ICodecComponent {
|
|
public:
|
|
CodecComponentService(const std::shared_ptr<OHOS::Codec::Omx::ComponentNode> &node) : node_(node)
|
|
{}
|
|
virtual ~CodecComponentService() = default;
|
|
int32_t GetComponentVersion(CompVerInfo &verInfo) override;
|
|
int32_t SendCommand(OMX_COMMANDTYPE cmd, uint32_t param, const std::vector<int8_t> &cmdData) override;
|
|
int32_t GetParameter(uint32_t index, const std::vector<int8_t> &inParamStruct,
|
|
std::vector<int8_t> &outParamStruct) override;
|
|
int32_t SetParameter(uint32_t index, const std::vector<int8_t> ¶mStruct) override;
|
|
int32_t GetConfig(uint32_t index, const std::vector<int8_t> &inCfgStruct,
|
|
std::vector<int8_t> &outCfgStruct) override;
|
|
int32_t SetConfig(uint32_t index, const std::vector<int8_t> &cfgStruct) override;
|
|
int32_t GetExtensionIndex(const std::string ¶mName, uint32_t &indexType) override;
|
|
int32_t GetState(OMX_STATETYPE &state) override;
|
|
int32_t ComponentTunnelRequest(uint32_t port, int32_t tunneledComp, uint32_t tunneledPort,
|
|
const OMX_TUNNELSETUPTYPE &inTunnelSetup,
|
|
OMX_TUNNELSETUPTYPE &outTunnelSetup) override;
|
|
int32_t UseBuffer(uint32_t portIndex, const OmxCodecBuffer &inBuffer, OmxCodecBuffer &outBuffer) override;
|
|
int32_t AllocateBuffer(uint32_t portIndex, const OmxCodecBuffer &inBuffer, OmxCodecBuffer &outBuffer) override;
|
|
int32_t FreeBuffer(uint32_t portIndex, const OmxCodecBuffer &buffer) override;
|
|
int32_t EmptyThisBuffer(const OmxCodecBuffer &buffer) override;
|
|
int32_t FillThisBuffer(const OmxCodecBuffer &buffer) override;
|
|
int32_t SetCallbacks(const sptr<ICodecCallback> &callbacks, int64_t appData) override;
|
|
int32_t ComponentDeInit() override;
|
|
int32_t UseEglImage(uint32_t portIndex, const OmxCodecBuffer &inBuffer, OmxCodecBuffer &outBuffer,
|
|
const std::vector<int8_t> &eglImage) override;
|
|
int32_t ComponentRoleEnum(std::vector<uint8_t> &role, uint32_t index) override;
|
|
|
|
private:
|
|
std::shared_ptr<OHOS::Codec::Omx::ComponentNode> node_;
|
|
};
|
|
} // namespace V1_0
|
|
} // namespace Codec
|
|
} // namespace HDI
|
|
} // namespace OHOS
|
|
|
|
#endif // OHOS_HDI_CODEC_V1_0_CODECCOMPONENTSERVICE_H
|