Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
558b2063
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
大约 1 年 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
558b2063
编写于
2月 22, 2022
作者:
R
ruanmeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
多实例用例 Signed-off-by: NOBUGGERS <ruanmeng@huawei.com>
Signed-off-by:
N
ruanmeng
<
ruanmeng@huawei.com
>
上级
00bd9566
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
66 addition
and
6 deletion
+66
-6
multimedia/media/media_js_standard/videoDecoder/BUILD.gn
multimedia/media/media_js_standard/videoDecoder/BUILD.gn
+6
-6
multimedia/media/media_js_standard/videoDecoder/src/main/js/test/VideoDecoderFuncPromiseTest.test.js
...oder/src/main/js/test/VideoDecoderFuncPromiseTest.test.js
+60
-0
未找到文件。
multimedia/media/media_js_standard/videoDecoder/BUILD.gn
浏览文件 @
558b2063
...
@@ -12,20 +12,20 @@
...
@@ -12,20 +12,20 @@
# limitations under the License.
# limitations under the License.
import("//test/xts/tools/build/suite.gni")
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("
media
_decoder_js_hap") {
ohos_js_hap_suite("
video
_decoder_js_hap") {
hap_profile = "./src/main/config.json"
hap_profile = "./src/main/config.json"
js2abc = true
js2abc = true
deps = [
deps = [
":
media
_decoder_js_assets",
":
video
_decoder_js_assets",
":
media
_decoder_resources",
":
video
_decoder_resources",
]
]
certificate_profile = "./signature/openharmony_sx.p7b"
certificate_profile = "./signature/openharmony_sx.p7b"
hap_name = "
Media
DecoderJsTest"
hap_name = "
Video
DecoderJsTest"
}
}
ohos_js_assets("
media
_decoder_js_assets") {
ohos_js_assets("
video
_decoder_js_assets") {
source_dir = "./src/main/js/default"
source_dir = "./src/main/js/default"
}
}
ohos_resources("
media
_decoder_resources") {
ohos_resources("
video
_decoder_resources") {
sources = [ "./src/main/resources" ]
sources = [ "./src/main/resources" ]
hap_profile = "./src/main/config.json"
hap_profile = "./src/main/config.json"
}
}
multimedia/media/media_js_standard/videoDecoder/src/main/js/test/VideoDecoderFuncPromiseTest.test.js
浏览文件 @
558b2063
...
@@ -461,5 +461,65 @@ describe('VideoDecoderFuncPromiseTest', function () {
...
@@ -461,5 +461,65 @@ describe('VideoDecoderFuncPromiseTest', function () {
await
toPrepare
();
await
toPrepare
();
await
toStart
();
await
toStart
();
})
})
/* *
* @tc.number : SUB_MEDIA_VIDEO_DECODER_MULTIINSTANCE_PROMISE_0100
* @tc.name : 001.creat 16 video decoder
* @tc.desc : creat 16 video decoder
* @tc.size : MediumTest
* @tc.type : Function test
* @tc.level : Level0
*/
it
(
'
SUB_MEDIA_VIDEO_DECODER_MULTIINSTANCE_PROMISE_0100
'
,
0
,
async
function
(
done
)
{
ES_FRAME_SIZE
=
H264_FRAME_SIZE_30FPS_1080
;
isCodecData
=
true
;
let
srcPath
=
BASIC_PATH
+
'
out_1920_1080_30fps_3s.h264
'
;
let
mediaDescription
=
{
'
track_type
'
:
1
,
'
codec_mime
'
:
'
video/avc
'
,
'
width
'
:
1920
,
'
height
'
:
1080
,
'
pixel_format
'
:
4
,
'
frame_rate
'
:
30.00
,
'
max_input_size
'
:
150000
,
}
let
array
=
new
Array
();
eventEmitter
.
on
(
'
releaseAllDecoder
'
,
async
()
=>
{
for
(
let
j
=
0
;
j
<
15
;
j
++
)
{
await
array
[
j
].
release
().
then
(()
=>
{
array
[
j
]
=
null
;
},
failCallback
).
catch
(
failCatch
);
}
await
videoDecodeProcessor
.
release
().
then
(()
=>
{
console
.
info
(
'
in case : release success
'
);
},
failCallback
).
catch
(
failCatch
);
videoDecodeProcessor
=
null
;
done
();
})
for
(
let
i
=
0
;
i
<
16
;
i
++
)
{
await
media
.
createVideoDecoderByMime
(
'
video/avc
'
).
then
((
processor
)
=>
{
if
(
typeof
(
processor
)
!=
'
undefined
'
)
{
console
.
info
(
'
in case : createVideoDecoderByMime success
'
);
if
(
i
==
15
)
{
videoDecodeProcessor
=
processor
;
}
else
{
array
[
i
]
=
processor
;
}
}
else
{
console
.
info
(
'
in case : createVideoDecoderByMime fail
'
);
expect
().
assertFail
();
done
();
}
},
failCallback
).
catch
(
failCatch
);
}
await
toConfigure
(
mediaDescription
,
srcPath
);
await
setSurfaceID
(
done
);
await
toSetOutputSurface
(
true
);
setCallback
(
function
(){
eventEmitter
.
emit
(
'
releaseAllDecoder
'
,
done
);}
);
await
toPrepare
();
await
toStart
();
})
})
})
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录