Loading .gitlab-ci.yml +8 −3 Original line number Diff line number Diff line Loading @@ -24,10 +24,10 @@ stages: # print some info on the runner setup .print-common-info: &print-common-info - echo "--------------------------------------------\n" - echo "--------------------------------------------" - python3 --version - pip3 freeze | grep "numpy\|scipy\|YAML\|pytest\|black\|isort\|flake8" - echo "--------------------------------------------\n\n" - echo "--------------------------------------------" # script anchor for updating the codec repo Loading @@ -36,7 +36,12 @@ stages: # NOTE: CODEC_DIR has to be in PATH - cd $CODEC_DIR # make sure that we are at latest main - git pull # TODO: temporarily use the RC1a tag - git restore . - git checkout 20230511-RC1a-listening-tests - echo "--------------------------------------------" - echo "Building codec on commit $(git rev-parse HEAD --short)" - echo "--------------------------------------------" # only builds if code has actually changed - make -j - cd $dir Loading ivas_processing_scripts/audiotools/audio.py +2 −1 Original line number Diff line number Diff line Loading @@ -308,7 +308,8 @@ class ObjectBasedAudio(Audio): if pos.shape[1] < 5: raise ValueError("Metadata incomplete. Columns are missing.") elif pos.shape[1] > 5: if pos.shape[1] == 7: if pos.shape[1] <= 8: # TODO: FIXME pos = pos[:, :5] else: raise ValueError( Loading Loading
.gitlab-ci.yml +8 −3 Original line number Diff line number Diff line Loading @@ -24,10 +24,10 @@ stages: # print some info on the runner setup .print-common-info: &print-common-info - echo "--------------------------------------------\n" - echo "--------------------------------------------" - python3 --version - pip3 freeze | grep "numpy\|scipy\|YAML\|pytest\|black\|isort\|flake8" - echo "--------------------------------------------\n\n" - echo "--------------------------------------------" # script anchor for updating the codec repo Loading @@ -36,7 +36,12 @@ stages: # NOTE: CODEC_DIR has to be in PATH - cd $CODEC_DIR # make sure that we are at latest main - git pull # TODO: temporarily use the RC1a tag - git restore . - git checkout 20230511-RC1a-listening-tests - echo "--------------------------------------------" - echo "Building codec on commit $(git rev-parse HEAD --short)" - echo "--------------------------------------------" # only builds if code has actually changed - make -j - cd $dir Loading
ivas_processing_scripts/audiotools/audio.py +2 −1 Original line number Diff line number Diff line Loading @@ -308,7 +308,8 @@ class ObjectBasedAudio(Audio): if pos.shape[1] < 5: raise ValueError("Metadata incomplete. Columns are missing.") elif pos.shape[1] > 5: if pos.shape[1] == 7: if pos.shape[1] <= 8: # TODO: FIXME pos = pos[:, :5] else: raise ValueError( Loading