Commit 74aca835 authored by Jan Kiene's avatar Jan Kiene
Browse files

add decoder exhaustive test for ISM

parent dd5bc3f9
Loading
Loading
Loading
Loading
+55 −45
Original line number Diff line number Diff line
@@ -848,6 +848,16 @@ DECODER_CONST_BR_NO_BINAURAL_OBJECTBASED = collapse_into_list_of_pairs(
    )
)

ISM_PARAMS_DEC = collapse_into_list_of_pairs(
    product(
        ISM_PARAMS_ENC,
        OUTPUT_FORMATS_ALL,
        SAMPLING_RATES_ALL,
        BITSTREAM_PROCESSING,
    )
)
ISM_PARAMS_DEC_REDUCED = list()

SBA_PARAMS_DEC = collapse_into_list_of_pairs(
    product(
        SBA_PARAMS,
+6 −1
Original line number Diff line number Diff line
@@ -31,7 +31,12 @@ the United Nations Convention on Contracts on the International Sales of Goods.
import pytest
from . import get_bitstream_and_options, run_check
from .. import get_testv_path, get_valid_fs_max_band_pairs
from ..constants import SBA_PARAMS_DEC, SBA_PARAMS_DEC_REDUCED, SBA_IS_PLANAR, SBA_FOA_PCA_ON
from ..constants import (
    SBA_PARAMS_DEC,
    SBA_PARAMS_DEC_REDUCED,
    SBA_IS_PLANAR,
    SBA_FOA_PCA_ON,
)


def pytest_generate_tests(metafunc):