Home
last modified time | relevance | path

Searched refs:canAddVideoOutput (Results 1 – 4 of 4) sorted by relevance

/test/xts/acts/multimedia/camera/camera_ndk_test/entry/src/ohosTest/ets/test/
DSession.test.ets479 …let canAddVideoOutput = cameraObj.oHCaptureSessionCanAddVideoOutput(Parameter_Setting.ALL_PARAMETE…
480 if (canAddVideoOutput.errorCode != 0) {
481 console.error(TAG + "canAddVideoOutput FAILED" + canAddVideoOutput.errorCode);
484 console.info(TAG + "canAddVideoOutput: " + canAddVideoOutput.isAddVideoOutput);
485 if (!canAddVideoOutput.isAddVideoOutput) {
1554 …let canAddVideoOutput = cameraObj.oHCaptureSessionCanAddVideoOutput(Parameter_Setting.ALL_PARAMETE…
1555 console.info(TAG + "canAddVideoOutput: " + canAddVideoOutput.isAddVideoOutput);
1556 expect(canAddVideoOutput.isAddVideoOutput).assertEqual(true);
1557 console.info(TAG+"testOHCaptureSessionCanAddVideoOutput0100:"+canAddVideoOutput.errorCode);
1558 expect(canAddVideoOutput.errorCode).assertEqual(CAMERA_OK);
[all …]
DPhotoTest.test.ets198 …let canAddVideoOutput = cameraObj.oHCaptureSessionCanAddVideoOutput(Parameter_Setting.ALL_PARAMETE…
199 if (canAddVideoOutput.errorCode != 0) {
200 console.error(TAG + "canAddVideoOutput FAILED" + canAddVideoOutput.errorCode);
203 console.info(TAG + "canAddVideoOutput: " + canAddVideoOutput.isAddVideoOutput);
204 if (!canAddVideoOutput.isAddVideoOutput) {
/test/xts/acts/multimedia/camera/camera_ndk_test/entry/src/main/cpp/types/libentry/
Dindex.d.ts82 interface canAddVideoOutput { interface
306 export const oHCaptureSessionCanAddVideoOutput: (index:number) => canAddVideoOutput;
/test/xts/acts/multimedia/camera/camera_ndk_test/entry/src/main/cpp/
Dmain.cpp1240 napi_value canAddVideoOutput = nullptr; in OHCaptureSessionCanAddVideoOutput() local
1241 napi_create_object(env, &canAddVideoOutput); in OHCaptureSessionCanAddVideoOutput()
1246 napi_set_named_property(env, canAddVideoOutput, "isAddVideoOutput", jsValue); in OHCaptureSessionCanAddVideoOutput()
1249 napi_set_named_property(env, canAddVideoOutput, "errorCode", jsValue); in OHCaptureSessionCanAddVideoOutput()
1251 return canAddVideoOutput; in OHCaptureSessionCanAddVideoOutput()