Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"ExecutionMode": "Sequential",
"TestCases": [
{
"Name" : "H264 Decoder Testcase",
"TestConfigs" : {
"Domain": "Decoder",
"InputPath": "./256_144p_h264.h264",
"NumFrames": -1,
"CodecName": "AVC",
"PixelFormat": "NV12",
"Width": 256,
"Height": 144,
"Outputpath": "",
"_Outputpath_original": "./output_256_144p_h264.yuv",
"InputBufferCount": 16,
"OutputBufferCount": 16,
"MemoryType": "MMAP"
}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
{"Id": "PrefixHeaderMode", "Vtype": "String", "Value": "JOINED"},
],
"DynamicControls": [],
"MemoryType": "MMAP"
"MemoryType": "MMAP"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"ExecutionMode": "Sequential",
"TestCases": [
{
"Name": "HEVC Decoder TestCase",
"TestConfigs": {
"Domain": "Decoder",
"InputPath": "./256_144p_hevc.h265",
"NumFrames": -1,
"CodecName": "HEVC",
"PixelFormat": "NV12",
"Width": 256,
"Height": 144,
"Outputpath": "",
"_Outputpath_original": "./output_256_144p_hevc.yuv",
"InputBufferCount": 16,
"OutputBufferCount": 16,
"UseMinBufferCtrl": false,
"MemoryType": "MMAP"
}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
}
],
"DynamicControls": [],
"MemoryType": "MMAP"
"MemoryType": "MMAP"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"ExecutionMode": "Sequential",
"TestCases": [
{
"Name": "VP9 Decode TestCase",
"TestConfigs": {
"Domain": "Decoder",
"InputPath": "./320_240_10fps.ivf",
"NumFrames": -1,
"CodecName": "VP9",
"PixelFormat": "NV12",
"Width": 320,
"Height": 240,
"Outputpath": "",
"_Outputpath_original": "./320_240_10fps_vp9.yuv",
"InputBufferCount": 16,
"OutputBufferCount": 16,
"UseMinBufferCtrl": false,
"MemoryType": "MMAP"
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"ExecutionMode": "Sequential",
"TestCases": [
{
"Name" : "Encoder Testcase",
"TestConfigs" : {
"Domain": "Encoder",
"InputPath": "./Animation_144p.yuv",
"NumFrames": -1,
"CodecName": "AVC",
"PixelFormat": "NV12",
"Width": 256,
"Height": 144,
"Outputpath": "",
"_Outputpath_original": "./Output_Animation_144p.h264",
"InputBufferCount": 32,
"OutputBufferCount": 32,
"OperatingRate": 10,
"FrameRate": 10,
"StaticControls": [
{"Id": "Profile", "Vtype": "String", "Value": "BASELINE"},
{"Id": "Level", "Vtype": "String", "Value": "5.0"},
{"Id": "FrameRC", "Vtype": "Int", "Value": 1},
{"Id": "BitRate", "Vtype": "Int", "Value": 18000000},
{"Id": "BitRateMode", "Vtype": "String", "Value": "CBR"},
{"Id": "PrefixHeaderMode", "Vtype": "String", "Value": "JOINED"},
],
"DynamicControls": []
}
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"ExecutionMode": "Sequential",
"TestCases": [
{
"Name": "HEVC Encode TestCase",
"TestConfigs": {
"VideoDevice": "/dev/video1",
"Domain": "Encoder",
"InputPath": "./Animation_144p.yuv",
"NumFrames": 60,
"CodecName": "HEVC",
"PixelFormat": "NV12",
"Width": 256,
"Height": 144,
"Outputpath": "",
"_Outputpath_original": "./Output_Animation_144p.265",
"UseMinBufferCtrl": false,
"InputBufferCount": 32,
"OutputBufferCount": 32,
"OperatingRate": 30,
"FrameRate": 30,
"StaticControls": [
{
"Id": "Profile",
"Vtype": "String",
"Value": "MAIN"
},
{
"Id": "Level",
"Vtype": "String",
"Value": "5.0"
},
{
"Id": "FrameRC",
"Vtype": "Int",
"Value": 1
},
{
"Id": "BitRate",
"Vtype": "Int",
"Value": 3662400
},
{
"Id": "BitRateMode",
"Vtype": "String",
"Value": "VBR"
},
{
"Id": "PrefixHeaderMode",
"Vtype": "String",
"Value": "JOINED"
},
{
"Id": "Tier",
"Vtype": "String",
"Value": "HIGH"
},
{
"Id": "GOPSize",
"Vtype": "Int",
"Value": 59
}
],
"DynamicControls": []
}
}
]
}
Loading