Home
last modified time | relevance | path

Searched refs:CodecCallbackType (Results 1 – 25 of 35) sorted by relevance

12

/ohos5.0/drivers/peripheral/codec/interfaces/include/
H A Dcodec_callback_if.h60 struct CodecCallbackType { struct
90 …int32_t (*EventHandler)(struct CodecCallbackType *self, enum OMX_EVENTTYPE event, struct EventInfo… argument
104 …int32_t (*EmptyBufferDone)(struct CodecCallbackType *self, int64_t appData, const struct OmxCodecB… argument
118 …int32_t (*FillBufferDone)(struct CodecCallbackType *self, int64_t appData, const struct OmxCodecBu… argument
128 struct CodecCallbackType *CodecCallbackTypeGet(struct HdfRemoteService *remote);
135 void CodecCallbackTypeRelease(struct CodecCallbackType *instance);
H A Dcodec_component_manager.h102 int64_t appData, struct CodecCallbackType *callbacks);
H A Dcodec_component_if.h335 …int32_t (*SetCallbacks)(struct CodecComponentType *self, struct CodecCallbackType *callback, int64…
/ohos5.0/drivers/peripheral/codec/hal/src/
H A Dcodec_callback_type_proxy.c25 struct CodecCallbackType instance;
39 static int32_t CodecCallbackTypeProxyCall(struct CodecCallbackType *self, int32_t id, struct HdfSBu… in CodecCallbackTypeProxyCall()
96 static int32_t CodecCallbackTypeProxyEventHandler(struct CodecCallbackType *self, enum OMX_EVENTTYP… in CodecCallbackTypeProxyEventHandler()
143 static int32_t CodecCallbackTypeProxyEmptyBufferDone(struct CodecCallbackType *self, int64_t appDat… in CodecCallbackTypeProxyEmptyBufferDone()
188 static int32_t CodecCallbackTypeProxyFillBufferDone(struct CodecCallbackType *self, int64_t appData, in CodecCallbackTypeProxyFillBufferDone()
233 static void CodecCallbackTypeProxyConstruct(struct CodecCallbackType *instance) in CodecCallbackTypeProxyConstruct()
244 struct CodecCallbackType *CodecCallbackTypeGet(struct HdfRemoteService *remote) in CodecCallbackTypeGet()
251 …struct CodecCallbackType *instance = (struct CodecCallbackType *)OsalMemAlloc(sizeof(struct CodecC… in CodecCallbackTypeGet()
268 void CodecCallbackTypeRelease(struct CodecCallbackType *instance) in CodecCallbackTypeRelease()
H A Dcodec_callback_type_stub.c30 typedef void (*SERVICE_CONSTRUCT_FUNC)(struct CodecCallbackType *);
33 struct CodecCallbackType service;
115 static int32_t SerStubEventHandler(struct CodecCallbackType *serviceImpl, in SerStubEventHandler()
145 static int32_t SerStubEmptyBufferDone(struct CodecCallbackType *serviceImpl, in SerStubEmptyBufferDone()
179 static int32_t SerStubFillBufferDone(struct CodecCallbackType *serviceImpl, in SerStubFillBufferDone()
214 struct CodecCallbackType *serviceImpl = (struct CodecCallbackType*)service; in CodecCallbackTypeServiceOnRemoteRequest()
250 struct CodecCallbackType *CodecCallbackTypeStubGetInstance(void) in CodecCallbackTypeStubGetInstance()
293 void CodecCallbackTypeStubRelease(struct CodecCallbackType *instance) in CodecCallbackTypeStubRelease()
307 struct CodecCallbackType *CodecCallbackTypeGet(struct HdfRemoteService *remote) in CodecCallbackTypeGet()
313 void CodecCallbackTypeRelease(struct CodecCallbackType *instance) in CodecCallbackTypeRelease()
H A Dcodec_callback_type_service.c20 static int32_t CodecCallbackTypeEventHandler(struct CodecCallbackType *self, enum OMX_EVENTTYPE eEv… in CodecCallbackTypeEventHandler()
27 static int32_t CodecCallbackTypeEmptyBufferDone(struct CodecCallbackType *self, int64_t appData, in CodecCallbackTypeEmptyBufferDone()
34 static int32_t CodecCallbackTypeFillBufferDone(struct CodecCallbackType *self, int64_t appData, in CodecCallbackTypeFillBufferDone()
41 void CodecCallbackTypeServiceConstruct(struct CodecCallbackType *instance) in CodecCallbackTypeServiceConstruct()
H A Dcodec_component_manager_stub.c81 struct CodecCallbackType **callback) in ReadParamsForCreateComponent()
116 struct CodecCallbackType *callback = NULL; in SerStubCreateComponent()
H A Dcodec_component_manager_service.c42 static void AddDeathRecipientForService(struct CodecCallbackType *callbacks, uint32_t componentId, in AddDeathRecipientForService()
139 int64_t appData, struct CodecCallbackType *callbacks) in OmxManagerCreateComponent()
H A Dcodec_component_manager_proxy.c136 struct CodecCallbackType *callback) in FillHdfSBufData()
158 int64_t appData, struct CodecCallbackType *callback) in CreateComponent()
H A Dcodec_death_recipient.cpp33 bool RegisterService(struct CodecCallbackType *callbacks, uint32_t componentId, in RegisterService()
H A Dcodec_adapter.cpp37 struct CodecCallbackType *callbacks) in OMXAdapterCreateComponent()
236 int32_t OmxAdapterSetCallbacks(struct CodecComponentNode *codecNode, struct CodecCallbackType *omxC… in OmxAdapterSetCallbacks()
/ohos5.0/drivers/peripheral/codec/test/demo/v2.0/include/
H A Dcodec_hdi_decode.h86 …static int32_t OnEvent(struct CodecCallbackType *self, OMX_EVENTTYPE event, struct EventInfo *info…
87 static int32_t OnEmptyBufferDone(struct CodecCallbackType *self, int64_t appData,
89 static int32_t OnFillBufferDone(struct CodecCallbackType *self, int64_t appData,
140 struct CodecCallbackType *callback_;
H A Dcodec_hdi_encode.h76 …static int32_t OnEvent(struct CodecCallbackType *self, OMX_EVENTTYPE event, struct EventInfo *info…
78 static int32_t OnEmptyBufferDone(struct CodecCallbackType *self, int64_t appData,
80 static int32_t OnFillBufferDone(struct CodecCallbackType *self, int64_t appData,
135 struct CodecCallbackType *callback_;
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/codec_adapter/
H A Dhdi_codec_adapter.h65 static int32_t EventHandler(CodecCallbackType* self, OMX_EVENTTYPE event, EventInfo* info);
66 …static int32_t EmptyBufferDone(CodecCallbackType* self, int64_t appData, const OmxCodecBuffer* omx…
67 …static int32_t FillBufferDone(CodecCallbackType* self, int64_t appData, const OmxCodecBuffer* omxB…
75 CodecCallbackType* codecCallback_ {nullptr};
H A Dhdi_codec_adapter.cpp53 int32_t HdiCodecAdapter::EventHandler(CodecCallbackType* self, OMX_EVENTTYPE event, EventInfo* info) in EventHandler()
64 int32_t HdiCodecAdapter::EmptyBufferDone(CodecCallbackType* self, int64_t appData, const OmxCodecBu… in EmptyBufferDone()
77 int32_t HdiCodecAdapter::FillBufferDone(CodecCallbackType* self, int64_t appData, const OmxCodecBuf… in FillBufferDone()
/ohos5.0/drivers/peripheral/codec/hal/include/
H A Dcodec_callback_type_stub.h25 struct CodecCallbackType* CodecCallbackTypeStubGetInstance(void);
27 void CodecCallbackTypeStubRelease(struct CodecCallbackType *instance);
H A Dcodec_adapter_interface.h29 struct CodecCallbackType *callbacks);
97 int32_t OmxAdapterSetCallbacks(struct CodecComponentNode *codecNode, struct CodecCallbackType *omxC…
H A Dcodec_callback_type_service.h25 void CodecCallbackTypeServiceConstruct(struct CodecCallbackType *service);
H A Dcodec_death_recipient.h28 bool RegisterService(struct CodecCallbackType *callbacks, uint32_t componentId, struct CodecCompone…
H A Dcodec_internal.h61 int32_t appDataSize, struct CodecCallbackType *callbacks);
/ohos5.0/drivers/peripheral/codec/hal/v2.0/hdi_impl/include/
H A Dcomponent_node.h36 ComponentNode(struct CodecCallbackType *callback, int64_t appData, const std::string &compName);
69 int32_t SetCallbacks(struct CodecCallbackType *omxCallback, int64_t appData);
126 struct CodecCallbackType *omxCallback_; // Callbacks in HDI
/ohos5.0/drivers/peripheral/codec/test/unittest/hdi_omx/
H A Dcodec_hdi_manager_test.cpp64 struct CodecCallbackType *callback = CodecCallbackTypeGet(nullptr);
91 struct CodecCallbackType *callback = CodecCallbackTypeGet(nullptr);
/ohos5.0/drivers/peripheral/codec/test/fuzztest/omx_fuzzer/codeccommonomx_fuzzer/
H A Dcodeccommon_fuzzer.h30 extern CodecCallbackType *g_callback;
H A Dcodeccommon_fuzzer.cpp43 CodecCallbackType *g_callback = nullptr;
/ohos5.0/drivers/peripheral/codec/test/fuzztest/omx_fuzzer/codeccreatecomponentomx_fuzzer/
H A Dcodeccreatecomponent_fuzzer.cpp25 CodecCallbackType* g_callback = CodecCallbackTypeStubGetInstance(); in CodecCreateComponent()

12