Loading tests/conftest.py +4 −4 Original line number Diff line number Diff line Loading @@ -1287,16 +1287,16 @@ def get_split_idx(input_file: str, sampling_rate_khz: int) -> Optional[np.ndarra IVAS_ENC_FORMATS = { "stereo": "Stereo", "ism": "ISM", "sba": "SBA", "masa": "Masa", "ism_sba": "OSBA", "ism_masa": "OMASA", "ism": "ISM", "mc": "Multichannel", "stereo_dmx_evs": "Stereo DMX EVS", "stereo": "Stereo", } # NOTE: the blanks at start and end are important to prevent e.g. "-ism_masa" matching on "-ism" only # NOTE: the blank at the end is important to prevent e.g. "-ism_masa" matching on "-ism" only PATTERN_IVAS_ENC_FORMAT = re.compile(r"-(" + r"|".join(IVAS_ENC_FORMATS.keys()) + ") ") Loading Loading
tests/conftest.py +4 −4 Original line number Diff line number Diff line Loading @@ -1287,16 +1287,16 @@ def get_split_idx(input_file: str, sampling_rate_khz: int) -> Optional[np.ndarra IVAS_ENC_FORMATS = { "stereo": "Stereo", "ism": "ISM", "sba": "SBA", "masa": "Masa", "ism_sba": "OSBA", "ism_masa": "OMASA", "ism": "ISM", "mc": "Multichannel", "stereo_dmx_evs": "Stereo DMX EVS", "stereo": "Stereo", } # NOTE: the blanks at start and end are important to prevent e.g. "-ism_masa" matching on "-ism" only # NOTE: the blank at the end is important to prevent e.g. "-ism_masa" matching on "-ism" only PATTERN_IVAS_ENC_FORMAT = re.compile(r"-(" + r"|".join(IVAS_ENC_FORMATS.keys()) + ") ") Loading