Commit 745c2dc4 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files
Merge branch 'main' of ssh://forge.3gpp.org:29419/ivas-codec-pc/ivas-codec into float-1593-fix_1585_asan_format_sw_alt-format-switching-memory-changes-cause-msan-asan-errors-in
parents e6fde30d 9d89f5cc
Loading
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -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",
                        )