diff --git a/scripts/ivas_conformance/runConformance.py b/scripts/ivas_conformance/runConformance.py index 87150fa9e79bbab883639f6871655ceae947ad82..01f5a53bb63dd34f7922d616e6716605ae41ab49 100644 --- a/scripts/ivas_conformance/runConformance.py +++ b/scripts/ivas_conformance/runConformance.py @@ -318,6 +318,9 @@ ReferenceMasaMDFiles = { PROGRAM_VERSION = "3.1" +MLD_HEADROOM = 0.1 +MASAMD_HEADROOM = 0.004 + @dataclass class TestDescriptor: @@ -1301,7 +1304,7 @@ class MLDConformance: return False def analyseTag(self, tag: str) -> bool: - corridor_threshold = 0.1 + corridor_threshold = MLD_HEADROOM command_fail_count = 0 be_count = 0 non_be_count = 0 @@ -2053,7 +2056,7 @@ class MLDConformance: mldRefWithTags, mdlCutWithTags, tag, - threshold=0.1, + threshold=MLD_HEADROOM, metricKey="MLD", metricLabel="MLD", ) @@ -2143,7 +2146,7 @@ class MLDConformance: masaMDRefWithTags, masaMDCutWithTags, tag, - threshold=0.0, + threshold=MASAMD_HEADROOM, metricKey="MASA", metricLabel="MASA", )