Home
last modified time | relevance | path

Searched refs:targetDecoderNode (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributedhardware/distributed_camera/services/data_process/src/pipeline_node/multimedia_codec/decoder/
H A Ddecode_video_callback.cpp25 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnError() local
27 targetDecoderNode->OnError(); in OnError()
33 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnInputBufferAvailable() local
34 if (targetDecoderNode == nullptr) { in OnInputBufferAvailable()
38 targetDecoderNode->OnInputBufferAvailable(index, buffer); in OnInputBufferAvailable()
44 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnOutputFormatChanged() local
45 if (targetDecoderNode == nullptr) { in OnOutputFormatChanged()
49 targetDecoderNode->OnOutputFormatChanged(format); in OnOutputFormatChanged()
56 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnOutputBufferAvailable() local
57 if (targetDecoderNode == nullptr) { in OnOutputBufferAvailable()
[all …]
H A Ddecode_surface_listener.cpp31 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in OnBufferAvailable() local
32 if (targetDecoderNode == nullptr) { in OnBufferAvailable()
36 targetDecoderNode->OnSurfaceOutputBufferAvailable(surface_); in OnBufferAvailable()
56 std::shared_ptr<DecodeDataProcess> targetDecoderNode = decodeVideoNode_.lock(); in GetDecodeVideoNode() local
57 if (targetDecoderNode == nullptr) { in GetDecodeVideoNode()
60 return targetDecoderNode; in GetDecodeVideoNode()