/drivers/peripheral/codec/test/demo/idl/include/ |
H A D | codec_hdi_callback.h | 20 class CodecHdiCallback : public OHOS::HDI::Codec::V3_0::ICodecCallback { 25 int32_t EventHandler(OHOS::HDI::Codec::V3_0::CodecEventType event, 26 const OHOS::HDI::Codec::V3_0::EventInfo &info) override; 28 int32_t EmptyBufferDone(int64_t appData, const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) override; 30 int32_t FillBufferDone(int64_t appData, const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) override;
|
H A D | icodec_hdi_callback_base.h | 21 virtual int32_t EventHandler(OHOS::HDI::Codec::V3_0::CodecEventType event, 22 const OHOS::HDI::Codec::V3_0::EventInfo &info) = 0; 23 virtual int32_t OnEmptyBufferDone(const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) = 0; 24 virtual int32_t OnFillBufferDone(const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) = 0;
|
H A D | codec_hdi_decode.h | 42 using OHOS::HDI::Codec::V3_0::OmxCodecBuffer; 47 std::shared_ptr<OHOS::HDI::Codec::V3_0::OmxCodecBuffer> omxBuffer; 91 int32_t OnEmptyBufferDone(const struct OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) override; 92 int32_t OnFillBufferDone(const struct OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) override; 93 int32_t EventHandler(OHOS::HDI::Codec::V3_0::CodecEventType event, 94 const OHOS::HDI::Codec::V3_0::EventInfo &info) override; 127 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecComponent> client_; 128 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecCallback> callback_; 129 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecComponentManager> omxMgr_;
|
H A D | codec_hdi_encode.h | 42 using OHOS::HDI::Codec::V3_0::OmxCodecBuffer; 88 int32_t EventHandler(OHOS::HDI::Codec::V3_0::CodecEventType event, 89 const OHOS::HDI::Codec::V3_0::EventInfo &info) override; 116 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecComponent> client_; 117 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecCallback> callback_; 118 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecComponentManager> omxMgr_;
|
/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codeccommonhdi_fuzzer/ |
H A D | codeccallback_fuzzer.h | 24 class CodecCallbackFuzz : public OHOS::HDI::Codec::V3_0::ICodecCallback { 28 int32_t EventHandler(OHOS::HDI::Codec::V3_0::CodecEventType event, 29 const OHOS::HDI::Codec::V3_0::EventInfo &info) override; 30 int32_t EmptyBufferDone(int64_t appData, const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) override; 31 int32_t FillBufferDone(int64_t appData, const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) override;
|
H A D | codeccallback_fuzzer.cpp | 21 int32_t CodecCallbackFuzz::EventHandler(OHOS::HDI::Codec::V3_0::CodecEventType event, in EventHandler() 22 const OHOS::HDI::Codec::V3_0::EventInfo &info) in EventHandler() 29 int32_t CodecCallbackFuzz::EmptyBufferDone(int64_t appData, const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) in EmptyBufferDone() 36 int32_t CodecCallbackFuzz::FillBufferDone(int64_t appData, const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) in FillBufferDone()
|
H A D | codeccommon_fuzzer.h | 26 using OHOS::HDI::Codec::V3_0::OmxCodecBuffer; 29 inline OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecComponent> g_component; 30 inline OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecCallback> g_callback; 31 inline OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecComponentManager> g_manager;
|
/drivers/peripheral/codec/test/demo/idl/src/ |
H A D | codec_hdi_callback.cpp | 23 int32_t CodecHdiCallback::EventHandler(OHOS::HDI::Codec::V3_0::CodecEventType event, in EventHandler() 24 const OHOS::HDI::Codec::V3_0::EventInfo &info) in EventHandler() 32 int32_t CodecHdiCallback::EmptyBufferDone(int64_t appData, const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) in EmptyBufferDone() 40 int32_t CodecHdiCallback::FillBufferDone(int64_t appData, const OHOS::HDI::Codec::V3_0::OmxCodecBuffer &buffer) in FillBufferDone()
|
H A D | codec_hdi_encode.cpp | 28 using namespace OHOS::HDI::Codec::V3_0; 108 omxMgr_ = OHOS::HDI::Codec::V3_0::ICodecComponentManager::Get(); in Init() 127 struct OHOS::HDI::Codec::V3_0::CompVerInfo verInfo; in Init() 433 omxBuffer->type = OHOS::HDI::Codec::V3_0::READ_ONLY_TYPE; in UseBufferOnPort() 436 omxBuffer->type = OHOS::HDI::Codec::V3_0::READ_WRITE_TYPE; in UseBufferOnPort() 573 OHOS::HDI::Codec::V3_0::AvCodecRole role = OHOS::HDI::Codec::V3_0::AvCodecRole::MEDIA_ROLETYPE_VIDEO_AVC; in GetComponentName() 588 if (cap.type == OHOS::HDI::Codec::V3_0::CodecType::VIDEO_ENCODER && cap.role == role) { in GetComponentName() 700 int32_t CodecHdiEncode::EventHandler(OHOS::HDI::Codec::V3_0::CodecEventType event, in EventHandler() 701 const OHOS::HDI::Codec::V3_0 in EventHandler() [all...] |
/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codeccreatecomponenthdi_fuzzer/ |
H A D | codeccreatecomponent_fuzzer.cpp | 19 using namespace OHOS::HDI::Codec::V3_0; 29 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecComponent> client_ = nullptr; in CodecCreateComponent() 30 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecCallback> callback_ = nullptr; in CodecCreateComponent() 31 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecComponentManager> omxMgr_ = nullptr; in CodecCreateComponent()
|
/drivers/peripheral/codec/hal/idl_service/include/ |
H A D | component_node.h | 30 using OHOS::HDI::Codec::V3_0::CompVerInfo; 31 using OHOS::HDI::Codec::V3_0::ICodecCallback; 32 using OHOS::HDI::Codec::V3_0::OmxCodecBuffer; 33 using OHOS::HDI::Codec::V3_0::CodecStateType; 44 int32_t SendCommand(HDI::Codec::V3_0::CodecCommandType cmd, uint32_t param, int8_t *cmdData); 52 int32_t GetState(HDI::Codec::V3_0::CodecStateType &state); 54 OHOS::HDI::Codec::V3_0::CodecTunnelSetupType &tunnelSetup); 75 int32_t OnEvent(HDI::Codec::V3_0::CodecEventType event, uint32_t data1, uint32_t data2, void *eventData);
|
H A D | codec_death_recipient.h | 27 namespace V3_0 {
namespace 50 } // namespace V3_0
|
H A D | codec_dfx_service.h | 29 namespace V3_0 {
namespace 49 } // namespace V3_0
|
H A D | codec_component_manager_service.h | 29 namespace V3_0 { namespace 52 } // namespace V3_0
|
H A D | icodec_buffer.h | 27 using OHOS::HDI::Codec::V3_0::OmxCodecBuffer;
|
H A D | codec_component_config.h | 21 using OHOS::HDI::Codec::V3_0::CodecCompCapability;
|
/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codeccomponenttunnelrequesthdi_fuzzer/ |
H A D | codeccomponenttunnelrequest_fuzzer.cpp | 26 struct OHOS::HDI::Codec::V3_0::CodecTunnelSetupType tunnelSetup; 54 const struct OHOS::HDI::Codec::V3_0::CodecTunnelSetupType inTunnelSetup = params.tunnelSetup; in CodecComponentTunnelRequest() 55 struct OHOS::HDI::Codec::V3_0::CodecTunnelSetupType outTunnelSetup; in CodecComponentTunnelRequest()
|
/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codecsendcommandhdi_fuzzer/ |
H A D | codecsendcommand_fuzzer.cpp | 22 using namespace OHOS::HDI::Codec::V3_0; 23 using OHOS::HDI::Codec::V3_0::CodecCommandType; 24 using OHOS::HDI::Codec::V3_0::CodecStateType;
|
/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codecallocatebufferhdi_fuzzer/ |
H A D | codecallocatebuffer_fuzzer.cpp | 38 int32_t ret = g_component->SendCommand(HDI::Codec::V3_0::CODEC_COMMAND_STATE_SET, in CodecAllocateBuffer() 39 HDI::Codec::V3_0::CODEC_STATE_IDLE, {}); in CodecAllocateBuffer()
|
/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codecgetcomponentcapabilitylisthdi_fuzzer/ |
H A D | codecgetcomponentcapabilitylist_fuzzer.cpp | 19 using namespace OHOS::HDI::Codec::V3_0; 29 OHOS::sptr<OHOS::HDI::Codec::V3_0::ICodecComponentManager> omxMgr_ = nullptr; in CodecGetComponentCapabilityList()
|
/drivers/peripheral/codec/hal/idl_service/src/ |
H A D | component_node.cpp | 31 using OHOS::HDI::Codec::V3_0::EventInfo; 32 using OHOS::HDI::Codec::V3_0::CodecEventType; 33 using OHOS::HDI::Codec::V3_0::CodecStateType; 34 using OHOS::HDI::Codec::V3_0::CodecCommandType; 35 using OHOS::HDI::Codec::V3_0::CodecStateType; 36 using OHOS::HDI::Codec::V3_0::CODEC_STATE_INVALID; 37 using OHOS::HDI::Codec::V3_0::CODEC_STATE_LOADED; 38 using OHOS::HDI::Codec::V3_0::CODEC_STATE_IDLE; 39 using OHOS::HDI::Codec::V3_0::CODEC_STATE_EXECUTING; 40 using OHOS::HDI::Codec::V3_0 [all...] |
H A D | codec_component_manager_driver.cpp | 24 using namespace OHOS::HDI::Codec::V3_0;
|
/drivers/peripheral/codec/test/benchmarktest/ |
H A D | codec_callback_service.cpp | 22 namespace V3_0 { namespace 43 } // V3_0
|
H A D | codec_callback_service.h | 24 namespace V3_0 { namespace 33 } // V3_0
|
/drivers/peripheral/codec/test/unittest/idl_omx/ |
H A D | codec_callback_service.cpp | 22 namespace V3_0 { namespace 43 } // V3_0
|