Home
last modified time | relevance | path

Searched refs:DecodeDataProcess (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/distributedhardware/distributed_camera/services/data_process/src/pipeline_node/multimedia_codec/decoder/
H A Ddecode_data_process.cpp33 DecodeDataProcess::~DecodeDataProcess() in ~DecodeDataProcess()
95 void DecodeDataProcess::InitCodecEvent() in InitCodecEvent()
105 void DecodeDataProcess::StartEventHandler() in StartEventHandler()
121 int32_t DecodeDataProcess::InitDecoder() in InitDecoder()
235 int32_t DecodeDataProcess::StartVideoDecoder() in StartVideoDecoder()
251 int32_t DecodeDataProcess::StopVideoDecoder() in StopVideoDecoder()
275 void DecodeDataProcess::ReleaseVideoDecoder() in ReleaseVideoDecoder()
307 void DecodeDataProcess::ReleaseCodecEvent() in ReleaseCodecEvent()
318 void DecodeDataProcess::ReleaseProcessNode() in ReleaseProcessNode()
479 void DecodeDataProcess::ReduceWaitDecodeCnt() in ReduceWaitDecodeCnt()
[all …]
H A Ddecode_data_process_common.cpp33 DecodeDataProcess::~DecodeDataProcess() in ~DecodeDataProcess()
95 void DecodeDataProcess::InitCodecEvent() in InitCodecEvent()
105 void DecodeDataProcess::StartEventHandler() in StartEventHandler()
121 int32_t DecodeDataProcess::InitDecoder() in InitDecoder()
273 int32_t DecodeDataProcess::StartVideoDecoder() in StartVideoDecoder()
293 int32_t DecodeDataProcess::StopVideoDecoder() in StopVideoDecoder()
317 void DecodeDataProcess::ReleaseVideoDecoder() in ReleaseVideoDecoder()
354 void DecodeDataProcess::ReleaseCodecEvent() in ReleaseCodecEvent()
365 void DecodeDataProcess::ReleaseProcessNode() in ReleaseProcessNode()
526 void DecodeDataProcess::ReduceWaitDecodeCnt() in ReduceWaitDecodeCnt()
[all …]
H A Ddecode_surface_listener.cpp31 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnBufferAvailable()
44 void DecodeSurfaceListener::SetDecodeVideoNode(const std::weak_ptr<DecodeDataProcess>& decodeVideoN… in SetDecodeVideoNode()
54 std::shared_ptr<DecodeDataProcess> DecodeSurfaceListener::GetDecodeVideoNode() const in GetDecodeVideoNode()
56 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in GetDecodeVideoNode()
H A Ddecode_video_callback.cpp25 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnError()
33 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnInputBufferAvailable()
44 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnOutputFormatChanged()
56 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnOutputBufferAvailable()
/ohos5.0/foundation/distributedhardware/distributed_camera/services/data_process/include/pipeline_node/multimedia_codec/decoder/
H A Ddecode_surface_listener.h26 class DecodeDataProcess; variable
30 …DecodeSurfaceListener(sptr<IConsumerSurface> surface, std::weak_ptr<DecodeDataProcess> decodeVideo… in DecodeSurfaceListener()
36 void SetDecodeVideoNode(const std::weak_ptr<DecodeDataProcess>& decodeVideoNode);
38 std::shared_ptr<DecodeDataProcess> GetDecodeVideoNode() const;
42 std::weak_ptr<DecodeDataProcess> decodeVideoNode_;
H A Ddecode_video_callback.h27 class DecodeDataProcess; variable
31 explicit DecodeVideoCallback(const std::weak_ptr<DecodeDataProcess>& decodeVideoNode) in DecodeVideoCallback()
41 std::weak_ptr<DecodeDataProcess> decodeVideoNode_;
H A Ddecode_data_process.h50 class DecodeDataProcess : public AbstractDataProcess, public std::enable_shared_from_this<DecodeDat…
52 DecodeDataProcess(const std::shared_ptr<AppExecFwk::EventHandler>& pipeEventHandler, in DecodeDataProcess() function
55 ~DecodeDataProcess() override;
/ohos5.0/foundation/distributedhardware/distributed_camera/interfaces/inner_kits/native_cpp/test/sourcefuzztest/decodeoninputbufferavailable_fuzzer/
H A Ddecodeoninputbufferavailable_fuzzer.cpp32 std::shared_ptr<DecodeDataProcess> decodeDataProcess = in DecodeOnInputBufferAvailableFuzzTest()
33 std::make_shared<DecodeDataProcess>(pipeEventHandler, sourcePipeline); in DecodeOnInputBufferAvailableFuzzTest()
/ohos5.0/foundation/distributedhardware/distributed_camera/interfaces/inner_kits/native_cpp/test/sourcefuzztest/decodeonoutputbufferavailable_fuzzer/
H A Ddecodeonoutputbufferavailable_fuzzer.cpp38 std::shared_ptr<DecodeDataProcess> decodeDataProcess = in DecodeOnOutputBufferAvailableFuzzTest()
39 std::make_shared<DecodeDataProcess>(pipeEventHandler, sourcePipeline); in DecodeOnOutputBufferAvailableFuzzTest()
/ohos5.0/foundation/distributedhardware/distributed_camera/services/data_process/include/pipeline/
H A Ddcamera_pipeline_source.h33 class DecodeDataProcess; variable
/ohos5.0/foundation/distributedhardware/distributed_camera/services/data_process/src/pipeline/
H A Ddcamera_pipeline_source.cpp123 …pipNodeRanks_.push_back(std::make_shared<DecodeDataProcess>(pipeEventHandler_, shared_from_this())… in InitDCameraPipNodes()
/ohos5.0/foundation/distributedhardware/distributed_camera/services/data_process/test/unittest/common/pipeline_node/
H A Ddecode_data_process_test.cpp36 std::shared_ptr<DecodeDataProcess> testDecodeDataProcess_;
64 testDecodeDataProcess_ = std::make_shared<DecodeDataProcess>(pipeEventHandler, sourcePipeline_); in SetUp()