Home
last modified time | relevance | path

Searched refs:videoOutput (Results 1 - 25 of 27) sorted by relevance

12

/foundation/multimedia/camera_framework/frameworks/native/ndk/
H A Dvideo_output.cpp29 Camera_ErrorCode OH_VideoOutput_RegisterCallback(Camera_VideoOutput* videoOutput, VideoOutput_Callbacks* callback) in OH_VideoOutput_RegisterCallback() argument
31 CHECK_AND_RETURN_RET_LOG(videoOutput != nullptr, CAMERA_INVALID_ARGUMENT, in OH_VideoOutput_RegisterCallback()
32 "Invaild argument, videoOutput is null!"); in OH_VideoOutput_RegisterCallback()
42 videoOutput->RegisterCallback(callback); in OH_VideoOutput_RegisterCallback()
50 Camera_ErrorCode OH_VideoOutput_UnregisterCallback(Camera_VideoOutput* videoOutput, VideoOutput_Callbacks* callback) in OH_VideoOutput_UnregisterCallback() argument
52 CHECK_AND_RETURN_RET_LOG(videoOutput != nullptr, CAMERA_INVALID_ARGUMENT, in OH_VideoOutput_UnregisterCallback()
53 "Invaild argument, videoOutput is null!"); in OH_VideoOutput_UnregisterCallback()
63 videoOutput->UnregisterCallback(callback); in OH_VideoOutput_UnregisterCallback()
71 Camera_ErrorCode OH_VideoOutput_Start(Camera_VideoOutput* videoOutput) in OH_VideoOutput_Start() argument
73 CHECK_AND_RETURN_RET_LOG(videoOutput ! in OH_VideoOutput_Start()
83 OH_VideoOutput_Stop(Camera_VideoOutput* videoOutput) OH_VideoOutput_Stop() argument
95 OH_VideoOutput_Release(Camera_VideoOutput* videoOutput) OH_VideoOutput_Release() argument
111 OH_VideoOutput_GetActiveProfile(Camera_VideoOutput* videoOutput, Camera_VideoProfile** profile) OH_VideoOutput_GetActiveProfile() argument
141 OH_VideoOutput_GetSupportedFrameRates(Camera_VideoOutput* videoOutput, Camera_FrameRateRange** frameRateRange, uint32_t* size) OH_VideoOutput_GetSupportedFrameRates() argument
158 OH_VideoOutput_DeleteFrameRates(Camera_VideoOutput* videoOutput, Camera_FrameRateRange* frameRateRange) OH_VideoOutput_DeleteFrameRates() argument
173 OH_VideoOutput_SetFrameRate(Camera_VideoOutput* videoOutput, int32_t minFps, int32_t maxFps) OH_VideoOutput_SetFrameRate() argument
185 OH_VideoOutput_GetActiveFrameRate(Camera_VideoOutput* videoOutput, Camera_FrameRateRange* frameRateRange) OH_VideoOutput_GetActiveFrameRate() argument
200 OH_VideoOutput_GetVideoRotation(Camera_VideoOutput* videoOutput, int deviceDegree, Camera_ImageRotation* imageRotation) OH_VideoOutput_GetVideoRotation() argument
[all...]
H A Dcamera_manager.cpp273 const char* surfaceId, Camera_VideoOutput** videoOutput) in OH_CameraManager_CreateVideoOutput()
281 CHECK_AND_RETURN_RET_LOG(videoOutput != nullptr, CAMERA_INVALID_ARGUMENT, in OH_CameraManager_CreateVideoOutput()
282 "Invaild argument, videoOutput is null!"); in OH_CameraManager_CreateVideoOutput()
284 return cameraManager->CreateVideoOutput(profile, surfaceId, videoOutput); in OH_CameraManager_CreateVideoOutput()
288 const char* surfaceId, Camera_VideoOutput** videoOutput) in OH_CameraManager_CreateVideoOutputUsedInPreconfig()
295 CHECK_AND_RETURN_RET_LOG(videoOutput != nullptr, CAMERA_INVALID_ARGUMENT, in OH_CameraManager_CreateVideoOutputUsedInPreconfig()
296 "Invaild argument, videoOutput is null!"); in OH_CameraManager_CreateVideoOutputUsedInPreconfig()
298 return cameraManager->CreateVideoOutputUsedInPreconfig(surfaceId, videoOutput); in OH_CameraManager_CreateVideoOutputUsedInPreconfig()
272 OH_CameraManager_CreateVideoOutput(Camera_Manager* cameraManager, const Camera_VideoProfile* profile, const char* surfaceId, Camera_VideoOutput** videoOutput) OH_CameraManager_CreateVideoOutput() argument
287 OH_CameraManager_CreateVideoOutputUsedInPreconfig(Camera_Manager* cameraManager, const char* surfaceId, Camera_VideoOutput** videoOutput) OH_CameraManager_CreateVideoOutputUsedInPreconfig() argument
H A Dcapture_session.cpp301 Camera_ErrorCode OH_CaptureSession_AddVideoOutput(Camera_CaptureSession* session, Camera_VideoOutput* videoOutput) in OH_CaptureSession_AddVideoOutput() argument
304 CHECK_AND_RETURN_RET_LOG(videoOutput != nullptr, CAMERA_INVALID_ARGUMENT, in OH_CaptureSession_AddVideoOutput()
305 "Invaild argument, videoOutput is null!"); in OH_CaptureSession_AddVideoOutput()
307 return session->AddVideoOutput(videoOutput); in OH_CaptureSession_AddVideoOutput()
310 Camera_ErrorCode OH_CaptureSession_RemoveVideoOutput(Camera_CaptureSession* session, Camera_VideoOutput* videoOutput) in OH_CaptureSession_RemoveVideoOutput() argument
313 CHECK_AND_RETURN_RET_LOG(videoOutput != nullptr, CAMERA_INVALID_ARGUMENT, in OH_CaptureSession_RemoveVideoOutput()
314 "Invaild argument, videoOutput is null!"); in OH_CaptureSession_RemoveVideoOutput()
316 return session->RemoveVideoOutput(videoOutput); in OH_CaptureSession_RemoveVideoOutput()
/foundation/multimedia/camera_framework/interfaces/kits/native/include/camera/
H A Dvideo_output.h64 * @param videoOutput the {@link Camera_VideoOutput} which deliver the callback.
67 typedef void (*OH_VideoOutput_OnFrameStart)(Camera_VideoOutput* videoOutput);
72 * @param videoOutput the {@link Camera_VideoOutput} which deliver the callback.
76 typedef void (*OH_VideoOutput_OnFrameEnd)(Camera_VideoOutput* videoOutput, int32_t frameCount);
81 * @param videoOutput the {@link Camera_VideoOutput} which deliver the callback.
87 typedef void (*OH_VideoOutput_OnError)(Camera_VideoOutput* videoOutput, Camera_ErrorCode errorCode);
116 * @param videoOutput the {@link Camera_VideoOutput} instance.
122 Camera_ErrorCode OH_VideoOutput_RegisterCallback(Camera_VideoOutput* videoOutput, VideoOutput_Callbacks* callback);
127 * @param videoOutput the {@link Camera_VideoOutput} instance.
133 Camera_ErrorCode OH_VideoOutput_UnregisterCallback(Camera_VideoOutput* videoOutput, VideoOutput_Callback
[all...]
H A Dcamera_manager.h373 * @param videoOutput the {@link Camera_VideoOutput} will be created if the method call succeeds.
380 const char* surfaceId, Camera_VideoOutput** videoOutput);
387 * @param videoOutput the {@link Camera_VideoOutput} will be created if the method call succeeds.
394 const char* surfaceId, Camera_VideoOutput** videoOutput);
H A Dcapture_session.h304 * @param videoOutput the target {@link Camera_VideoOutput} to add.
310 Camera_ErrorCode OH_CaptureSession_AddVideoOutput(Camera_CaptureSession* session, Camera_VideoOutput* videoOutput);
316 * @param videoOutput the target {@link Camera_VideoOutput} to remove.
322 Camera_ErrorCode OH_CaptureSession_RemoveVideoOutput(Camera_CaptureSession* session, Camera_VideoOutput* videoOutput);
/foundation/multimedia/camera_framework/frameworks/native/camera/test/unittest/src/v1_1/
H A Dcamera_ndk_unittest.cpp145 Camera_VideoOutput* videoOutput = nullptr; in CreateVideoOutput() local
146 ret = OH_CameraManager_CreateVideoOutput(cameraManager, &videoProfile, surfaceId, &videoOutput); in CreateVideoOutput()
148 EXPECT_NE(videoOutput, nullptr); in CreateVideoOutput()
149 return videoOutput; in CreateVideoOutput()
357 static void CameraVideoOutptOnFrameStartCb(Camera_VideoOutput* videoOutput) in CameraVideoOutptOnFrameStartCb() argument
362 static void CameraVideoOutptOnFrameEndCb(Camera_VideoOutput* videoOutput, int32_t frameCount) in CameraVideoOutptOnFrameEndCb() argument
367 static void CameraVideoOutptOnErrorCb(Camera_VideoOutput* videoOutput, Camera_ErrorCode errorCode) in CameraVideoOutptOnErrorCb() argument
582 Camera_VideoOutput* videoOutput = CreateVideoOutput(); in HWTEST_F() local
583 EXPECT_NE(videoOutput, nullptr); in HWTEST_F()
584 ret = OH_CaptureSession_AddVideoOutput(captureSession, videoOutput); in HWTEST_F()
632 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
693 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
763 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
825 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
1223 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
1792 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
1850 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
1914 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
1990 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
2154 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
2754 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
3018 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
3103 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
3535 Camera_VideoOutput *videoOutput = nullptr; HWTEST_F() local
3890 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
5074 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
5137 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
5192 Camera_VideoOutput* videoOutput = CreateVideoOutput(); HWTEST_F() local
[all...]
/foundation/multimedia/camera_framework/interfaces/inner_api/native/test/
H A Dcamera_video.cpp396 sptr<CaptureOutput> videoOutput = camManagerObj->CreateVideoOutput(videoprofile, videoSurface); in main() local
397 if (videoOutput == nullptr) { in main()
403 ((sptr<VideoOutput> &)videoOutput)->SetCallback(std::make_shared<TestVideoOutputCallback>(testName)); in main()
404 ret = captureSession->AddOutput(videoOutput); in main()
427 ret = ((sptr<VideoOutput> &)videoOutput)->Start(); in main()
445 ret = ((sptr<VideoOutput> &)videoOutput)->Pause(); in main()
460 ret = ((sptr<VideoOutput> &)videoOutput)->Resume(); in main()
476 ret = ((sptr<VideoOutput> &)videoOutput)->Stop(); in main()
/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/include/
H A Dcamera_framework_moduletest.h106 void ConfigSlowMotionSession(sptr<CaptureOutput> &previewOutput, sptr<CaptureOutput> &videoOutput);
109 void ConfigVideoSession(sptr<CaptureOutput> &previewOutput, sptr<CaptureOutput> &videoOutput);
114 sptr<CaptureOutput> videoOutput);
/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/src/
H A Dcamera_framework_moduletest.cpp575 sptr<CaptureOutput> videoOutput = nullptr; in CreateVideoOutput() local
576 videoOutput = manager_->CreateVideoOutput(videoProfile, videoSurface); in CreateVideoOutput()
577 return videoOutput; in CreateVideoOutput()
592 sptr<CaptureOutput> videoOutput = nullptr; in CreateVideoOutput() local
593 videoOutput = manager_->CreateVideoOutput(videoProfile, videoSurface); in CreateVideoOutput()
594 return videoOutput; in CreateVideoOutput()
599 sptr<CaptureOutput> videoOutput = CreateVideoOutput(videoWidth_, videoHeight_); in CreateVideoOutput() local
600 return videoOutput; in CreateVideoOutput()
995 void CameraFrameworkModuleTest::TestCallbacksSession(sptr<CaptureOutput> photoOutput, sptr<CaptureOutput> videoOutput) in TestCallbacksSession() argument
999 if (videoOutput ! in TestCallbacksSession()
1034 sptr<CaptureOutput> videoOutput = nullptr; TestCallbacks() local
1414 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
1598 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
1711 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
2166 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
2233 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
2280 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
2397 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
2647 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
2713 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
2794 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
3297 sptr<CaptureOutput> videoOutput = CreateVideoOutput(profiles.video); HWTEST_F() local
3372 sptr<CaptureOutput> videoOutput = CreateVideoOutput(profiles.video); HWTEST_F() local
3465 sptr<CaptureOutput> videoOutput = CreateVideoOutput(profiles.video); HWTEST_F() local
3558 sptr<CaptureOutput> videoOutput = CreateVideoOutput(profiles.video); HWTEST_F() local
3648 sptr<CaptureOutput> videoOutput = CreateVideoOutput(profiles.video); HWTEST_F() local
3763 sptr<CaptureOutput> videoOutput = CreateVideoOutput(profiles.video); HWTEST_F() local
3856 sptr<CaptureOutput> videoOutput = CreateVideoOutput(profiles.video); HWTEST_F() local
3943 sptr<CaptureOutput> videoOutput = CreateVideoOutput(profiles.video); HWTEST_F() local
4041 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
4508 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
5698 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
5799 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
6665 sptr<CaptureOutput> videoOutput = manager_->CreateVideoOutput(videoProfiles[0], pSurface_2); HWTEST_F() local
7032 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
7287 sptr<CaptureOutput> videoOutput = camManagerObj->CreateVideoOutput(videoProfiles[0], pSurface); HWTEST_F() local
7558 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
9163 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
10611 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); HWTEST_F() local
10820 sptr<CaptureOutput> videoOutput; HWTEST_F() local
11319 sptr<CaptureOutput> videoOutput = CreateVideoOutput(videoProfiles[0]); HWTEST_F() local
11455 sptr<VideoOutput> videoOutput = nullptr; HWTEST_F() local
11906 sptr<CaptureOutput> videoOutput; HWTEST_F() local
12458 sptr<CaptureOutput> videoOutput; HWTEST_F() local
12485 sptr<CaptureOutput> videoOutput; HWTEST_F() local
12617 sptr<CaptureOutput> videoOutput; HWTEST_F() local
12668 auto videoOutput = CreateVideoOutput(); HWTEST_F() local
[all...]
/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/
H A Dcamera_manager_impl.h77 Camera_VideoOutput** videoOutput);
79 Camera_ErrorCode CreateVideoOutputUsedInPreconfig(const char* surfaceId, Camera_VideoOutput** videoOutput);
H A Dcapture_session_impl.h62 Camera_ErrorCode AddVideoOutput(Camera_VideoOutput* videoOutput);
64 Camera_ErrorCode RemoveVideoOutput(Camera_VideoOutput* videoOutput);
H A Dvideo_output_impl.cpp33 InnerVideoOutputCallback(Camera_VideoOutput* videoOutput, VideoOutput_Callbacks* callback) in InnerVideoOutputCallback() argument
34 : videoOutput_(videoOutput), callback_(*callback) {} in InnerVideoOutputCallback()
H A Dcapture_session_impl.cpp574 Camera_ErrorCode Camera_CaptureSession::AddVideoOutput(Camera_VideoOutput* videoOutput) in AddVideoOutput() argument
576 sptr<CaptureOutput> innerVideoOutput = videoOutput->GetInnerVideoOutput(); in AddVideoOutput()
581 Camera_ErrorCode Camera_CaptureSession::RemoveVideoOutput(Camera_VideoOutput* videoOutput) in RemoveVideoOutput() argument
583 sptr<CaptureOutput> innerVideoOutput = videoOutput->GetInnerVideoOutput(); in RemoveVideoOutput()
627 Camera_ErrorCode Camera_CaptureSession::CanAddVideoOutput(Camera_VideoOutput* videoOutput, bool* isSuccessful) in CanAddVideoOutput() argument
629 sptr<CaptureOutput> innerVideoOutput = videoOutput->GetInnerVideoOutput(); in CanAddVideoOutput()
H A Dcamera_manager_impl.cpp705 const char* surfaceId, Camera_VideoOutput** videoOutput) in CreateVideoOutput()
722 MEDIA_ERR_LOG("Failed to get videoOutput surface"); in CreateVideoOutput()
732 *videoOutput = out; in CreateVideoOutput()
737 Camera_VideoOutput** videoOutput) in CreateVideoOutputUsedInPreconfig()
745 "Camera_Manager::CreateVideoOutputUsedInPreconfig get videoOutput surface fail!"); in CreateVideoOutputUsedInPreconfig()
752 *videoOutput = out; in CreateVideoOutputUsedInPreconfig()
704 CreateVideoOutput(const Camera_VideoProfile* profile, const char* surfaceId, Camera_VideoOutput** videoOutput) CreateVideoOutput() argument
736 CreateVideoOutputUsedInPreconfig(const char* surfaceId, Camera_VideoOutput** videoOutput) CreateVideoOutputUsedInPreconfig() argument
/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/output/
H A Dvideo_output.h133 * @param format format of the videoOutput.
140 * @param size size of the videoOutput.
234 explicit VideoOutputCallbackImpl(VideoOutput* videoOutput) : videoOutput_(videoOutput) {} in VideoOutputCallbackImpl() argument
/foundation/multimedia/camera_framework/frameworks/native/camera/src/input/
H A Dcamera_manager.cpp783 sptr<VideoOutput> videoOutput = nullptr; in CreateVideoOutput() local
784 int32_t retCode = CreateVideoOutput(profile, surface, &videoOutput); in CreateVideoOutput()
787 return videoOutput; in CreateVideoOutput()
818 sptr<VideoOutput> videoOutput = new (std::nothrow) VideoOutput(surface->GetProducer()); in CreateVideoOutputWithoutProfile() local
819 CHECK_ERROR_RETURN_RET(videoOutput == nullptr, CameraErrorCode::SERVICE_FATL_ERROR); in CreateVideoOutputWithoutProfile()
820 videoOutput->AddTag(CaptureOutput::DYNAMIC_PROFILE); in CreateVideoOutputWithoutProfile()
821 *pVideoOutput = videoOutput; in CreateVideoOutputWithoutProfile()
843 sptr<VideoOutput> videoOutput = new(std::nothrow) VideoOutput(surface->GetProducer()); in CreateVideoOutput() local
844 CHECK_ERROR_RETURN_RET(videoOutput == nullptr, CameraErrorCode::SERVICE_FATL_ERROR); in CreateVideoOutput()
845 videoOutput in CreateVideoOutput()
[all...]
/foundation/multimedia/camera_framework/services/camera_service/binder/base/include/
H A Dicamera_service.h109 int32_t width, int32_t height, sptr<IStreamRepeat> &videoOutput) = 0;
/foundation/multimedia/camera_framework/services/camera_service/binder/client/include/
H A Dhcamera_service_proxy.h87 int32_t width, int32_t height, sptr<IStreamRepeat> &videoOutput) override;
/foundation/multimedia/camera_framework/services/camera_service/binder/server/src/
H A Dhcamera_service_stub.cpp537 sptr<IStreamRepeat> videoOutput = nullptr; in HandleCreateVideoOutput() local
549 int ret = CreateVideoOutput(producer, format, width, height, videoOutput); in HandleCreateVideoOutput()
552 CHECK_ERROR_RETURN_RET_LOG(!reply.WriteRemoteObject(videoOutput->AsObject()), IPC_STUB_WRITE_PARCEL_ERR, in HandleCreateVideoOutput()
553 "HCameraServiceStub HandleCreateVideoOutput Write videoOutput obj failed"); in HandleCreateVideoOutput()
/foundation/multimedia/camera_framework/frameworks/native/camera/test/ndktest/camera_ndk_demo/entry/src/main/cpp/
H A Dcamera_manager.cpp933 void VideoOutputOnFrameStart(Camera_VideoOutput* videoOutput) in VideoOutputOnFrameStart() argument
938 void VideoOutputOnFrameEnd(Camera_VideoOutput* videoOutput, int32_t frameCount) in VideoOutputOnFrameEnd() argument
943 void VideoOutputOnError(Camera_VideoOutput* videoOutput, Camera_ErrorCode errorCode) in VideoOutputOnError() argument
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/output/
H A Dvideo_output_napi.cpp205 VideoOutputNapi* videoOutput = reinterpret_cast<VideoOutputNapi*>(nativeObject); in VideoOutputNapiDestructor() local
206 if (videoOutput != nullptr) { in VideoOutputNapiDestructor()
207 delete videoOutput; in VideoOutputNapiDestructor()
/foundation/multimedia/camera_framework/services/camera_service/binder/client/src/
H A Dhcamera_service_proxy.cpp491 sptr<IStreamRepeat>& videoOutput) in CreateVideoOutput()
517 "HCameraServiceProxy CreateVideoOutput videoOutput is null"); in CreateVideoOutput()
518 videoOutput = iface_cast<IStreamRepeat>(remoteObject); in CreateVideoOutput()
489 CreateVideoOutput(const sptr<OHOS::IBufferProducer> &producer, int32_t format, int32_t width, int32_t height, sptr<IStreamRepeat>& videoOutput) CreateVideoOutput() argument
/foundation/multimedia/camera_framework/services/camera_service/include/
H A Dhcamera_service.h117 int32_t height, sptr<IStreamRepeat>& videoOutput) override;
/foundation/multimedia/camera_framework/frameworks/native/camera/src/session/
H A Dcapture_session.cpp806 sptr<VideoOutput> videoOutput = static_cast<VideoOutput*>(output.GetRefPtr()); in ConfigureVideoOutput() local
807 if (videoOutput && (frameRateRange.size() >= minFpsRangeSize)) { in ConfigureVideoOutput()
808 videoOutput->SetFrameRateRange(frameRateRange[0], frameRateRange[1]); in ConfigureVideoOutput()
3459 sptr<VideoOutput> videoOutput = (sptr<VideoOutput>&)item; in CanSetFrameRateRangeForOutput() local
3460 currentFrameRange = videoOutput->GetFrameRateRange(); in CanSetFrameRateRangeForOutput()
5746 sptr<VideoOutput> videoOutput = nullptr; in StartVideoOutput() local
5752 videoOutput = (sptr<VideoOutput>&)item; in StartVideoOutput()
5757 CHECK_EXECUTE(videoOutput, videoOutput->Start()); in StartVideoOutput()
5762 sptr<VideoOutput> videoOutput in StopVideoOutput() local
[all...]

Completed in 41 milliseconds

12