提交 d2aafafb 编写于 作者: Y yygxr

Modify video file name and fix SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO error

Signed-off-by: Nyygxr <wuhao30@huawei.com>
上级 a616cf23
...@@ -68,7 +68,7 @@ let mVideoConfig = { ...@@ -68,7 +68,7 @@ let mVideoConfig = {
audioSourceType: 1, audioSourceType: 1,
videoSourceType: 0, videoSourceType: 0,
profile: mVideoProfileCfg, profile: mVideoProfileCfg,
url: 'file:///data/media/02.mp4', url: 'file:///data/media/CameraSessionBase.mp4',
orientationHint: 0, orientationHint: 0,
location: { latitude: 30, longitude: 130 }, location: { latitude: 30, longitude: 130 },
maxSize: 100, maxSize: 100,
...@@ -178,7 +178,7 @@ export default function cameraSessionTest(surfaceId: any) { ...@@ -178,7 +178,7 @@ export default function cameraSessionTest(surfaceId: any) {
async function getVideoReceiveSurface() { async function getVideoReceiveSurface() {
console.log(TAG + 'Entering getVideoReceiveSurface') console.log(TAG + 'Entering getVideoReceiveSurface')
await getFd('02.mp4'); await getFd('CameraSessionBase.mp4');
mVideoConfig.url = mFdPath; mVideoConfig.url = mFdPath;
media.createVideoRecorder((err, recorder) => { media.createVideoRecorder((err, recorder) => {
console.info(TAG + 'Entering create video receiver') console.info(TAG + 'Entering create video receiver')
...@@ -187,13 +187,13 @@ export default function cameraSessionTest(surfaceId: any) { ...@@ -187,13 +187,13 @@ export default function cameraSessionTest(surfaceId: any) {
console.info(TAG + 'videoRecorder.prepare called.') console.info(TAG + 'videoRecorder.prepare called.')
mVideoRecorder.prepare(mVideoConfig, (err) => { mVideoRecorder.prepare(mVideoConfig, (err) => {
console.info(TAG + 'videoRecorder.prepare success.') console.info(TAG + 'videoRecorder.prepare success.')
})
mVideoRecorder.getInputSurface((err, id) => { mVideoRecorder.getInputSurface((err, id) => {
console.info(TAG + 'getInputSurface called') console.info(TAG + 'getInputSurface called')
mVideoSurface = id mVideoSurface = id
console.info(TAG + 'getInputSurface surfaceId: ' + JSON.stringify(mVideoSurface)) console.info(TAG + 'getInputSurface surfaceId: ' + JSON.stringify(mVideoSurface))
}) })
}) })
})
console.log(TAG + 'Exit getVideoReceiveSurface') console.log(TAG + 'Exit getVideoReceiveSurface')
} }
......
...@@ -70,7 +70,7 @@ let mVideoConfig = { ...@@ -70,7 +70,7 @@ let mVideoConfig = {
audioSourceType: 1, audioSourceType: 1,
videoSourceType: 0, videoSourceType: 0,
profile: mVideoProfileCfg, profile: mVideoProfileCfg,
url: 'file:///data/media/02.mp4', url: 'file:///data/media/CameraSessionExposure.mp4',
orientationHint: 0, orientationHint: 0,
location: { latitude: 30, longitude: 130 }, location: { latitude: 30, longitude: 130 },
maxSize: 100, maxSize: 100,
...@@ -230,7 +230,7 @@ export default function cameraSessionExposureTest(surfaceId: any) { ...@@ -230,7 +230,7 @@ export default function cameraSessionExposureTest(surfaceId: any) {
async function getVideoReceiveSurface() { async function getVideoReceiveSurface() {
console.log(TAG + 'Entering getVideoReceiveSurface') console.log(TAG + 'Entering getVideoReceiveSurface')
await getFd('02.mp4'); await getFd('CameraSessionExposure.mp4');
mVideoConfig.url = mFdPath; mVideoConfig.url = mFdPath;
media.createVideoRecorder((err, recorder) => { media.createVideoRecorder((err, recorder) => {
console.info(TAG + 'Entering create video receiver') console.info(TAG + 'Entering create video receiver')
...@@ -239,13 +239,13 @@ export default function cameraSessionExposureTest(surfaceId: any) { ...@@ -239,13 +239,13 @@ export default function cameraSessionExposureTest(surfaceId: any) {
console.info(TAG + 'videoRecorder.prepare called.') console.info(TAG + 'videoRecorder.prepare called.')
mVideoRecorder.prepare(mVideoConfig, (err) => { mVideoRecorder.prepare(mVideoConfig, (err) => {
console.info(TAG + 'videoRecorder.prepare success.') console.info(TAG + 'videoRecorder.prepare success.')
})
mVideoRecorder.getInputSurface((err, id) => { mVideoRecorder.getInputSurface((err, id) => {
console.info(TAG + 'getInputSurface called') console.info(TAG + 'getInputSurface called')
mVideoSurface = id mVideoSurface = id
console.info(TAG + 'getInputSurface surfaceId: ' + JSON.stringify(mVideoSurface)) console.info(TAG + 'getInputSurface surfaceId: ' + JSON.stringify(mVideoSurface))
}) })
}) })
})
console.log(TAG + 'Exit getVideoReceiveSurface') console.log(TAG + 'Exit getVideoReceiveSurface')
} }
......
...@@ -68,7 +68,7 @@ let mVideoConfig = { ...@@ -68,7 +68,7 @@ let mVideoConfig = {
audioSourceType: 1, audioSourceType: 1,
videoSourceType: 0, videoSourceType: 0,
profile: mVideoProfileCfg, profile: mVideoProfileCfg,
url: 'file:///data/media/02.mp4', url: 'file:///data/media/CameraSessionFlush.mp4',
orientationHint: 0, orientationHint: 0,
location: { latitude: 30, longitude: 130 }, location: { latitude: 30, longitude: 130 },
maxSize: 100, maxSize: 100,
...@@ -181,7 +181,7 @@ export default function cameraSessionFlashTest(surfaceId: any) { ...@@ -181,7 +181,7 @@ export default function cameraSessionFlashTest(surfaceId: any) {
async function getVideoReceiveSurface() { async function getVideoReceiveSurface() {
console.log(TAG + 'Entering getVideoReceiveSurface') console.log(TAG + 'Entering getVideoReceiveSurface')
await getFd('02.mp4'); await getFd('CameraSessionFlush.mp4');
mVideoConfig.url = mFdPath; mVideoConfig.url = mFdPath;
media.createVideoRecorder((err, recorder) => { media.createVideoRecorder((err, recorder) => {
console.info(TAG + 'Entering create video receiver') console.info(TAG + 'Entering create video receiver')
......
...@@ -67,7 +67,7 @@ let mVideoConfig = { ...@@ -67,7 +67,7 @@ let mVideoConfig = {
audioSourceType: 1, audioSourceType: 1,
videoSourceType: 0, videoSourceType: 0,
profile: mVideoProfileCfg, profile: mVideoProfileCfg,
url: 'file:///data/media/02.mp4', url: 'file:///data/media/CameraSessionFocus.mp4',
orientationHint: 0, orientationHint: 0,
location: { latitude: 30, longitude: 130 }, location: { latitude: 30, longitude: 130 },
maxSize: 100, maxSize: 100,
...@@ -227,7 +227,7 @@ export default function cameraSessionFocusTest(surfaceId: any) { ...@@ -227,7 +227,7 @@ export default function cameraSessionFocusTest(surfaceId: any) {
async function getVideoReceiveSurface() { async function getVideoReceiveSurface() {
console.log(TAG + 'Entering getVideoReceiveSurface') console.log(TAG + 'Entering getVideoReceiveSurface')
await getFd('02.mp4'); await getFd('CameraSessionFocus.mp4');
mVideoConfig.url = mFdPath; mVideoConfig.url = mFdPath;
media.createVideoRecorder((err, recorder) => { media.createVideoRecorder((err, recorder) => {
console.info(TAG + 'Entering create video receiver') console.info(TAG + 'Entering create video receiver')
......
...@@ -67,7 +67,7 @@ let mVideoConfig = { ...@@ -67,7 +67,7 @@ let mVideoConfig = {
audioSourceType: 1, audioSourceType: 1,
videoSourceType: 0, videoSourceType: 0,
profile: mVideoProfileCfg, profile: mVideoProfileCfg,
url: 'file:///data/media/02.mp4', url: 'file:///data/media/CameraSessionVideoStabilization.mp4',
orientationHint: 0, orientationHint: 0,
location: { latitude: 30, longitude: 130 }, location: { latitude: 30, longitude: 130 },
maxSize: 100, maxSize: 100,
...@@ -180,7 +180,7 @@ export default function cameraSessionVideoStabilizationTest(surfaceId: any) { ...@@ -180,7 +180,7 @@ export default function cameraSessionVideoStabilizationTest(surfaceId: any) {
async function getVideoReceiveSurface() { async function getVideoReceiveSurface() {
console.log(TAG + 'Entering getVideoReceiveSurface') console.log(TAG + 'Entering getVideoReceiveSurface')
await getFd('02.mp4'); await getFd('CameraSessionVideoStabilization.mp4');
mVideoConfig.url = mFdPath; mVideoConfig.url = mFdPath;
media.createVideoRecorder((err, recorder) => { media.createVideoRecorder((err, recorder) => {
console.info(TAG + 'Entering create video receiver') console.info(TAG + 'Entering create video receiver')
......
...@@ -69,7 +69,7 @@ let mVideoConfig = { ...@@ -69,7 +69,7 @@ let mVideoConfig = {
audioSourceType: 1, audioSourceType: 1,
videoSourceType: 0, videoSourceType: 0,
profile: mVideoProfileCfg, profile: mVideoProfileCfg,
url: 'file:///data/media/02.mp4', url: 'file:///data/media/CameraSessionZoomRatio.mp4',
orientationHint: 0, orientationHint: 0,
location: { latitude: 30, longitude: 130 }, location: { latitude: 30, longitude: 130 },
maxSize: 100, maxSize: 100,
...@@ -182,7 +182,7 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) { ...@@ -182,7 +182,7 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) {
async function getVideoReceiveSurface() { async function getVideoReceiveSurface() {
console.log(TAG + 'Entering getVideoReceiveSurface') console.log(TAG + 'Entering getVideoReceiveSurface')
await getFd('02.mp4'); await getFd('CameraSessionZoomRatio.mp4');
mVideoConfig.url = mFdPath; mVideoConfig.url = mFdPath;
media.createVideoRecorder((err, recorder) => { media.createVideoRecorder((err, recorder) => {
console.info(TAG + 'Entering create video receiver') console.info(TAG + 'Entering create video receiver')
...@@ -987,8 +987,8 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) { ...@@ -987,8 +987,8 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) {
/** /**
* @tc.number : SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 * @tc.number : SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103
* @tc.name : Check capture session zoom ratio with callback(invalid value, max - 1) * @tc.name : Check capture session zoom ratio with callback(invalid value, min - 1)
* @tc.desc : Check capture session zoom ratio with callback(invalid value, max - 1) * @tc.desc : Check capture session zoom ratio with callback(invalid value, min - 1)
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 0 * @tc.level : Level 0
...@@ -1006,7 +1006,7 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) { ...@@ -1006,7 +1006,7 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) {
await startCameraSession(mCameraInputArray[i]); await startCameraSession(mCameraInputArray[i]);
mCameraSession.setZoomRatio((mZoomRatioMaxArray[i] - 1), async (err) => { mCameraSession.setZoomRatio((mZoomRatioMinArray[i] - 1), async (err) => {
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 callback"); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 callback");
if (!err) { if (!err) {
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 PASSED with ZoomRatio is: " + (mZoomRatioMaxArray[i] - 1)); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 PASSED with ZoomRatio is: " + (mZoomRatioMaxArray[i] - 1));
...@@ -1020,7 +1020,7 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) { ...@@ -1020,7 +1020,7 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) {
mCameraSession.getZoomRatio(async (err, data) => { mCameraSession.getZoomRatio(async (err, data) => {
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 callback"); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 callback");
if (!err) { if (!err) {
if (data != (mZoomRatioMaxArray[i] - 1)) { if (data != (mZoomRatioMinArray[i] - 1)) {
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 PASSED with ZoomRatio is: " + data); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 PASSED with ZoomRatio is: " + data);
} else { } else {
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 FAILED with ZoomRatio is: " + data); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0103 FAILED with ZoomRatio is: " + data);
...@@ -1045,8 +1045,8 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) { ...@@ -1045,8 +1045,8 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) {
/** /**
* @tc.number : SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 * @tc.number : SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103
* @tc.name : Check capture session set zoom ratio with promise(invalid value, max - 1) * @tc.name : Check capture session set zoom ratio with promise(invalid value, min - 1)
* @tc.desc : Check capture session set zoom ratio with promise(invalid value, max - 1) * @tc.desc : Check capture session set zoom ratio with promise(invalid value, min - 1)
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 0 * @tc.level : Level 0
...@@ -1064,14 +1064,14 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) { ...@@ -1064,14 +1064,14 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) {
await startCameraSession(mCameraInputArray[i]); await startCameraSession(mCameraInputArray[i]);
await mCameraSession.setZoomRatio((mZoomRatioMaxArray[i] - 1)); await mCameraSession.setZoomRatio((mZoomRatioMinArray[i] - 1));
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 finish"); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 finish");
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 PASSED with ZoomRatio is: " + (mZoomRatioMaxArray[i] - 1)); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 PASSED with ZoomRatio is: " + (mZoomRatioMaxArray[i] - 1));
await sleep(500); await sleep(500);
let zoomRatio = await mCameraSession.getZoomRatio(); let zoomRatio = await mCameraSession.getZoomRatio();
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 finish"); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 finish");
if (zoomRatio != (mZoomRatioMaxArray[i] - 1)) { if (zoomRatio != (mZoomRatioMinArray[i] - 1)) {
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 PASSED with ZoomRatio is: " + zoomRatio); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 PASSED with ZoomRatio is: " + zoomRatio);
} else { } else {
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 FAILED with ZoomRatio is: " + zoomRatio); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0103 FAILED with ZoomRatio is: " + zoomRatio);
...@@ -1091,8 +1091,8 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) { ...@@ -1091,8 +1091,8 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) {
/** /**
* @tc.number : SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0104 * @tc.number : SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_CALLBACK_0104
* @tc.name : Check capture session zoom ratio with callback(invalid value, max - 0.1) * @tc.name : Check capture session zoom ratio with callback(invalid value, min - 0.1)
* @tc.desc : Check capture session zoom ratio with callback(invalid value, max - 0.1) * @tc.desc : Check capture session zoom ratio with callback(invalid value, min - 0.1)
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 0 * @tc.level : Level 0
...@@ -1149,8 +1149,8 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) { ...@@ -1149,8 +1149,8 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) {
/** /**
* @tc.number : SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 * @tc.number : SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104
* @tc.name : Check capture session set zoom ratio with promise(invalid value, max - 0.1) * @tc.name : Check capture session set zoom ratio with promise(invalid value, min - 0.1)
* @tc.desc : Check capture session set zoom ratio with promise(invalid value, max - 0.1) * @tc.desc : Check capture session set zoom ratio with promise(invalid value, min - 0.1)
* @tc.size : MEDIUM * @tc.size : MEDIUM
* @tc.type : Function * @tc.type : Function
* @tc.level : Level 0 * @tc.level : Level 0
...@@ -1168,14 +1168,14 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) { ...@@ -1168,14 +1168,14 @@ export default function cameraSessionZoomRatioTest(surfaceId: any) {
await startCameraSession(mCameraInputArray[i]); await startCameraSession(mCameraInputArray[i]);
await mCameraSession.setZoomRatio((mZoomRatioMaxArray[i] - 0.1)); await mCameraSession.setZoomRatio((mZoomRatioMinArray[i] - 0.1));
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 finish"); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 finish");
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 PASSED with ZoomRatio is: " + (mZoomRatioMaxArray[i] - 0.1)); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 PASSED with ZoomRatio is: " + (mZoomRatioMaxArray[i] - 0.1));
await sleep(500); await sleep(500);
let zoomRatio = await mCameraSession.getZoomRatio(); let zoomRatio = await mCameraSession.getZoomRatio();
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 finish"); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 finish");
if (zoomRatio != (mZoomRatioMaxArray[i] - 0.1)) { if (zoomRatio != (mZoomRatioMinArray[i] - 0.1)) {
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 PASSED with ZoomRatio is: " + zoomRatio); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 PASSED with ZoomRatio is: " + zoomRatio);
} else { } else {
console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 FAILED with ZoomRatio is: " + zoomRatio); console.info(TAG + "Entering SUB_MULTIMEDIA_CAMERA_SESSION_SET_GET_ZOOM_RATIO_PROMISE_0104 FAILED with ZoomRatio is: " + zoomRatio);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册