From 004be205afadb1b7c92d41ef6cc438ca530d3f00 Mon Sep 17 00:00:00 2001 From: Kacper Sagnowski Date: Wed, 30 Jul 2025 10:27:12 +0200 Subject: [PATCH 1/2] Introduce .gitignore --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..d157595b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +/IVAS_* +/ISAR_* +/ci +/lib*.a +/obj +/pytest.ini +/scripts +/tests -- GitLab From 9f6ff036aa6dcf0478ea3372336449444ca9fb99 Mon Sep 17 00:00:00 2001 From: Kacper Sagnowski Date: Tue, 21 Oct 2025 10:52:52 +0200 Subject: [PATCH 2/2] Copy .gitignore from the ivas-codec repo --- .gitignore | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 83 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index d157595b7..9dcfcdcf8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,86 @@ -/IVAS_* -/ISAR_* +# .gitignore for IVAS public collaboration Git repository + +# Compiler output Unix +IVAS_cod +IVAS_dec +IVAS_rend +ISAR_post_rend +ambi_converter +obj/ +*.a +*.o +*.P + +# default CMake +build*/**/* + +# Compiler output VS2017 +IVAS_cod.exe +IVAS_dec.exe +IVAS_rend.exe +ISAR_post_rend.exe +ambi_converter.exe +*.user +.vs/ +Debug_*/ +Release_*/ +*.obj +*.pdb + +# Standalone TD object renderer +scripts/td_object_renderer/object_renderer_standalone/renderer_standalone +scripts/td_object_renderer/object_renderer_standalone/renderer_standalone.exe + +# General/scripts +.DS_Store +.vscode +.cache +.idea +*.log +*.bak +.\#* +scripts/c-code_instrument/ +scripts/ifdef_instrument.list +scripts/ref/ +scripts/test/ +scripts/out/ +scripts/self_test_summary.txt +scripts/cppp/ +binary/ +tests/**/[c|d]ut +tests/**/ref +tests/*/testv +tests/hrtf_binary_loading/bitstream/* +tests/hrtf_binary_loading/dec_out_*/* +scripts/testv/*_cut*.pcm +scripts/testv/*_cut*.wav +scripts/testv/stvOMASA_*.met +scripts/testv/stvOMASA_*.csv +scripts/testv/stvOMASA_2ISM_1MASA1TC48c.wav +scripts/testv/stvOMASA_3ISM_1MASA1TC48c.wav +scripts/testv/stvO* +# default reference binary name +IVAS_cod_ref* +IVAS_dec_ref* +IVAS_rend_ref* +ISAR_post_rend_ref* + +# Python files that pop up when running scripts +__pycache__/ +*.py[cod] +*$py.class + +# history +.history/ + +#externals +Externals/ + +# coan output files that are created when cleaning out switches +coan_out_* + +# Additional ignored locations for the BASOP repo /ci -/lib*.a -/obj -/pytest.ini /scripts /tests +/pytest.ini -- GitLab