-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split test suites for H265 and H266 (#181)
* Split test suites for H265 and H266 * fixup! Resolve comments * fixup! fixup! Resolve comments (second)
- Loading branch information
1 parent
2790984
commit 5aad915
Showing
4 changed files
with
190 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Fluster - testing framework for decoders conformance | ||
# Copyright (C) 2020, Fluendo, S.A. | ||
# Copyright (C) 2020-2024, Fluendo, S.A. | ||
# Author: Pablo Marcos Oltra <[email protected]>, Fluendo, S.A. | ||
# Author: Andoni Morales Alastruey <[email protected]>, Fluendo, S.A. | ||
# Author: Ruben Sanchez Sanchez <[email protected]>, Fluendo, S.A. | ||
# | ||
# This library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public License | ||
|
@@ -35,7 +36,6 @@ | |
# pylint: enable=wrong-import-position | ||
|
||
BASE_URL = "https://www.itu.int/" | ||
H266_URL = BASE_URL + "wftp3/av-arch/jvet-site/bitstream_exchange/VVC/draft_conformance/" | ||
H265_URL = BASE_URL + "wftp3/av-arch/jctvc-site/bitstream_exchange/draft_conformance/" | ||
BITSTREAM_EXTS = ( | ||
".bin", | ||
|
@@ -67,7 +67,7 @@ def handle_starttag(self, tag, attrs): | |
self.links.append(base_url + value) | ||
|
||
|
||
class JVETJCTVCGenerator: | ||
class JCTVCGenerator: | ||
"""Generates a test suite from the conformance bitstreams""" | ||
|
||
def __init__( | ||
|
@@ -105,10 +105,7 @@ def generate(self, download, jobs): | |
hparser.feed(data) | ||
|
||
for url in hparser.links[1:]: | ||
# The first item in the AVCv1 list is a readme file | ||
if "00readme_H" in url: | ||
continue | ||
elif "replaced" in url: | ||
if "replaced" in url: | ||
# This is in HEVC-SHVC, we don't want that. | ||
continue | ||
file_url = os.path.basename(url) | ||
|
@@ -181,8 +178,7 @@ def generate(self, download, jobs): | |
else: | ||
raise e | ||
|
||
if self.codec == Codec.H265: | ||
self._fill_checksum_h265(test_vector, dest_dir) | ||
self._fill_checksum_h265(test_vector, dest_dir) | ||
|
||
test_suite.to_json_file(output_filepath) | ||
print("Generate new test suite: " + test_suite.name + ".json") | ||
|
@@ -214,9 +210,9 @@ def _fill_checksum_h265(self, test_vector, dest_dir): | |
lines = checksum_file.readlines() | ||
# If we have a line like examples 4,5,6 anywhere in the file, prefer | ||
# that. | ||
if self.codec == Codec.H265 and any((match := regex.match(line)) for line in lines): | ||
if any((match := regex.match(line)) for line in lines): | ||
test_vector.result = match.group(1)[:32].lower() | ||
elif self.codec == Codec.H265 and self.name == "RExt" or self.name == "MV-HEVC" or self.name == "SCC": | ||
elif self.name == "RExt" or self.name == "MV-HEVC" or self.name == "SCC": | ||
# If we can't match with the regex, note that these usually come | ||
# with the checksum at the end | ||
test_vector.result = lines[-1].split(" ")[0].split("\n")[0].lower() | ||
|
@@ -250,7 +246,7 @@ def _fill_checksum_h265(self, test_vector, dest_dir): | |
default=2 * multiprocessing.cpu_count(), | ||
) | ||
args = parser.parse_args() | ||
generator = JVETJCTVCGenerator( | ||
generator = JCTVCGenerator( | ||
"HEVC_v1", | ||
"JCT-VC-HEVC_V1", | ||
Codec.H265, | ||
|
@@ -259,7 +255,7 @@ def _fill_checksum_h265(self, test_vector, dest_dir): | |
) | ||
generator.generate(not args.skip_download, args.jobs) | ||
|
||
generator = JVETJCTVCGenerator( | ||
generator = JCTVCGenerator( | ||
"RExt", | ||
"JCT-VC-RExt", | ||
Codec.H265, | ||
|
@@ -269,7 +265,7 @@ def _fill_checksum_h265(self, test_vector, dest_dir): | |
) | ||
generator.generate(not args.skip_download, args.jobs) | ||
|
||
generator = JVETJCTVCGenerator( | ||
generator = JCTVCGenerator( | ||
"SCC", | ||
"JCT-VC-SCC", | ||
Codec.H265, | ||
|
@@ -279,7 +275,7 @@ def _fill_checksum_h265(self, test_vector, dest_dir): | |
) | ||
generator.generate(not args.skip_download, args.jobs) | ||
|
||
generator = JVETJCTVCGenerator( | ||
generator = JCTVCGenerator( | ||
"MV-HEVC", | ||
"JCT-VC-MV-HEVC", | ||
Codec.H265, | ||
|
@@ -288,12 +284,3 @@ def _fill_checksum_h265(self, test_vector, dest_dir): | |
True | ||
) | ||
generator.generate(not args.skip_download, args.jobs) | ||
|
||
generator = JVETJCTVCGenerator( | ||
'draft6', | ||
'JVET-VVC_draft6', | ||
Codec.H266, | ||
'JVET VVC draft6', | ||
H266_URL | ||
) | ||
generator.generate(not args.skip_download, args.jobs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Fluster - testing framework for decoders conformance | ||
# Copyright (C) 2024, Fluendo, S.A. | ||
# Author: Ruben Sanchez Sanchez <[email protected]>, Fluendo, S.A. | ||
# | ||
# This library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public License | ||
# as published by the Free Software Foundation, either version 3 | ||
# of the License, or (at your option) any later version. | ||
# | ||
# This library is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public | ||
# License along with this library. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
import argparse | ||
from html.parser import HTMLParser | ||
import os | ||
import sys | ||
import urllib.request | ||
import multiprocessing | ||
|
||
# pylint: disable=wrong-import-position | ||
sys.path.append(os.path.join(os.path.dirname(__file__), "..")) | ||
from fluster import utils | ||
from fluster.codec import Codec, OutputFormat | ||
from fluster.test_suite import TestSuite, TestVector | ||
|
||
# pylint: enable=wrong-import-position | ||
|
||
BASE_URL = "https://www.itu.int/" | ||
H266_URL = BASE_URL + "wftp3/av-arch/jvet-site/bitstream_exchange/VVC/draft_conformance/" | ||
BITSTREAM_EXTS = ( | ||
".bit", | ||
) | ||
MD5_EXTS = ("yuv_2.md5", "yuv.md5", ".md5", "md5.txt", "md5sum.txt") | ||
MD5_EXCLUDES = (".bin.md5", "bit.md5") | ||
RAW_EXTS = ("nogray.yuv", ".yuv", ".qcif") | ||
|
||
|
||
class HREFParser(HTMLParser): | ||
"""Custom parser to find href links""" | ||
|
||
def __init__(self): | ||
self.links = [] | ||
super().__init__() | ||
|
||
def error(self, message): | ||
print(message) | ||
|
||
def handle_starttag(self, tag, attrs): | ||
# Only parse the 'anchor' tag. | ||
if tag == "a": | ||
# Check the list of defined attributes. | ||
for name, value in attrs: | ||
# If href is defined, print it. | ||
if name == "href": | ||
base_url = BASE_URL if BASE_URL[-1] != "/" else BASE_URL[0:-1] | ||
self.links.append(base_url + value) | ||
|
||
|
||
class JVETGenerator: | ||
"""Generates a test suite from the conformance bitstreams""" | ||
|
||
def __init__( | ||
self, | ||
name: str, | ||
suite_name: str, | ||
codec: Codec, | ||
description: str, | ||
site: str, | ||
use_ffprobe: bool = False | ||
): | ||
self.name = name | ||
self.suite_name = suite_name | ||
self.codec = codec | ||
self.description = description | ||
self.site = site | ||
self.use_ffprobe = use_ffprobe | ||
|
||
def generate(self, download, jobs): | ||
"""Generates the test suite and saves it to a file""" | ||
output_filepath = os.path.join(self.suite_name + ".json") | ||
test_suite = TestSuite( | ||
output_filepath, | ||
"resources", | ||
self.suite_name, | ||
self.codec, | ||
self.description, | ||
dict(), | ||
) | ||
|
||
hparser = HREFParser() | ||
print(f"Download list of bitstreams from {self.site + self.name}") | ||
with urllib.request.urlopen(self.site + self.name) as resp: | ||
data = str(resp.read()) | ||
hparser.feed(data) | ||
|
||
for url in hparser.links[1:]: | ||
file_url = os.path.basename(url) | ||
name = os.path.splitext(file_url)[0] | ||
file_input = f"{name}.bin" | ||
test_vector = TestVector(name, url, "__skip__", file_input, OutputFormat.YUV420P, "") | ||
test_suite.test_vectors[name] = test_vector | ||
|
||
if download: | ||
test_suite.download( | ||
jobs=jobs, | ||
out_dir=test_suite.resources_dir, | ||
verify=False, | ||
extract_all=True, | ||
keep_file=True, | ||
) | ||
|
||
for test_vector in test_suite.test_vectors.values(): | ||
dest_dir = os.path.join( | ||
test_suite.resources_dir, test_suite.name, test_vector.name | ||
) | ||
dest_path = os.path.join(dest_dir, os.path.basename(test_vector.source)) | ||
test_vector.input_file = utils.find_by_ext(dest_dir, BITSTREAM_EXTS) | ||
absolute_input_path = test_vector.input_file | ||
test_vector.input_file = test_vector.input_file.replace( | ||
os.path.join( | ||
test_suite.resources_dir, test_suite.name, test_vector.name | ||
) | ||
+ os.sep, | ||
"", | ||
) | ||
if not test_vector.input_file: | ||
raise Exception(f"Bitstream file not found in {dest_dir}") | ||
test_vector.source_checksum = utils.file_checksum(dest_path) | ||
if self.use_ffprobe: | ||
ffprobe = utils.normalize_binary_cmd('ffprobe') | ||
command = [ffprobe, '-v', 'error', '-select_streams', 'v:0', | ||
'-show_entries', 'stream=pix_fmt', '-of', | ||
'default=nokey=1:noprint_wrappers=1', | ||
absolute_input_path] | ||
|
||
result = utils.run_command_with_output(command).splitlines() | ||
pix_fmt = result[0] | ||
try: | ||
test_vector.output_format = OutputFormat[pix_fmt.upper()] | ||
except KeyError as e: | ||
raise e | ||
|
||
test_suite.to_json_file(output_filepath) | ||
print("Generate new test suite: " + test_suite.name + ".json") | ||
|
||
|
||
if __name__ == "__main__": | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument( | ||
"--skip-download", | ||
help="skip extracting tarball", | ||
action="store_true", | ||
default=False, | ||
) | ||
parser.add_argument( | ||
"-j", | ||
"--jobs", | ||
help="number of parallel jobs to use. 2x logical cores by default", | ||
type=int, | ||
default=2 * multiprocessing.cpu_count(), | ||
) | ||
args = parser.parse_args() | ||
generator = JVETGenerator( | ||
'draft6', | ||
'JVET-VVC_draft6', | ||
Codec.H266, | ||
'JVET VVC draft6', | ||
H266_URL | ||
) | ||
generator.generate(not args.skip_download, args.jobs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Fluster - testing framework for decoders conformance | ||
# Copyright (C) 2020, Fluendo, S.A. | ||
# Copyright (C) 2020-2024, Fluendo, S.A. | ||
# Author: Ruben Sanchez Sanchez <[email protected]>, Fluendo, S.A. | ||
# | ||
# This library is free software; you can redistribute it and/or | ||
|
@@ -37,7 +37,6 @@ | |
BASE_URL = "https://www.itu.int/" | ||
H264_URL = BASE_URL + "wftp3/av-arch/jvt-site/draft_conformance/" | ||
BITSTREAM_EXTS = ( | ||
".bit", | ||
".264", | ||
".h264", | ||
".jsv", | ||
|