/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/include/ |
H A D | camera_framework_moduletest.h | 96 sptr<CaptureOutput> CreateVideoOutput(int32_t width, int32_t height); 97 sptr<CaptureOutput> CreateVideoOutput(); 98 sptr<CaptureOutput> CreateVideoOutput(VideoProfile& profile);
|
/ohos5.0/foundation/multimedia/camera_framework/interfaces/kits/js/camera_napi/include/output/ |
H A D | video_output_napi.h | 88 static napi_value CreateVideoOutput(napi_env env, VideoProfile& profile, std::string surfaceId); 89 static napi_value CreateVideoOutput(napi_env env, std::string surfaceId);
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/unittest/include/ |
H A D | camera_ndk_unittest.h | 66 …Camera_VideoOutput* CreateVideoOutput(int32_t width = VIDEO_DEFAULT_WIDTH, int32_t height = VIDEO_…
|
H A D | camera_framework_unittest.h | 90 …sptr<CaptureOutput> CreateVideoOutput(int32_t width = VIDEO_DEFAULT_WIDTH, int32_t height = VIDEO_…
|
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/input/ |
H A D | camera_manager.h | 325 sptr<VideoOutput> CreateVideoOutput(VideoProfile& profile, sptr<Surface>& surface); 334 …int CreateVideoOutput(VideoProfile& profile, sptr<Surface>& surface, sptr<VideoOutput>* pVideoOutp… 351 [[deprecated]] sptr<VideoOutput> CreateVideoOutput(sptr<Surface>& surface); 360 …[[deprecated]] sptr<VideoOutput> CreateVideoOutput(const sptr<OHOS::IBufferProducer>& producer, in…
|
/ohos5.0/foundation/multimedia/camera_framework/ |
H A D | README_zh.md | 293 sptr<CaptureOutput> videoOutput = camManagerObj->CreateVideoOutput(videoSurface); 370 sptr<CaptureOutput> videoOutput = camManagerObj->CreateVideoOutput(videoSurface);
|
H A D | README.md | 294 sptr<CaptureOutput> videoOutput = camManagerObj->CreateVideoOutput(videoSurface); 371 sptr<CaptureOutput> videoOutput = camManagerObj->CreateVideoOutput(videoSurface);
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/ |
H A D | camera_manager_impl.h | 76 Camera_ErrorCode CreateVideoOutput(const Camera_VideoProfile* profile, const char* surfaceId,
|
H A D | camera_manager_impl.cpp | 643 Camera_ErrorCode Camera_Manager::CreateVideoOutput(const Camera_VideoProfile* profile, in CreateVideoOutput() function in Camera_Manager 662 …int32_t retCode = CameraManager::GetInstance()->CreateVideoOutput(innerProfile, surface, &innerVid… in CreateVideoOutput()
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/ndktest/camera_ndk_demo/entry/src/main/cpp/ |
H A D | camera_manager.h | 64 Camera_ErrorCode CreateVideoOutput(char* videoId);
|
H A D | camera_manager.cpp | 437 Camera_ErrorCode NDKCamera::CreateVideoOutput(char* videoId) in CreateVideoOutput() function in OHOS_NDK_CAMERA::NDKCamera 554 (void)CreateVideoOutput(videoId); in StartVideo()
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/src/ |
H A D | camera_framework_moduletest.cpp | 998 videoOutput = CreateVideoOutput(); in TestCallbacks() 1370 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); 1554 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); 1667 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); 2122 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); 2189 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); 2236 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); 2353 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); 2603 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); 2669 sptr<CaptureOutput> videoOutput = CreateVideoOutput(); [all …]
|
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/base/include/ |
H A D | icamera_service.h | 108 virtual int32_t CreateVideoOutput(const sptr<OHOS::IBufferProducer> &producer, int32_t format,
|
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/binder/client/include/ |
H A D | hcamera_service_proxy.h | 86 int32_t CreateVideoOutput(const sptr<OHOS::IBufferProducer> &producer, int32_t format,
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/unittest/src/v1_1/ |
H A D | camera_ndk_unittest.cpp | 582 Camera_VideoOutput* videoOutput = CreateVideoOutput(); 632 Camera_VideoOutput* videoOutput = CreateVideoOutput(); 693 Camera_VideoOutput* videoOutput = CreateVideoOutput(); 763 Camera_VideoOutput* videoOutput = CreateVideoOutput(); 825 Camera_VideoOutput* videoOutput = CreateVideoOutput(); 1223 Camera_VideoOutput* videoOutput = CreateVideoOutput(); 1729 Camera_VideoOutput* videoOutput = CreateVideoOutput(); 1787 Camera_VideoOutput* videoOutput = CreateVideoOutput(); 1851 Camera_VideoOutput* videoOutput = CreateVideoOutput(); 1927 Camera_VideoOutput* videoOutput = CreateVideoOutput(); [all …]
|
H A D | camera_framework_unittest.cpp | 762 return cameraManager->CreateVideoOutput(videoProfile, surface); in CreateVideoOutput() 1199 sptr<VideoOutput> video = cameraManager->CreateVideoOutput(videoProfile, surface); 1223 sptr<VideoOutput> video = cameraManager->CreateVideoOutput(videoProfile, surface); 1363 sptr<CaptureOutput> video = CreateVideoOutput(); 1747 sptr<CaptureOutput> video = CreateVideoOutput(); 1824 sptr<CaptureOutput> video = CreateVideoOutput(); 2825 intResult = cameraService->CreateVideoOutput(Producer, 0, width, height, output); 2829 intResult = cameraService->CreateVideoOutput(Producer, 0, width, height, output); 2833 intResult = cameraService->CreateVideoOutput(Producer, 0, width, height, output); 6125 sptr<VideoOutput> video = cameraManager->CreateVideoOutput(videoProfile, surface); [all …]
|
/ohos5.0/foundation/multimedia/camera_framework/test/fuzztest/timelapsephotosession_fuzzer/ |
H A D | time_lapse_photo_session_fuzzer.cpp | 300 auto vo = manager->CreateVideoOutput(vp, surface); in Test2() 317 output = manager->CreateVideoOutput(vp, surface); in Test2()
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/output/ |
H A D | video_output_napi.cpp | 410 napi_value VideoOutputNapi::CreateVideoOutput(napi_env env, VideoProfile &profile, std::string surf… in CreateVideoOutput() function in OHOS::CameraStandard::VideoOutputNapi 429 … int retCode = CameraManager::GetInstance()->CreateVideoOutput(profile, surface, &sVideoOutput_); in CreateVideoOutput() 450 napi_value VideoOutputNapi::CreateVideoOutput(napi_env env, std::string surfaceId) in CreateVideoOutput() function in OHOS::CameraStandard::VideoOutputNapi
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/ndk/ |
H A D | camera_manager.cpp | 306 return cameraManager->CreateVideoOutput(profile, surfaceId, videoOutput); in OH_CameraManager_CreateVideoOutput()
|
/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/cameraoperator/client/test/sample/ |
H A D | main.cpp | 204 …int rv = g_cameraManager->CreateVideoOutput(videoSettings, pSurface, &((sptr<VideoOutput> &)g_vide… in InitVideoOutput()
|
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/src/input/ |
H A D | camera_manager.cpp | 771 sptr<VideoOutput> CameraManager::CreateVideoOutput(sptr<Surface> &surface) in CreateVideoOutput() function in OHOS::CameraStandard::CameraManager 778 sptr<VideoOutput> CameraManager::CreateVideoOutput(VideoProfile &profile, sptr<Surface> &surface) in CreateVideoOutput() function in OHOS::CameraStandard::CameraManager 782 int32_t retCode = CreateVideoOutput(profile, surface, &videoOutput); in CreateVideoOutput() 801 int32_t retCode = serviceProxy->CreateVideoOutput( in CreateVideoOutputStream() 823 int CameraManager::CreateVideoOutput(VideoProfile &profile, sptr<Surface> &surface, sptr<VideoOutpu… in CreateVideoOutput() function in OHOS::CameraStandard::CameraManager 848 int32_t retCode = serviceProxy->CreateVideoOutput( in CreateVideoOutput()
|
/ohos5.0/foundation/distributedhardware/distributed_camera/test/distributedcameraclienttest/ |
H A D | dcamera_client_demo.cpp | 207 …int rv = g_cameraManager->CreateVideoOutput(videoSettings, pSurface, &((sptr<VideoOutput> &)g_vide… in InitVideoOutput()
|
/ohos5.0/foundation/multimedia/camera_framework/interfaces/inner_api/native/test/ |
H A D | camera_video.cpp | 392 sptr<CaptureOutput> videoOutput = camManagerObj->CreateVideoOutput(videoprofile, videoSurface); in main()
|
H A D | camera_capture_video.cpp | 596 videoOutput_ = cameraManager_->CreateVideoOutput(videoprofile_, pSurface); in InitVideoOutput()
|
/ohos5.0/foundation/multimedia/camera_framework/services/camera_service/include/ |
H A D | hcamera_service.h | 116 …int32_t CreateVideoOutput(const sptr<OHOS::IBufferProducer>& producer, int32_t format, int32_t wid…
|