Home
last modified time | relevance | path

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

/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/src/distributedcameramgr/dcameradata/
H A Ddcamera_stream_data_process_producer.cpp70 smoother_ = std::make_unique<DCameraFeedingSmoother>(); in Start()
72 smoother_->RegisterListener(smootherListener_); in Start()
73 smoother_->StartSmooth(); in Start()
89 if (smoother_ != nullptr) { in Stop()
90 smoother_->StopSmooth(); in Stop()
91 smoother_ = nullptr; in Stop()
130 CHECK_AND_RETURN_LOG(smoother_ == nullptr, "smoother_ is null."); in FeedStream()
132 smoother_->PushData(buffer); in FeedStream()
/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/include/distributedcameramgr/dcameradata/
H A Ddcamera_stream_data_process_producer.h76 std::unique_ptr<IFeedingSmoother> smoother_ = nullptr; variable