Lines Matching defs:fc
96 int32_t CameraImpl::TriggerLoopingCapture(FrameConfig &fc)
102 int32_t type = fc.GetFrameConfigType();
115 int32_t ret = deviceClient_->TriggerLoopingCapture(fc);
120 frameConfigs_.emplace_back(&fc);
156 int32_t CameraImpl::TriggerSingleCapture(FrameConfig &fc)
166 if (fc.GetFrameConfigType() != FRAME_CONFIG_CAPTURE) {
170 int32_t ret = deviceClient_->TriggerSingleCapture(dynamic_cast<FrameConfig &>(fc));
202 void CameraImpl::OnFrameFinished(int32_t ret, FrameConfig &fc)
213 eventhdl->Post([fsc, this, &fc] {
215 fsc->OnFrameError(*this, fc, -1, frameResult);
219 eventhdl->Post([fsc, this, &fc] {
221 fsc->OnFrameFinished(*this, fc, frameResult);