Commit 17bf5aff authored by Tapani Pihlajakuja's avatar Tapani Pihlajakuja
Browse files

Fix ambi test

parent a30bad9b
Loading
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -110,9 +110,9 @@ def test_ambisonics(


@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL)
@pytest.mark.parametrize("in_fmt", "FOA")
@pytest.mark.parametrize("frame_size", "20ms")
@pytest.mark.parametrize("fs", "48kHz")
@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_AMBI)
@pytest.mark.parametrize("frame_size", FRAMING_TO_TEST)
@pytest.mark.parametrize("fs", SAMPLING_RATES)
def test_ambisonics_binaural_static(
    record_property,
    props_to_record,
@@ -128,6 +128,9 @@ def test_ambisonics_binaural_static(
    get_odg_bin,
    split_comparison,
):
    if in_fmt != "FOA" and frame_size != "20ms" and fs != "48kHz":
        pytest.skip()

    run_renderer(
        record_property,
        props_to_record,