Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

COM-12616 #225

Merged
merged 2 commits into from
Dec 24, 2024
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ Find more about how to use Fluster in the next section.
```bash
List of available test suites:

ISO_IEC_13818-4_2004
MPEG2_AAC-ADTS
Codec: AAC
Description: ISO_IEC_13818-4_2004 ADTS conformance test suite
Description:ISO IEC 13818-4 MPEG2 AAC ADTS test suite
Test vectors: 62

ISO_IEC_14496-26_2010
MPEG4_AAC-ADTS
Codec: AAC
Description: ISO_IEC_14496-26_2010 ADTS conformance test suite
Description: ISO IEC 14496-26 MPEG4 AAC ADTS test suite
Test vectors: 9

JCT-VC-HEVC_V1
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ packages = ["fluster", "fluster.decoders"]
"test_suites/aac/MPEG2_AAC-ADTS.json",
"test_suites/aac/MPEG2_AAC-ADIF.json",
"test_suites/aac/MPEG4_AAC-ADIF.json",
"test_suites/aac/ISO_IEC_14496-26_2010.json"
"test_suites/aac/MPEG4_AAC-ADTS.json"
]
"share/fluster/test_suites/av1" = [
"test_suites/av1/AV1-TEST-VECTORS.json",
Expand All @@ -57,8 +57,8 @@ packages = ["fluster", "fluster.decoders"]
"test_suites/h264/JVT-AVC_V1.json",
"test_suites/h264/JVT-FR-EXT.json",
"test_suites/h264/JVT-MVC.json",
"test_suites/h264/JVT-Professional_profiles_V1.json",
"test_suites/h264/JVT-SVC_V1.json"
"test_suites/h264/JVT-Professional_profiles.json",
"test_suites/h264/JVT-SVC.json"
]
"share/fluster/test_suites/h265" = [
"test_suites/h265/JCT-VC-3D-HEVC.json",
Expand Down
6 changes: 3 additions & 3 deletions scripts/gen_jvt.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def generate(self, download: bool, jobs: int) -> None:
test_vector.output_format = OutputFormat[pix_fmt.upper()]
except KeyError as key_err:
exceptions = {
# All below test vectors from JVT-Professional_profiles_V1
# All below test vectors from JVT-Professional_profiles
# need to be analysed with respect to output format,
# for now it remains undetermined
"PPCV444I4_Mitsubishi_A": OutputFormat.NONE,
Expand Down Expand Up @@ -300,7 +300,7 @@ def remove_r1_from_path(path: str) -> str:

generator = JVTGenerator(
"Professional_profiles",
"JVT-Professional_profiles_V1",
"JVT-Professional_profiles",
Codec.H264,
"JVT Professional Profiles test suite",
H264_URL,
Expand All @@ -310,7 +310,7 @@ def remove_r1_from_path(path: str) -> str:

generator = JVTGenerator(
"SVC",
"JVT-SVC_V1",
"JVT-SVC",
Codec.H264,
"JVT Scalable Video Coding test suite",
H264_URL,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ISO_IEC_14496-26_2010",
"name": "MPEG4_AAC-ADTS",
"codec": "AAC",
"description": "ISO_IEC_14496-26_2010 ADTS conformance test suite",
"description": "ISO IEC 14496-26 MPEG4 AAC ADTS test suite",
"test_vectors": [
{
"name": "al18_08",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "JVT-Professional_profiles_V1",
"name": "JVT-Professional_profiles",
"codec": "H.264",
"description": "JVT Professional Profiles test suite",
"test_vectors": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "JVT-SVC_V1",
"name": "JVT-SVC",
"codec": "H.264",
"description": "JVT Scalable Video Coding test suite",
"test_vectors": [
Expand Down