Home
last modified time | relevance | path

Searched refs:V3_0 (Results 1 - 25 of 46) sorted by relevance

12

/drivers/peripheral/codec/test/demo/idl/include/
H A Dcodec_hdi_callback.h20 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 Dicodec_hdi_callback_base.h21 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 Dcodec_hdi_decode.h42 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 Dcodec_hdi_encode.h42 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 Dcodeccallback_fuzzer.h24 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 Dcodeccallback_fuzzer.cpp21 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 Dcodeccommon_fuzzer.h26 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 Dcodec_hdi_callback.cpp23 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 Dcodec_hdi_encode.cpp28 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 Dcodeccreatecomponent_fuzzer.cpp19 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 Dcomponent_node.h30 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 Dcodec_death_recipient.h27 namespace V3_0 { namespace
50 } // namespace V3_0
H A Dcodec_dfx_service.h29 namespace V3_0 { namespace
49 } // namespace V3_0
H A Dcodec_component_manager_service.h29 namespace V3_0 { namespace
52 } // namespace V3_0
H A Dicodec_buffer.h27 using OHOS::HDI::Codec::V3_0::OmxCodecBuffer;
H A Dcodec_component_config.h21 using OHOS::HDI::Codec::V3_0::CodecCompCapability;
/drivers/peripheral/codec/test/fuzztest/hdi_fuzzer/codeccomponenttunnelrequesthdi_fuzzer/
H A Dcodeccomponenttunnelrequest_fuzzer.cpp26 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 Dcodecsendcommand_fuzzer.cpp22 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 Dcodecallocatebuffer_fuzzer.cpp38 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 Dcodecgetcomponentcapabilitylist_fuzzer.cpp19 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 Dcomponent_node.cpp31 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 Dcodec_component_manager_driver.cpp24 using namespace OHOS::HDI::Codec::V3_0;
/drivers/peripheral/codec/test/benchmarktest/
H A Dcodec_callback_service.cpp22 namespace V3_0 { namespace
43 } // V3_0
H A Dcodec_callback_service.h24 namespace V3_0 { namespace
33 } // V3_0
/drivers/peripheral/codec/test/unittest/idl_omx/
H A Dcodec_callback_service.cpp22 namespace V3_0 { namespace
43 } // V3_0

Completed in 8 milliseconds

12