Commit 1763c37d authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[tests] clean up renderer config files and add expected failures

parent 9279347a
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ from tests.renderer.constants import (
""" Renderer configurations """
RENDERER_CONFIGS_TO_TEST = [str(cfg.stem) for cfg in RENDER_CFG_DIR.glob("*.txt")]

""" IVAS format mapping """
""" IVAS specific constants """
FORMAT_TO_IVAS_COD_FORMAT = {
    "MONO": "",
    "STEREO": "-stereo",
@@ -77,6 +77,13 @@ FORMAT_TO_IVAS_COD_FORMAT = {
    "HOA3": ["-sba", "3"],
}

IVAS_MAX_ISM_BITRATE = {
    "1": "128000",
    "2": "256000",
    "3": "384000",
    "4": "512000",
}

""" Encoder commandline template """
SPLIT_PRE_COD_CMD = [
    str(TESTS_DIR.parent.parent.joinpath("IVAS_cod")),
+5 −0
Original line number Diff line number Diff line
[SPLITREND]
BITRATE = 256000;
DOF = 0;
HQMODE = 0;
+5 −0
Original line number Diff line number Diff line
[SPLITREND]
BITRATE = 320000;
DOF = 0;
HQMODE = 0;
+5 −0
Original line number Diff line number Diff line
[SPLITREND]
BITRATE = 384000;
DOF = 3;
DOF = 0;
HQMODE = 0;
[GENERAL]
RENDERER = CREND;

[ROOMACOUSTICS]
REVERB = FALSE;
+5 −0
Original line number Diff line number Diff line
[SPLITREND]
BITRATE = 512000;
DOF = 2;
DOF = 0;
HQMODE = 0;
[GENERAL]
RENDERER = FASTCONV;

[ROOMACOUSTICS]
REVERB = FALSE;
Loading