Skip to content

Commit

Permalink
Update library; tentative fix for Notes hanging in Reaper (in Sfizz 1…
Browse files Browse the repository at this point in the history
….2.3) #132
  • Loading branch information
paulfd committed Oct 25, 2024
1 parent 9ce7fac commit 93da042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library
Submodule library updated 54 files
+20 −11 .github/workflows/build.yml
+3 −0 .gitmodules
+25 −2 CHANGELOG.md
+1 −0 CMakeLists.txt
+2 −1 clients/sfizz_render.cpp
+1 −1 cmake/SfizzConfig.cmake
+5 −0 cmake/SfizzDeps.cmake
+9 −1 common.mk
+1 −1 external/abseil-cpp
+106 −84 external/atomic_queue/include/atomic_queue/atomic_queue.h
+33 −4 external/atomic_queue/include/atomic_queue/defs.h
+126 −76 external/cxxopts/cxxopts.hpp
+1 −0 external/invoke.hpp
+1 −1 external/st_audiofile/thirdparty/dr_libs
+12 −0 external/threadpool/ThreadPool.h
+2 −2 scripts/sfizz.pc.in
+1 −1 src/CMakeLists.txt
+1 −1 src/external/cpuid/src/cpuid/version.cpp
+1 −1 src/external/cpuid/src/cpuid/version.hpp
+1 −1 src/external/pugixml/LICENSE.md
+3 −3 src/external/pugixml/src/pugiconfig.hpp
+1,140 −1,061 src/external/pugixml/src/pugixml.cpp
+34 −24 src/external/pugixml/src/pugixml.hpp
+10 −2 src/sfizz/ADSREnvelope.cpp
+1 −0 src/sfizz/Defaults.cpp
+46 −0 src/sfizz/Defaults.h
+80 −40 src/sfizz/FilePool.cpp
+4 −2 src/sfizz/FilePool.h
+10 −3 src/sfizz/Opcode.cpp
+10 −0 src/sfizz/Opcode.h
+14 −17 src/sfizz/Region.cpp
+2 −2 src/sfizz/Region.h
+12 −13 src/sfizz/SfzHelpers.h
+5 −3 src/sfizz/Synth.cpp
+1 −1 src/sfizz/Synth.h
+551 −1,987 src/sfizz/SynthMessaging.cpp
+700 −0 src/sfizz/SynthMessagingHelper.hpp
+1 −1 src/sfizz/Voice.cpp
+3 −3 src/sfizz/import/foreign_instruments/AudioFile.cpp
+2 −1 src/sfizz/import/foreign_instruments/DecentSampler.cpp
+1 −1 src/sfizz/modulations/ModKey.cpp
+12 −2 src/sfizz/modulations/ModKey.h
+25 −5 src/sfizz/modulations/ModKeyHash.cpp
+10 −2 src/sfizz/modulations/ModMatrix.cpp
+4 −0 src/sfizz/modulations/ModMatrix.h
+27 −0 src/sfizz/utility/Size.h
+6 −1 src/sfizz/utility/StringViewHelpers.h
+28 −0 src/sfizz/utility/U8Strings.h
+9 −0 tests/OpcodeT.cpp
+1 −0 tests/ParsingT.cpp
+497 −107 tests/RegionValuesSetT.cpp
+1,523 −3,210 tests/RegionValuesT.cpp
+187 −0 tests/SynthDiscussion.h
+43 −0 tests/SynthT.cpp

0 comments on commit 93da042

Please sign in to comment.