Home
last modified time | relevance | path

Searched refs:captureId (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/src/dfx/
H A Dcamera_report_dfx_uitls.cpp53 void CameraReportDfxUtils::SetFirstBufferEndInfo(int32_t captureId) in SetFirstBufferEndInfo() argument
58 map<int32_t, CaptureDfxInfo>::iterator iter = captureList_.find(captureId); in SetFirstBufferEndInfo()
67 void CameraReportDfxUtils::SetPrepareProxyStartInfo(int32_t captureId) in SetPrepareProxyStartInfo() argument
72 map<int32_t, CaptureDfxInfo>::iterator iter = captureList_.find(captureId); in SetPrepareProxyStartInfo()
81 void CameraReportDfxUtils::SetPrepareProxyEndInfo(int32_t captureId) in SetPrepareProxyEndInfo() argument
86 map<int32_t, CaptureDfxInfo>::iterator iter = captureList_.find(captureId); in SetPrepareProxyEndInfo()
95 void CameraReportDfxUtils::SetAddProxyStartInfo(int32_t captureId) in SetAddProxyStartInfo() argument
100 map<int32_t, CaptureDfxInfo>::iterator iter = captureList_.find(captureId); in SetAddProxyStartInfo()
109 void CameraReportDfxUtils::SetAddProxyEndInfo(int32_t captureId) in SetAddProxyEndInfo() argument
120 captureList_.erase(captureId); in SetAddProxyEndInfo()
[all …]
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/server/src/
H A Dhstream_capture_callback_stub.cpp61 int32_t captureId = data.ReadInt32(); in HandleOnCaptureStarted() local
63 return OnCaptureStarted(captureId); in HandleOnCaptureStarted()
68 int32_t captureId = data.ReadInt32(); in HandleOnCaptureStarted_V1_2() local
76 int32_t captureId = data.ReadInt32(); in HandleOnCaptureEnded() local
84 int32_t captureId = data.ReadInt32(); in HandleOnCaptureError() local
87 return OnCaptureError(captureId, errorCode); in HandleOnCaptureError()
92 int32_t captureId = data.ReadInt32(); in HandleOnFrameShutter() local
95 return OnFrameShutter(captureId, timestamp); in HandleOnFrameShutter()
100 int32_t captureId = data.ReadInt32(); in HandleOnFrameShutterEnd() local
108 int32_t captureId = data.ReadInt32(); in HandleOnCaptureReady() local
[all …]
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/src/
H A Dhstream_capture.cpp254 burstNumMap_.emplace(captureId, 0); in PrepareBurst()
268 if (burstkeyMap_.erase(captureId) > 0 && in ResetBurstKey()
270 burstNumMap_.erase(captureId) > 0) { in ResetBurstKey()
282 auto iter = burstkeyMap_.find(captureId); in GetBurstKey()
295 auto iter = burstkeyMap_.find(captureId); in IsBurstCapture()
321 captureId, imageId.c_str()); in SetBurstImages()
343 ResetBurstKey(captureId); in CheckResetBurstKey()
423 captureInfo.captureId = preparedCaptureId; in Capture()
497 int32_t captureId) in SetRotation() argument
771 if (IsBurstCapture(captureId)) { in OnCaptureReady()
[all …]
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/camera/
H A Dinterface_i_stream_operator_callback_v10.md22 | [OnCaptureStarted](#oncapturestarted) ([in] int captureId, [in] int[] streamIds) | 捕获开始回调,在捕获开始时调…
23 | [OnCaptureEnded](#oncaptureended) ([in] int captureId, [in] struct [CaptureEndedInfo](_capture_en…
25 | [OnFrameShutter](#onframeshutter) ([in] int captureId, [in] int[] streamIds, [in] unsigned long t…
34 IStreamOperatorCallback::OnCaptureEnded ([in] int captureId, [in] struct CaptureEndedInfo[] infos )
46 | captureId | 用于标识回调对应的捕获请求。 |
57 IStreamOperatorCallback::OnCaptureError ([in] int captureId, [in] struct CaptureErrorInfo[] infos )
69 | captureId | 用于标识回调对应的捕获请求。 |
76 IStreamOperatorCallback::OnCaptureStarted ([in] int captureId, [in] int[] streamIds )
88 | captureId | 用于标识回调对应的捕获请求。 |
99 IStreamOperatorCallback::OnFrameShutter ([in] int captureId, [in] int[] streamIds, [in] unsigned lo…
[all …]
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/include/
H A Dhstream_capture.h55 int32_t OnCaptureStarted(int32_t captureId);
57 int32_t OnCaptureEnded(int32_t captureId, int32_t frameCount);
58 int32_t OnCaptureError(int32_t captureId, int32_t errorType);
73 bool IsBurstCapture(int32_t captureId) const;
74 bool IsBurstCover(int32_t captureId) const;
75 int32_t GetCurBurstSeq(int32_t captureId) const;
76 std::string GetBurstKey(int32_t captureId) const;
77 void SetBurstImages(int32_t captureId, std::string imageId);
78 void CheckResetBurstKey(int32_t captureId);
85 int32_t PrepareBurst(int32_t captureId);
[all …]
/ohos5.0/drivers/peripheral/audio/hdi_service/primary_impl/vdi_src/
H A Daudio_capture_vdi.c37 uint32_t captureId; member
56 if (priv->captureInfos[captureId] == NULL) { in AudioGetVdiCaptureByIdVdi()
763 return captureId; in GetAvailableCaptureId()
767 captureId = capturePriv->captureCnt; in GetAvailableCaptureId()
772 captureId = index; in GetAvailableCaptureId()
778 return captureId; in GetAvailableCaptureId()
789 *captureId = AUDIO_VDI_STREAM_NUM_MAX; in AudioCreateCaptureByIdVdi()
793 *captureId = GetAvailableCaptureId(priv); in AudioCreateCaptureByIdVdi()
816 priv->captureInfos[*captureId] = NULL; in AudioCreateCaptureByIdVdi()
819 priv->captureInfos[*captureId]->captureId = *captureId; in AudioCreateCaptureByIdVdi()
[all …]
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/client/src/
H A Dhstream_capture_callback_proxy.cpp25 int32_t HStreamCaptureCallbackProxy::OnCaptureStarted(int32_t captureId) in OnCaptureStarted() argument
33 data.WriteInt32(captureId); in OnCaptureStarted()
52 data.WriteInt32(captureId); in OnCaptureStarted()
64 int32_t HStreamCaptureCallbackProxy::OnCaptureEnded(int32_t captureId, int32_t frameCount) in OnCaptureEnded() argument
72 data.WriteInt32(captureId); in OnCaptureEnded()
84 int32_t HStreamCaptureCallbackProxy::OnCaptureError(int32_t captureId, int32_t errorCode) in OnCaptureError() argument
92 data.WriteInt32(captureId); in OnCaptureError()
105 int32_t HStreamCaptureCallbackProxy::OnFrameShutter(int32_t captureId, uint64_t timestamp) in OnFrameShutter() argument
113 data.WriteInt32(captureId); in OnFrameShutter()
134 data.WriteInt32(captureId); in OnFrameShutterEnd()
[all …]
/ohos5.0/drivers/peripheral/camera/test/common/callback/src/
H A Dstream_operator_callback.cpp21 int32_t StreamOperatorCallback::OnCaptureStarted(int32_t captureId, const std::vector<int32_t>& str… in OnCaptureStarted() argument
23 (void)captureId; in OnCaptureStarted()
29 int32_t StreamOperatorCallback::OnCaptureEnded(int32_t captureId, const std::vector<CaptureEndedInf… in OnCaptureEnded() argument
31 (void)captureId; in OnCaptureEnded()
37 int32_t StreamOperatorCallback::OnCaptureError(int32_t captureId, const std::vector<CaptureErrorInf… in OnCaptureError() argument
39 (void)captureId; in OnCaptureError()
45 int32_t StreamOperatorCallback::OnFrameShutter(int32_t captureId, in OnFrameShutter() argument
48 (void)captureId; in OnFrameShutter()
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/src/avcodec/
H A Davcodec_task_manager.cpp148 int64_t timestamp = videoFdMap_[captureId].first; in CreateAVMuxer()
149 auto photoAssetProxy = videoFdMap_[captureId].second; in CreateAVMuxer()
150 videoFdMap_.erase(captureId); in CreateAVMuxer()
254 int32_t captureId) in FindIdrFrameIndex() argument
259 if (mPStartTimeMap_.count(captureId) && mPStartTimeMap_[captureId] <= shutterTime in FindIdrFrameIndex()
262 clearVideoStartTime = mPStartTimeMap_[captureId]; in FindIdrFrameIndex()
265 mPStartTimeMap_.erase(captureId); in FindIdrFrameIndex()
268 captureId, clearVideoStartTime); in FindIdrFrameIndex()
315 if (mPEndTimeMap_.count(captureId) && mPEndTimeMap_[captureId] >= shutterTime in ChooseVideoBuffer()
318 clearVideoEndTime = mPEndTimeMap_[captureId]; in ChooseVideoBuffer()
[all …]
/ohos5.0/drivers/peripheral/camera/hal_c/hdi_cif/src/
H A Dstream_operator_callback_wrapper.cpp28 void StreamCBOnCaptureStarted(int captureId, const int* streamId, int count) in StreamCBOnCaptureStarted() argument
38 g_streamCallback->OnCaptureStarted(captureId, ids); in StreamCBOnCaptureStarted()
41 void StreamCBOnCaptureEnded(int captureId, CaptureEndedInfoCIF* info, int count) in StreamCBOnCaptureEnded() argument
51 …CAMERA_LOGE("it is nullptr captureId: %{public}d streamId: %{public}d", captureId, info[i].streamI… in StreamCBOnCaptureEnded()
59 g_streamCallback->OnCaptureEnded(captureId, ends); in StreamCBOnCaptureEnded()
64 void StreamCBOnCaptureError(int captureId, CaptureErrorInfoCIF* info, int count) in StreamCBOnCaptureError() argument
74 …CAMERA_LOGE("it is nullptr captureId: %{public}d streamId: %{public}d", captureId, info[i].streamI… in StreamCBOnCaptureError()
82 g_streamCallback->OnCaptureError(captureId, errors); in StreamCBOnCaptureError()
87 void StreamCBOnFrameShutter(int captureId, const int* streamId, int count, uint64_t timestamp) in StreamCBOnFrameShutter() argument
101 g_streamCallback->OnFrameShutter(captureId, ids, timestamp); in StreamCBOnFrameShutter()
/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/cameraoperator/client/src/callback/
H A Ddcamera_photo_callback.cpp42 void DCameraPhotoCallback::OnFrameShutter(const int32_t captureId, const uint64_t timestamp) const in OnFrameShutter() argument
44 DHLOGI("enter, captureId: %{public}d, timestamp: %{public}" PRIu64, captureId, timestamp); in OnFrameShutter()
47 void DCameraPhotoCallback::OnFrameShutterEnd(const int32_t captureId, const uint64_t timestamp) con… in OnFrameShutterEnd() argument
49 DHLOGI("enter, captureId: %{public}d, timestamp: %{public}" PRIu64, captureId, timestamp); in OnFrameShutterEnd()
52 void DCameraPhotoCallback::OnCaptureReady(const int32_t captureId, const uint64_t timestamp) const in OnCaptureReady() argument
54 DHLOGI("enter, captureId: %{public}d, timestamp: %{public}" PRIu64, captureId, timestamp); in OnCaptureReady()
62 void DCameraPhotoCallback::OnCaptureError(const int32_t captureId, const int32_t errorCode) const in OnCaptureError() argument
64 DHLOGE("enter, captureId: %{public}d, errorCode: %{public}d", captureId, errorCode); in OnCaptureError()
/ohos5.0/drivers/peripheral/camera/test/benchmarktest/v1_3/src/
H A Dbenchmark_common.cpp413 for (auto &captureId : captureIds) { in StopStream() local
415 rc = streamOperator_V1_3->CancelCapture(captureId); in StopStream()
421 rc, captureId); in StopStream()
503 int32_t captureId = 0; in CreateProducer() local
508 buffer->GetExtraData()->ExtraGet(OHOS::Camera::captureId, captureId); in CreateProducer()
584 return instanceImpl.OnCaptureStarted(captureId, streamId); in OnCaptureStarted()
590 return instanceImpl.OnCaptureEnded(captureId, infos); in OnCaptureEnded()
596 return instanceImpl.OnCaptureError(captureId, infos); in OnCaptureError()
616 return instanceImpl.OnCaptureStarted(captureId, streamId); in OnCaptureStarted()
622 return instanceImpl.OnCaptureEnded(captureId, infos); in OnCaptureEnded()
[all …]
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/base/include/
H A Distream_capture_callback.h25 virtual int32_t OnCaptureStarted(int32_t captureId) = 0;
27 virtual int32_t OnCaptureStarted(int32_t captureId, uint32_t exposureTime) = 0;
29 virtual int32_t OnCaptureEnded(int32_t captureId, int32_t frameCount) = 0;
31 virtual int32_t OnCaptureError(int32_t captureId, int32_t errorType) = 0;
33 virtual int32_t OnFrameShutter(int32_t captureId, uint64_t timestamp) = 0;
35 virtual int32_t OnFrameShutterEnd(int32_t captureId, uint64_t timestamp) = 0;
37 virtual int32_t OnCaptureReady(int32_t captureId, uint64_t timestamp) = 0;
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/client/include/
H A Dhstream_capture_callback_proxy.h31 int32_t OnCaptureStarted(int32_t captureId) override;
33 int32_t OnCaptureStarted(int32_t captureId, uint32_t exposureTime) override;
35 int32_t OnCaptureEnded(int32_t captureId, int32_t frameCount) override;
37 int32_t OnCaptureError(int32_t captureId, int32_t errorType) override;
39 int32_t OnFrameShutter(int32_t captureId, uint64_t timestamp) override;
41 int32_t OnFrameShutterEnd(int32_t captureId, uint64_t timestamp) override;
43 int32_t OnCaptureReady(int32_t captureId, uint64_t timestamp) override;
/ohos5.0/drivers/peripheral/camera/hdi_service/v1_0/src/
H A Dstream_operator_service_callback.cpp25 int32_t StreamOperatorServiceCallback::OnCaptureStarted(int32_t captureId, const std::vector<int32_… in OnCaptureStarted() argument
28 return streamOperatorCallback_->OnCaptureStarted(captureId, streamIds); in OnCaptureStarted()
31 int32_t StreamOperatorServiceCallback::OnCaptureEnded(int32_t captureId, const std::vector<VdiCaptu… in OnCaptureEnded() argument
40 return streamOperatorCallback_->OnCaptureEnded(captureId, hdiInfos); in OnCaptureEnded()
43 int32_t StreamOperatorServiceCallback::OnCaptureError(int32_t captureId, const std::vector<VdiCaptu… in OnCaptureError() argument
52 return streamOperatorCallback_->OnCaptureError(captureId, hdiInfos); in OnCaptureError()
55 int32_t StreamOperatorServiceCallback::OnFrameShutter(int32_t captureId, in OnFrameShutter() argument
59 return streamOperatorCallback_->OnFrameShutter(captureId, streamIds, timestamp); in OnFrameShutter()
/ohos5.0/drivers/peripheral/camera/hal_c/include/
H A Dstream_operator_c_if.h27 void (*OnCaptureStarted)(int captureId, int* streamId, int count);
28 void (*OnCaptureEnded)(int captureId, CaptureEndedInfoCIF* info, int count);
29 void (*OnCaptureError)(int captureId, CaptureErrorInfoCIF* info, int count);
30 void (*OnFrameShutter)(int captureId, int* streamId, int count, uint64_t timestamp);
34 int (*CancelCapture)(int captureId);
51 int (*Capture)(int captureId, CaptureInfoCIF info, int isStreaming);
52 int (*CancelCapture)(int captureId);
/ohos5.0/drivers/peripheral/camera/test/hdi/v1_3/src/
H A Dhdi_common_v1_3.cpp448 for (auto &captureId : captureIds) { in StopStream() local
450 rc = streamOperator_V1_3->CancelCapture(captureId); in StopStream()
456 rc, captureId); in StopStream()
538 int32_t captureId = 0; in CreateProducer() local
543 buffer->GetExtraData()->ExtraGet(OHOS::Camera::captureId, captureId); in CreateProducer()
619 return instanceImpl.OnCaptureStarted(captureId, streamId); in OnCaptureStarted()
625 return instanceImpl.OnCaptureEnded(captureId, infos); in OnCaptureEnded()
631 return instanceImpl.OnCaptureError(captureId, infos); in OnCaptureError()
651 return instanceImpl.OnCaptureStarted(captureId, streamId); in OnCaptureStarted()
657 return instanceImpl.OnCaptureEnded(captureId, infos); in OnCaptureEnded()
[all …]
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/output/
H A Dphoto_output_napi.cpp216 int32_t captureId; in GetCaptureId() local
223 surfaceBuffer->GetExtraData()->ExtraGet(OHOS::Camera::captureId, captureId); in GetCaptureId()
231 return captureId; in GetCaptureId()
447 int32_t captureId; in CreateCameraPhotoProxy() local
451 surfaceBuffer->GetExtraData()->ExtraGet(OHOS::Camera::captureId, captureId); in CreateCameraPhotoProxy()
560 captureId); in ExecuteDeepCopySurfaceBuffer()
644 callbackInfo->captureId = captureId; in UpdatePictureJSCallback()
751 …return captureId > 0 ? (static_cast<int32_t>(static_cast<uint32_t>(captureId) & burstSeqIdMask)) :… in GetBurstSeqId()
775 captureId, GetBurstSeqId(captureId)); in AssembleAuxiliaryPhoto()
813 captureId, GetBurstSeqId(captureId)); in AssembleAuxiliaryPhoto()
[all …]
/ohos5.0/drivers/peripheral/camera/test/benchmarktest/v1_2/src/
H A Dbenchmark_common.cpp304 CAMERA_LOGI("check Capture: Capture success, %{public}d", captureId); in StartCapture()
315 for (auto &captureId : captureIds) { in StopStream() local
317 rc = streamOperator_V1_2->CancelCapture(captureId); in StopStream()
319 rc = streamOperator_V1_1->CancelCapture(captureId); in StopStream()
321 rc = streamOperator->CancelCapture(captureId); in StopStream()
328 rc, captureId); in StopStream()
404 int32_t captureId = 0; in CreateProducer() local
409 buffer->GetExtraData()->ExtraGet(OHOS::Camera::captureId, captureId); in CreateProducer()
472 int32_t Test::TestStreamOperatorCallback::OnFrameShutter(int32_t captureId, in OnFrameShutter() argument
490 int32_t Test::TestStreamOperatorCallbackV1_2::OnCaptureEnded(int32_t captureId, in OnCaptureEnded() argument
[all …]
/ohos5.0/drivers/peripheral/camera/test/ut/v4l2/
H A Ddouble_preview_test.cpp109 CAMERA_LOGI("check Capture: Capture success, captureId = %{public}d", captureId); in StartCapture()
113 if (captureId == cameraBase_->CAPTURE_ID_PREVIEW) { in StartCapture()
117 } else if (captureId == CAPTUREID_PREVIEW_DOUBLE) { in StartCapture()
133 for (const auto &captureId : captureIds) { in StopStream() local
134 if (captureId == cameraBase_->CAPTURE_ID_PREVIEW) { in StopStream()
136 } else if (captureId == CAPTUREID_PREVIEW_DOUBLE) { in StopStream()
138 } else if (captureId == cameraBase_->CAPTURE_ID_CAPTURE) { in StopStream()
140 } else if (captureId == cameraBase_->CAPTURE_ID_VIDEO) { in StopStream()
148 for (auto &captureId : captureIds) { in StopStream() local
149 result_ = (CamRetCode)cameraBase_->streamOperator->CancelCapture(captureId); in StopStream()
[all …]
/ohos5.0/drivers/peripheral/camera/vdi_base/v4l2/src/offline_stream_operator/
H A Doffline_stream_operator_vdi_impl.cpp31 int32_t OfflineStreamOperatorVdiImpl::CancelCapture(int32_t captureId) in CancelCapture() argument
33 CHECK_IF_EQUAL_RETURN_VALUE(captureId < 0, true, INVALID_ARGUMENT); in CancelCapture()
38 std::shared_ptr<OfflineStream> stream = FindStreamByCaptureId(captureId); in CancelCapture()
40 CAMERA_LOGD("can't find stream by captureId %{public}d, buffer all returned.", captureId); in CancelCapture()
43 RetCode ret = stream->CancelCapture(captureId); in CancelCapture()
45 CAMERA_LOGE("cancel captureId %{public}d failed", captureId); in CancelCapture()
103 …d::shared_ptr<OfflineStream> OfflineStreamOperatorVdiImpl::FindStreamByCaptureId(int32_t captureId) in FindStreamByCaptureId() argument
109 if (it->second->CheckCaptureIdExist(captureId)) { in FindStreamByCaptureId()
H A Doffline_stream.cpp64 RetCode OfflineStream::CancelCapture(int32_t captureId) in CancelCapture() argument
67 RetCode ret = manager.CancelCapture(streamId_, captureId); in CancelCapture()
69 CAMERA_LOGE("cancel capture %{public}d failed", captureId); in CancelCapture()
125 int32_t captureId = buffer->GetCaptureId(); in ReturnBuffer() local
132 … [captureId](const std::shared_ptr<CaptureRequest>& r) { return r->GetCaptureId() == captureId; }); in ReturnBuffer()
171 bool OfflineStream::CheckCaptureIdExist(int32_t captureId) in CheckCaptureIdExist() argument
176 … [captureId](const std::shared_ptr<CaptureRequest>& r) { return r->GetCaptureId() == captureId; }); in CheckCaptureIdExist()
223 void OfflineStream::OnCaptureEnded(int32_t captureId, const std::vector<VdiCaptureEndedInfo>& infos) in OnCaptureEnded() argument
226 callback_->OnCaptureEnded(captureId, infos); in OnCaptureEnded()
229 void OfflineStream::OnCaptureError(int32_t captureId, const std::vector<VdiCaptureErrorInfo>& infos) in OnCaptureError() argument
[all …]
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/include/dfx/
H A Dcamera_report_dfx_uitls.h26 int32_t captureId; member
41 void SetFirstBufferEndInfo(int32_t captureId);
43 void SetPrepareProxyStartInfo(int32_t captureId);
44 void SetPrepareProxyEndInfo(int32_t captureId);
46 void SetAddProxyStartInfo(int32_t captureId);
47 void SetAddProxyEndInfo(int32_t captureId);
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/output/
H A Dphoto_output.h72 virtual void OnFrameShutter(const int32_t captureId, const uint64_t timestamp) const = 0;
88 virtual void OnCaptureReady(const int32_t captureId, const uint64_t timestamp) const = 0;
103 virtual void OnCaptureError(const int32_t captureId, const int32_t errorCode) const = 0;
140 virtual void OnCaptureError(const int32_t captureId, const int32_t errorCode) const = 0;
486 void AcquireBufferToPrepareProxy(int32_t captureId);
524 int32_t OnCaptureStarted(const int32_t captureId) override;
531 int32_t OnCaptureStarted(const int32_t captureId, uint32_t exposureTime) override;
538 int32_t OnCaptureEnded(const int32_t captureId, const int32_t frameCount) override;
546 int32_t OnCaptureError(const int32_t captureId, const int32_t errorCode) override;
554 int32_t OnFrameShutter(const int32_t captureId, const uint64_t timestamp) override;
[all …]
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/camera_v1_0/cpp_target/camera/v1_0/
H A Dstream_operator_callback_proxy.cpp.txt57 int32_t OHOS::HDI::Camera::V1_0::StreamOperatorCallbackProxy::OnCaptureEnded(int32_t captureId,
63 int32_t OHOS::HDI::Camera::V1_0::StreamOperatorCallbackProxy::OnCaptureError(int32_t captureId,
69 int32_t OHOS::HDI::Camera::V1_0::StreamOperatorCallbackProxy::OnFrameShutter(int32_t captureId,
92 if (!streamOperatorCallbackData.WriteInt32(captureId)) {
93 HDF_LOGE("%{public}s: write captureId failed!", __func__);
128 if (!streamOperatorCallbackData.WriteInt32(captureId)) {
129 HDF_LOGE("%{public}s: write captureId failed!", __func__);
164 if (!streamOperatorCallbackData.WriteInt32(captureId)) {
165 HDF_LOGE("%{public}s: write captureId failed!", __func__);
200 if (!streamOperatorCallbackData.WriteInt32(captureId)) {
[all …]

12345678910>>...12