Commit c14ee8d3 authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

Merge branch 'main' of...

Merge branch 'main' of ssh://forge.3gpp.org:29419/ivas-codec-pc/ivas-processing-scripts into merge-isar-selection-main
parents de7bbee9 1bd00fe3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -34,3 +34,4 @@ tests/temp_output_*
tests/cut
tests/ref
tests/concatenation_folder
tests/data/testv
+3 −3
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ check_for_binaries:
# ------------------------------------

# test the format conversion only
test_audiotools_convert:
test-audiotools-convert:
  stage: test
  tags:
    - linux
@@ -80,7 +80,7 @@ test_audiotools_convert:
    - python3 -m pytest -n auto tests/test_audiotools_convert.py

# run the test configs for the selection experiments
.experiments:
test-experiments:
  stage: test
  tags:
    - linux
@@ -97,7 +97,7 @@ test_audiotools_convert:
    expire_in: 1 week

# run some test configs for item creation
test_processing:
test-processing:
  stage: test
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
+1 −1
Original line number Diff line number Diff line
/******************************************************************************************************

   (C) 2022-2024 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
   (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB,
   Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD.,
   Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange,
   Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other
+284 −268

File changed.

Preview size limit exceeded, changes collapsed.

+27 −7
Original line number Diff line number Diff line
# !yamlfmt!:ignore
---
################################################
# General configuration
@@ -14,6 +15,9 @@
### Deletion of temporary directories containing
### intermediate processing files, bitstreams etc.; default = false
# delete_tmp: true
### Deletion of output_path if it exists
### WARNING! Use with caution and only for debugging test setup issues!; default = false
# delete_output: false
### Master seed for random processes like bitstream error pattern generation; default = 0
# master_seed: 5
### Additional seed to specify number of preruns (used for background noise delay and FER bitstream processing); default = 0
@@ -80,6 +84,10 @@ input:
    # fmt: "7_1_4"
    ### Define mask (HP50 or 20KBP) for input signal filtering; default = null
    # mask: "HP50"
    ### Gain factor to be applied BEFORE any other processing (linear, or add dB suffix)
    # gain_pre: 10 dB
    ### Gain factor to be applied AFTER any other processing (linear, or add dB suffix)
    # gain_post: 3.1622776602
    ### Target sampling rate in Hz for resampling; default = null (no resampling)
    # fs: 16000
    ### Target loudness in LKFS; default = null (no loudness change applied)
@@ -106,6 +114,10 @@ input:
    ### the individual items (concatenate_input: false) after previous pre-processing step
    ### Horizontally concatenate input items into one long file; default = false
    # concatenate_input: true
    ### if concatenation is applied, the following two keys can be used to add zeros before or after the items
    ### duration is specified in miliseconds
    # silence_pre: 2000
    # silence_post: 2000
    ### Specify the concatenation order in a list of strings. If not specified, the concatenation order would be
    ### as per the filesystem on the users' device
    ### Should only be used if concatenate_input = true
@@ -179,6 +191,10 @@ conditions_to_generate:
  c01:
      ### REQUIRED: type of condition
      type: ref
      ### applied BEFORE condition processing:
      ### optional per-condition input loudness with bs1770demo (can be used in all conditions)
      # in_loudness: -16
      ### applied AFTER condition processing:
      ### optional low-pass cut-off frequency in Hz; default = null
      # out_fc: 22500
      ### optional use of IVAS_rend for post rendering (can be used in all conditions)
@@ -314,6 +330,10 @@ postprocessing:
    fmt: "BINAURAL"
    ### REQUIRED: Target sampling rate in Hz for resampling
    fs: 48000
    ### Gain factor to be applied BEFORE any other processing (linear, or add dB suffix)
    # gain_pre: 10 dB
    ### Gain factor to be applied AFTER any other processing (linear, or add dB suffix)
    # gain_post: 3.1622776602
    ### Low-pass cut-off frequency in Hz; default = null (no filtering)
    # lp_cutoff: 24000
    ### Target loudness in LKFS; default = null (no loudness change applied)
Loading