Skip to content

Commit

Permalink
Merge branch 'swesterfeld-panda-update'
Browse files Browse the repository at this point in the history
* Branch commit log:
  Update to PandaResampler 0.2.1.
	Fixes #63.

Signed-off-by: Tim Janik <[email protected]>
  • Loading branch information
tim-janik committed Jul 12, 2024
2 parents cf02566 + 048b7f9 commit 9505432
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions ase/Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,13 @@ CLEANFILES += $>/lib/libsndfile.*
ase/sndfile.cc: $>/lib/libsndfile.so # includes $>/sndfile/src/config.h

# == AnklangSynthEngine ==
ASE_EXTERNAL_INCLUDES := $(strip \
-Iexternal/clap/include \
-Iexternal/libsndfile/include \
-Iexternal/liquidsfz/lib \
-Iexternal/pandaresampler/lib \
-Iexternal/rapidjson/include \
-Iexternal/websocketpp \
ASE_EXTERNAL_INCLUDES := $(strip \
-Iexternal/clap/include \
-Iexternal/libsndfile/include \
-Iexternal/liquidsfz/lib \
-Iexternal/pandaresampler/include \
-Iexternal/rapidjson/include \
-Iexternal/websocketpp \
) # also used by clang-tidy
$(ase/AnklangSynthEngine.objects): $(ase/include.deps) $(ase/libase.deps)
$(ase/AnklangSynthEngine.objects): EXTRA_INCLUDES ::= $(ASE_EXTERNAL_INCLUDES) -I$> -I$>/external/ $(ASEDEPS_CFLAGS)
Expand Down
2 changes: 1 addition & 1 deletion external/pandaresampler
Submodule pandaresampler updated 55 files
+207 −0 .github/workflows/ircbot.py
+20 −0 .github/workflows/testing.yml
+2,494 −0 Doxyfile
+0 −2 Makefile.am
+7 −0 NEWS.md
+33 −4 README.md
+1 −0 TODO
+0 −37 autogen.sh
+0 −37 configure.ac
+0 −5 filter-design/Makefile.am
+1 −0 filter-design/meson.build
+4 −4 filter-design/mkiir.cc
+69 −2 include/pandaresampler.hh
+6 −1 include/pandaresampler/hiir/Downsampler2xFpu.h
+8 −3 include/pandaresampler/hiir/Downsampler2xFpuTpl.h
+5 −1 include/pandaresampler/hiir/Downsampler2xFpuTpl.hpp
+8 −3 include/pandaresampler/hiir/Downsampler2xSse.h
+5 −1 include/pandaresampler/hiir/Downsampler2xSse.hpp
+6 −3 include/pandaresampler/hiir/PolyphaseIir2Designer.cpp
+5 −0 include/pandaresampler/hiir/PolyphaseIir2Designer.h
+0 −0 include/pandaresampler/hiir/README
+5 −0 include/pandaresampler/hiir/StageDataFpu.h
+5 −0 include/pandaresampler/hiir/StageDataSse.h
+8 −3 include/pandaresampler/hiir/StageProcFpu.h
+4 −0 include/pandaresampler/hiir/StageProcFpu.hpp
+7 −2 include/pandaresampler/hiir/StageProcSseV2.h
+4 −0 include/pandaresampler/hiir/StageProcSseV2.hpp
+6 −1 include/pandaresampler/hiir/Upsampler2xFpu.h
+8 −3 include/pandaresampler/hiir/Upsampler2xFpuTpl.h
+5 −1 include/pandaresampler/hiir/Upsampler2xFpuTpl.hpp
+8 −3 include/pandaresampler/hiir/Upsampler2xSse.h
+5 −1 include/pandaresampler/hiir/Upsampler2xSse.hpp
+3 −2 include/pandaresampler/hiir/def.h
+6 −1 include/pandaresampler/hiir/fnc.h
+4 −0 include/pandaresampler/hiir/fnc.hpp
+0 −0 include/pandaresampler/hiir/license.txt
+15 −7 include/pandaresampler/pandaresampler.cc
+0 −5 lib/.gitignore
+0 −2 lib/Makefile.am
+45 −0 meson.build
+9 −0 meson_options.txt
+8 −0 misc/Dockerfile
+48 −0 misc/build.sh
+4 −0 misc/debianbuild.sh
+8 −0 misc/dist-script.sh
+7 −0 misc/rebuild-api-docs.sh
+0 −33 tests/Makefile.am
+46 −0 tests/meson.build
+37 −0 tests/testaddr.cc
+5 −0 tests/testdistort.cc
+5 −0 tests/testdownmulti.cc
+73 −15 tests/testmultidelay.cc
+5 −0 tests/testmultiperf.cc
+4 −5 tests/testresampler.cc
+149 −0 tests/testsawquality.cc

0 comments on commit 9505432

Please sign in to comment.