Commit 8243fc4e authored by Tapani Pihlajakuja's avatar Tapani Pihlajakuja
Browse files

Reduce even more

parent c62f01d1
Loading
Loading
Loading
Loading
Loading
+25 −9
Original line number Diff line number Diff line
@@ -326,15 +326,14 @@ def test_multichannel(
    get_odg_bin,
    split_comparison,
):
    if in_fmt in [ ["MONO", "5_1", "5_1_2", "5_1_4", "7_1"]]:
    if in_fmt not in ["STEREO","7_1_4"]:
        if frame_size != "20ms":
            pytest.skip();
        if fs != "48kHz":
            pytest.skip();
        if out_fmt not in ["STEREO","FOA","7_1_4"]:
        if out_fmt not in ["MONO","STEREO","FOA","7_1_4"]:
            pytest.skip();
    
    if in_fmt == "STEREO" and frame_size != "5ms":
        if frame_size != "5ms":
            pytest.skip()
    
    # Run everything for 7_1_4 input
@@ -863,6 +862,15 @@ def test_omasa(
        if out_fmt not in ["STEREO", "5_1"]:
            pytest.skip()

    if in_fmt in ["ISM3MASA1", "ISM2MASA2", "ISM1MASA1", "ISM4MASA2"]:
        pytest.skip()

    if out_fmt in ["5_1","5_1_4","7_1_4","FOA","HOA2"]:
        if frame_size != "20ms":
            pytest.skip()
        if fs != "16kHz":
            pytest.skip()

    # Test all for ISM4MASA2

    run_renderer(
@@ -908,6 +916,9 @@ def test_omasa_binaural_static(
        if frame_size != "20ms":
            pytest.skip()

    if in_fmt in ["ISM3MASA2", "ISM2MASA1", "ISM1MASA2", "ISM4MASA1"]:
        pytest.skip()

    # Test all for ISM4MASA2

    run_renderer(
@@ -1006,6 +1017,8 @@ def test_osba(
        if out_fmt not in ["HOA3", "5_1"]:
            pytest.skip()

    if out_fmt in ["HOA3", "5_1"]:
        pytest.skip()
    # Test all for ISM4SBA3

    run_renderer(
@@ -1046,8 +1059,11 @@ def test_osba_binaural_static(
    split_comparison,
):
    if in_fmt != "ISM4SBA3":
        pytest.skip()

    if fs != "48kHz":
        pytest.skip()

    if frame_size != "20ms":
        pytest.skip()