├── .azure ├── Dockerfile.azure-alpine ├── azure-pipelines-alpine.yml ├── azure-pipelines-android.yml ├── azure-pipelines-mac.yml ├── azure-pipelines-vcpkg.yml ├── azure-pipelines-win.yml └── cmake-android.yml ├── .cirrus.yml ├── .clang-format ├── .clang-tidy ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── issue_template.md └── workflows │ ├── api_doc_build.yml │ ├── codeql-analysis.yml │ ├── codespell.yml │ ├── linux.yml │ ├── sonarcloud.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── .obs └── workflows.yml ├── AUTHORS ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ChangeLog.old ├── FluidSynthConfig.cmake.in ├── LICENSE ├── README.cmake.md ├── README.md ├── README.original.md ├── THANKS ├── TODO ├── cmake_admin ├── CheckDIRSymbolExists.cmake ├── CheckPrototypeExists.cmake ├── CheckSTDC.cmake ├── CodeCoverage.cmake ├── DefaultDirs.cmake ├── FindFLAC.cmake ├── FindGLib2.cmake ├── FindInstPatch.cmake ├── FindJack.cmake ├── FindMidiShare.cmake ├── FindOgg.cmake ├── FindOpenSLES.cmake ├── FindOpus.cmake ├── FindPipeWire.cmake ├── FindPortAudio.cmake ├── FindReadline.cmake ├── FindSndFileLegacy.cmake ├── FindSystemd.cmake ├── FindVorbis.cmake ├── Findlibffi.cmake ├── Findmp3lame.cmake ├── Findmpg123.cmake ├── Findoboe.cmake ├── FluidUnitTest.cmake ├── GetSDL2VersionFromHeaders.cmake ├── PkgConfigHelpers.cmake ├── README.md ├── RunOutputTest.cmake ├── SCMRevision.cmake ├── TestInline.cmake ├── TestVLA.cmake ├── VersionResource.rc.in ├── cmake_uninstall.cmake.in └── report.cmake ├── contrib ├── baselibs.conf ├── debian.changelog ├── debian.compat ├── debian.control ├── debian.copyright ├── debian.fluidsynth.install ├── debian.libfluidsynth-dev.install ├── debian.libfluidsynth1.install ├── debian.rules ├── debian.series ├── fluidsynth.dsc └── fluidsynth.spec ├── doc ├── CMakeLists.txt ├── Doxyfile.cmake ├── FluidMixer.ppt ├── FluidProfile_0004.pdf ├── FluidSostenuto-005.pdf ├── FluidSynth Thread safety paper for LAC 2011.odt ├── README ├── android │ ├── .gitignore │ ├── Makefile.android │ ├── README.md │ ├── fluidsynth-assetloader │ │ ├── CMakeLists.txt │ │ ├── ext-build.sh │ │ ├── fluid_androidasset.c │ │ └── fluid_androidasset.h │ ├── jni │ │ ├── Android.mk │ │ └── Application.mk │ └── oboe-1.0.pc ├── doxygen │ ├── custom.css │ ├── fluidsettings.xsl │ ├── footer.html │ └── layout.xml.cmake ├── examples │ ├── CMakeLists.txt │ ├── example.c │ ├── fluidsynth_arpeggio.c │ ├── fluidsynth_enumsettings.cxx │ ├── fluidsynth_fx.c │ ├── fluidsynth_instruments.c │ ├── fluidsynth_metronome.c │ ├── fluidsynth_process.c │ ├── fluidsynth_register_adriver.c │ ├── fluidsynth_sfload_mem.c │ └── fluidsynth_simple.c ├── fluidsettings.xml ├── fluidsettings.xsl ├── fluidsynth-v20-devdoc.txt ├── fluidsynth.1 ├── images │ └── fluid_mixer.svg ├── ladspa.md ├── polymono │ ├── FluidPolyMono-0004.pdf │ ├── leg_00.txt │ ├── leg_01.txt │ ├── leg_por_00.txt │ ├── leg_por_01.txt │ ├── poly_mono_0.txt │ ├── poly_mono_1.txt │ ├── poly_mono_2.txt │ ├── poly_mono_3.txt │ ├── poly_mono_4.txt │ ├── poly_mono_5.txt │ └── readme.txt ├── recent_changes.txt └── usage │ ├── _overview.txt │ ├── advanced.txt │ ├── audio_driver.txt │ ├── creating_settings.txt │ ├── creating_synth.txt │ ├── file_renderer.txt │ ├── loading_soundfonts.txt │ ├── manual_rendering.txt │ ├── midi_player.txt │ ├── midi_player_mem.txt │ ├── midi_router.txt │ ├── multi_channel.txt │ ├── realtime_midi.txt │ ├── sending_midi.txt │ ├── sequencer.txt │ ├── shell.txt │ └── synth_context.txt ├── emscripten ├── exports.txt ├── make-exports.js └── src │ └── post.js ├── fluidsynth.conf.in ├── fluidsynth.pc.in ├── fluidsynth.service.in ├── fluidsynth.tmpfiles.in ├── include ├── fluidsynth.cmake └── fluidsynth │ ├── audio.h │ ├── event.h │ ├── gen.h │ ├── ladspa.h │ ├── log.h │ ├── midi.h │ ├── misc.h │ ├── mod.h │ ├── seq.h │ ├── seqbind.h │ ├── settings.h │ ├── sfont.h │ ├── shell.h │ ├── synth.h │ ├── types.h │ ├── version.h.in │ └── voice.h ├── sf2 ├── COPYRIGHT.txt ├── VintageDreamsWaves-v2.sf2 ├── VintageDreamsWaves-v2.sf2.yml ├── VintageDreamsWaves-v2.sf3 ├── VintageDreamsWaves-v2.sf3.yml ├── VìntàgèDrèàmsWàvès-v2.sf2 └── ■VintageDreamsWaves-v2■.sf2 ├── sonar-project.properties ├── src ├── CMakeLists.txt ├── bindings │ ├── fluid_cmd.c │ ├── fluid_cmd.h │ ├── fluid_filerenderer.c │ ├── fluid_ladspa.c │ ├── fluid_ladspa.h │ ├── fluid_rtkit.c │ └── fluid_rtkit.h ├── config.cmake ├── drivers │ ├── fluid_adriver.c │ ├── fluid_adriver.h │ ├── fluid_alsa.c │ ├── fluid_aufile.c │ ├── fluid_coreaudio.c │ ├── fluid_coremidi.c │ ├── fluid_dart.c │ ├── fluid_dsound.c │ ├── fluid_jack.c │ ├── fluid_kai.c │ ├── fluid_mdriver.c │ ├── fluid_mdriver.h │ ├── fluid_midishare.c │ ├── fluid_oboe.cpp │ ├── fluid_opensles.c │ ├── fluid_oss.c │ ├── fluid_pipewire.c │ ├── fluid_portaudio.c │ ├── fluid_pulse.c │ ├── fluid_sdl2.c │ ├── fluid_sdl3.c │ ├── fluid_sndmgr.c │ ├── fluid_wasapi.c │ ├── fluid_waveout.c │ └── fluid_winmidi.c ├── fluid_wasapi_device_enumerate.c ├── fluidsynth.c ├── gentables │ ├── CMakeLists.txt │ ├── gen_conv.c │ ├── gen_rvoice_dsp.c │ ├── make_tables.c │ └── make_tables.h ├── midi │ ├── fluid_midi.c │ ├── fluid_midi.h │ ├── fluid_midi_router.c │ ├── fluid_midi_router.h │ ├── fluid_seq.c │ ├── fluid_seq_queue.cpp │ ├── fluid_seq_queue.h │ ├── fluid_seqbind.c │ ├── fluid_seqbind_notes.cpp │ └── fluid_seqbind_notes.h ├── rvoice │ ├── fluid_adsr_env.c │ ├── fluid_adsr_env.h │ ├── fluid_chorus.c │ ├── fluid_chorus.h │ ├── fluid_iir_filter.c │ ├── fluid_iir_filter.h │ ├── fluid_iir_filter_impl.cpp │ ├── fluid_lfo.c │ ├── fluid_lfo.h │ ├── fluid_phase.h │ ├── fluid_rev.c │ ├── fluid_rev.h │ ├── fluid_rvoice.c │ ├── fluid_rvoice.h │ ├── fluid_rvoice_dsp.cpp │ ├── fluid_rvoice_dsp_tables.h │ ├── fluid_rvoice_event.c │ ├── fluid_rvoice_event.h │ ├── fluid_rvoice_mixer.c │ └── fluid_rvoice_mixer.h ├── sfloader │ ├── fluid_defsfont.c │ ├── fluid_defsfont.h │ ├── fluid_instpatch.c │ ├── fluid_instpatch.h │ ├── fluid_samplecache.c │ ├── fluid_samplecache.h │ ├── fluid_sffile.c │ ├── fluid_sffile.h │ ├── fluid_sfont.c │ └── fluid_sfont.h ├── synth │ ├── fluid_chan.c │ ├── fluid_chan.h │ ├── fluid_event.c │ ├── fluid_event.h │ ├── fluid_gen.c │ ├── fluid_gen.h │ ├── fluid_mod.c │ ├── fluid_mod.h │ ├── fluid_synth.c │ ├── fluid_synth.h │ ├── fluid_synth_monopoly.c │ ├── fluid_tuning.c │ ├── fluid_tuning.h │ ├── fluid_voice.c │ └── fluid_voice.h └── utils │ ├── fluid_conv.c │ ├── fluid_conv.h │ ├── fluid_conv_tables.h │ ├── fluid_hash.c │ ├── fluid_hash.h │ ├── fluid_list.c │ ├── fluid_list.h │ ├── fluid_ringbuffer.c │ ├── fluid_ringbuffer.h │ ├── fluid_settings.c │ ├── fluid_settings.h │ ├── fluid_stub_functions.h │ ├── fluid_sys.c │ ├── fluid_sys.h │ ├── fluid_sys_embedded.c │ ├── fluid_sys_embedded.h │ ├── fluid_sys_glib.c │ ├── fluid_sys_glib.h │ └── fluidsynth_priv.h ├── test-android ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── fluidsynth │ │ │ └── fluidsynth_tests │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── native-lib.cpp │ │ ├── java │ │ │ └── org │ │ │ │ └── fluidsynth │ │ │ │ └── fluidsynthtests │ │ │ │ ├── MainActivity.kt │ │ │ │ └── TestRunner.kt │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── fluidsynth │ │ └── fluidsynth_tests │ │ └── ExampleUnitTest.kt ├── build-scripts │ ├── .gitignore │ ├── build-all-archs.sh │ ├── build-call-cmake.sh │ ├── build-env.sh │ ├── build.sh │ ├── download.sh │ └── extract.sh ├── build.gradle ├── convert-tests.sh ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── test ├── CMakeLists.txt ├── README.md ├── cmake ├── CMakeLists.txt ├── README.md └── main.c ├── dump_sfont.c ├── test.h ├── test_bug_635.c ├── test_ct2hz.c ├── test_fast_render.c ├── test_jack_obtaining_synth.c ├── test_pointer_alignment.c ├── test_preset_pinning.c ├── test_preset_sample_loading.c ├── test_sample_cache.c ├── test_sample_rate_change.c ├── test_sample_validate.c ├── test_seq_event_queue_remove.c ├── test_seq_event_queue_sort.c ├── test_seq_evt_order.c ├── test_seq_scale.c ├── test_seqbind_unregister.c ├── test_settings_unregister_callback.c ├── test_sf3_sfont_loading.c ├── test_sfont_loading.c ├── test_sfont_unloading.c ├── test_sfont_zone.c ├── test_snprintf.c ├── test_synth_chorus_reverb.c ├── test_synth_process.c ├── test_synth_reset_cc.c ├── test_utf8_open.c ├── èmpty.mid └── ⓉⒺⓈⓉ.mid /.azure/Dockerfile.azure-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.azure/Dockerfile.azure-alpine -------------------------------------------------------------------------------- /.azure/azure-pipelines-alpine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.azure/azure-pipelines-alpine.yml -------------------------------------------------------------------------------- /.azure/azure-pipelines-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.azure/azure-pipelines-android.yml -------------------------------------------------------------------------------- /.azure/azure-pipelines-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.azure/azure-pipelines-mac.yml -------------------------------------------------------------------------------- /.azure/azure-pipelines-vcpkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.azure/azure-pipelines-vcpkg.yml -------------------------------------------------------------------------------- /.azure/azure-pipelines-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.azure/azure-pipelines-win.yml -------------------------------------------------------------------------------- /.azure/cmake-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.azure/cmake-android.yml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/api_doc_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/workflows/api_doc_build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/sonarcloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/workflows/sonarcloud.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.gitmodules -------------------------------------------------------------------------------- /.obs/workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/.obs/workflows.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/ChangeLog.old -------------------------------------------------------------------------------- /FluidSynthConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/FluidSynthConfig.cmake.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/LICENSE -------------------------------------------------------------------------------- /README.cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/README.cmake.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/README.md -------------------------------------------------------------------------------- /README.original.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/README.original.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/TODO -------------------------------------------------------------------------------- /cmake_admin/CheckDIRSymbolExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/CheckDIRSymbolExists.cmake -------------------------------------------------------------------------------- /cmake_admin/CheckPrototypeExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/CheckPrototypeExists.cmake -------------------------------------------------------------------------------- /cmake_admin/CheckSTDC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/CheckSTDC.cmake -------------------------------------------------------------------------------- /cmake_admin/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/CodeCoverage.cmake -------------------------------------------------------------------------------- /cmake_admin/DefaultDirs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/DefaultDirs.cmake -------------------------------------------------------------------------------- /cmake_admin/FindFLAC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindFLAC.cmake -------------------------------------------------------------------------------- /cmake_admin/FindGLib2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindGLib2.cmake -------------------------------------------------------------------------------- /cmake_admin/FindInstPatch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindInstPatch.cmake -------------------------------------------------------------------------------- /cmake_admin/FindJack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindJack.cmake -------------------------------------------------------------------------------- /cmake_admin/FindMidiShare.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindMidiShare.cmake -------------------------------------------------------------------------------- /cmake_admin/FindOgg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindOgg.cmake -------------------------------------------------------------------------------- /cmake_admin/FindOpenSLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindOpenSLES.cmake -------------------------------------------------------------------------------- /cmake_admin/FindOpus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindOpus.cmake -------------------------------------------------------------------------------- /cmake_admin/FindPipeWire.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindPipeWire.cmake -------------------------------------------------------------------------------- /cmake_admin/FindPortAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindPortAudio.cmake -------------------------------------------------------------------------------- /cmake_admin/FindReadline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindReadline.cmake -------------------------------------------------------------------------------- /cmake_admin/FindSndFileLegacy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindSndFileLegacy.cmake -------------------------------------------------------------------------------- /cmake_admin/FindSystemd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindSystemd.cmake -------------------------------------------------------------------------------- /cmake_admin/FindVorbis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FindVorbis.cmake -------------------------------------------------------------------------------- /cmake_admin/Findlibffi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/Findlibffi.cmake -------------------------------------------------------------------------------- /cmake_admin/Findmp3lame.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/Findmp3lame.cmake -------------------------------------------------------------------------------- /cmake_admin/Findmpg123.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/Findmpg123.cmake -------------------------------------------------------------------------------- /cmake_admin/Findoboe.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/Findoboe.cmake -------------------------------------------------------------------------------- /cmake_admin/FluidUnitTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/FluidUnitTest.cmake -------------------------------------------------------------------------------- /cmake_admin/GetSDL2VersionFromHeaders.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/GetSDL2VersionFromHeaders.cmake -------------------------------------------------------------------------------- /cmake_admin/PkgConfigHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/PkgConfigHelpers.cmake -------------------------------------------------------------------------------- /cmake_admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/README.md -------------------------------------------------------------------------------- /cmake_admin/RunOutputTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/RunOutputTest.cmake -------------------------------------------------------------------------------- /cmake_admin/SCMRevision.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/SCMRevision.cmake -------------------------------------------------------------------------------- /cmake_admin/TestInline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/TestInline.cmake -------------------------------------------------------------------------------- /cmake_admin/TestVLA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/TestVLA.cmake -------------------------------------------------------------------------------- /cmake_admin/VersionResource.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/VersionResource.rc.in -------------------------------------------------------------------------------- /cmake_admin/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /cmake_admin/report.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/cmake_admin/report.cmake -------------------------------------------------------------------------------- /contrib/baselibs.conf: -------------------------------------------------------------------------------- 1 | libfluidsynth2 2 | -------------------------------------------------------------------------------- /contrib/debian.changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/contrib/debian.changelog -------------------------------------------------------------------------------- /contrib/debian.compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /contrib/debian.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/contrib/debian.control -------------------------------------------------------------------------------- /contrib/debian.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/contrib/debian.copyright -------------------------------------------------------------------------------- /contrib/debian.fluidsynth.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/contrib/debian.fluidsynth.install -------------------------------------------------------------------------------- /contrib/debian.libfluidsynth-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/contrib/debian.libfluidsynth-dev.install -------------------------------------------------------------------------------- /contrib/debian.libfluidsynth1.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/contrib/debian.libfluidsynth1.install -------------------------------------------------------------------------------- /contrib/debian.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/contrib/debian.rules -------------------------------------------------------------------------------- /contrib/debian.series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/fluidsynth.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/contrib/fluidsynth.dsc -------------------------------------------------------------------------------- /contrib/fluidsynth.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/contrib/fluidsynth.spec -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Doxyfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/Doxyfile.cmake -------------------------------------------------------------------------------- /doc/FluidMixer.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/FluidMixer.ppt -------------------------------------------------------------------------------- /doc/FluidProfile_0004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/FluidProfile_0004.pdf -------------------------------------------------------------------------------- /doc/FluidSostenuto-005.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/FluidSostenuto-005.pdf -------------------------------------------------------------------------------- /doc/FluidSynth Thread safety paper for LAC 2011.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/FluidSynth Thread safety paper for LAC 2011.odt -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/README -------------------------------------------------------------------------------- /doc/android/.gitignore: -------------------------------------------------------------------------------- 1 | external 2 | 3 | -------------------------------------------------------------------------------- /doc/android/Makefile.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/android/Makefile.android -------------------------------------------------------------------------------- /doc/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/android/README.md -------------------------------------------------------------------------------- /doc/android/fluidsynth-assetloader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/android/fluidsynth-assetloader/CMakeLists.txt -------------------------------------------------------------------------------- /doc/android/fluidsynth-assetloader/ext-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/android/fluidsynth-assetloader/ext-build.sh -------------------------------------------------------------------------------- /doc/android/fluidsynth-assetloader/fluid_androidasset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/android/fluidsynth-assetloader/fluid_androidasset.c -------------------------------------------------------------------------------- /doc/android/fluidsynth-assetloader/fluid_androidasset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/android/fluidsynth-assetloader/fluid_androidasset.h -------------------------------------------------------------------------------- /doc/android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/android/jni/Android.mk -------------------------------------------------------------------------------- /doc/android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/android/jni/Application.mk -------------------------------------------------------------------------------- /doc/android/oboe-1.0.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/android/oboe-1.0.pc -------------------------------------------------------------------------------- /doc/doxygen/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/doxygen/custom.css -------------------------------------------------------------------------------- /doc/doxygen/fluidsettings.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/doxygen/fluidsettings.xsl -------------------------------------------------------------------------------- /doc/doxygen/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /doc/doxygen/layout.xml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/doxygen/layout.xml.cmake -------------------------------------------------------------------------------- /doc/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/CMakeLists.txt -------------------------------------------------------------------------------- /doc/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/example.c -------------------------------------------------------------------------------- /doc/examples/fluidsynth_arpeggio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/fluidsynth_arpeggio.c -------------------------------------------------------------------------------- /doc/examples/fluidsynth_enumsettings.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/fluidsynth_enumsettings.cxx -------------------------------------------------------------------------------- /doc/examples/fluidsynth_fx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/fluidsynth_fx.c -------------------------------------------------------------------------------- /doc/examples/fluidsynth_instruments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/fluidsynth_instruments.c -------------------------------------------------------------------------------- /doc/examples/fluidsynth_metronome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/fluidsynth_metronome.c -------------------------------------------------------------------------------- /doc/examples/fluidsynth_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/fluidsynth_process.c -------------------------------------------------------------------------------- /doc/examples/fluidsynth_register_adriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/fluidsynth_register_adriver.c -------------------------------------------------------------------------------- /doc/examples/fluidsynth_sfload_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/fluidsynth_sfload_mem.c -------------------------------------------------------------------------------- /doc/examples/fluidsynth_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/examples/fluidsynth_simple.c -------------------------------------------------------------------------------- /doc/fluidsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/fluidsettings.xml -------------------------------------------------------------------------------- /doc/fluidsettings.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/fluidsettings.xsl -------------------------------------------------------------------------------- /doc/fluidsynth-v20-devdoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/fluidsynth-v20-devdoc.txt -------------------------------------------------------------------------------- /doc/fluidsynth.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/fluidsynth.1 -------------------------------------------------------------------------------- /doc/images/fluid_mixer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/images/fluid_mixer.svg -------------------------------------------------------------------------------- /doc/ladspa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/ladspa.md -------------------------------------------------------------------------------- /doc/polymono/FluidPolyMono-0004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/FluidPolyMono-0004.pdf -------------------------------------------------------------------------------- /doc/polymono/leg_00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/leg_00.txt -------------------------------------------------------------------------------- /doc/polymono/leg_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/leg_01.txt -------------------------------------------------------------------------------- /doc/polymono/leg_por_00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/leg_por_00.txt -------------------------------------------------------------------------------- /doc/polymono/leg_por_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/leg_por_01.txt -------------------------------------------------------------------------------- /doc/polymono/poly_mono_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/poly_mono_0.txt -------------------------------------------------------------------------------- /doc/polymono/poly_mono_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/poly_mono_1.txt -------------------------------------------------------------------------------- /doc/polymono/poly_mono_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/poly_mono_2.txt -------------------------------------------------------------------------------- /doc/polymono/poly_mono_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/poly_mono_3.txt -------------------------------------------------------------------------------- /doc/polymono/poly_mono_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/poly_mono_4.txt -------------------------------------------------------------------------------- /doc/polymono/poly_mono_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/poly_mono_5.txt -------------------------------------------------------------------------------- /doc/polymono/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/polymono/readme.txt -------------------------------------------------------------------------------- /doc/recent_changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/recent_changes.txt -------------------------------------------------------------------------------- /doc/usage/_overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/_overview.txt -------------------------------------------------------------------------------- /doc/usage/advanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/advanced.txt -------------------------------------------------------------------------------- /doc/usage/audio_driver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/audio_driver.txt -------------------------------------------------------------------------------- /doc/usage/creating_settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/creating_settings.txt -------------------------------------------------------------------------------- /doc/usage/creating_synth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/creating_synth.txt -------------------------------------------------------------------------------- /doc/usage/file_renderer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/file_renderer.txt -------------------------------------------------------------------------------- /doc/usage/loading_soundfonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/loading_soundfonts.txt -------------------------------------------------------------------------------- /doc/usage/manual_rendering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/manual_rendering.txt -------------------------------------------------------------------------------- /doc/usage/midi_player.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/midi_player.txt -------------------------------------------------------------------------------- /doc/usage/midi_player_mem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/midi_player_mem.txt -------------------------------------------------------------------------------- /doc/usage/midi_router.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/midi_router.txt -------------------------------------------------------------------------------- /doc/usage/multi_channel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/multi_channel.txt -------------------------------------------------------------------------------- /doc/usage/realtime_midi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/realtime_midi.txt -------------------------------------------------------------------------------- /doc/usage/sending_midi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/sending_midi.txt -------------------------------------------------------------------------------- /doc/usage/sequencer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/sequencer.txt -------------------------------------------------------------------------------- /doc/usage/shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/shell.txt -------------------------------------------------------------------------------- /doc/usage/synth_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/doc/usage/synth_context.txt -------------------------------------------------------------------------------- /emscripten/exports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/emscripten/exports.txt -------------------------------------------------------------------------------- /emscripten/make-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/emscripten/make-exports.js -------------------------------------------------------------------------------- /emscripten/src/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/emscripten/src/post.js -------------------------------------------------------------------------------- /fluidsynth.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/fluidsynth.conf.in -------------------------------------------------------------------------------- /fluidsynth.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/fluidsynth.pc.in -------------------------------------------------------------------------------- /fluidsynth.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/fluidsynth.service.in -------------------------------------------------------------------------------- /fluidsynth.tmpfiles.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/fluidsynth.tmpfiles.in -------------------------------------------------------------------------------- /include/fluidsynth.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth.cmake -------------------------------------------------------------------------------- /include/fluidsynth/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/audio.h -------------------------------------------------------------------------------- /include/fluidsynth/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/event.h -------------------------------------------------------------------------------- /include/fluidsynth/gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/gen.h -------------------------------------------------------------------------------- /include/fluidsynth/ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/ladspa.h -------------------------------------------------------------------------------- /include/fluidsynth/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/log.h -------------------------------------------------------------------------------- /include/fluidsynth/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/midi.h -------------------------------------------------------------------------------- /include/fluidsynth/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/misc.h -------------------------------------------------------------------------------- /include/fluidsynth/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/mod.h -------------------------------------------------------------------------------- /include/fluidsynth/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/seq.h -------------------------------------------------------------------------------- /include/fluidsynth/seqbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/seqbind.h -------------------------------------------------------------------------------- /include/fluidsynth/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/settings.h -------------------------------------------------------------------------------- /include/fluidsynth/sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/sfont.h -------------------------------------------------------------------------------- /include/fluidsynth/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/shell.h -------------------------------------------------------------------------------- /include/fluidsynth/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/synth.h -------------------------------------------------------------------------------- /include/fluidsynth/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/types.h -------------------------------------------------------------------------------- /include/fluidsynth/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/version.h.in -------------------------------------------------------------------------------- /include/fluidsynth/voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/include/fluidsynth/voice.h -------------------------------------------------------------------------------- /sf2/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/sf2/COPYRIGHT.txt -------------------------------------------------------------------------------- /sf2/VintageDreamsWaves-v2.sf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/sf2/VintageDreamsWaves-v2.sf2 -------------------------------------------------------------------------------- /sf2/VintageDreamsWaves-v2.sf2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/sf2/VintageDreamsWaves-v2.sf2.yml -------------------------------------------------------------------------------- /sf2/VintageDreamsWaves-v2.sf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/sf2/VintageDreamsWaves-v2.sf3 -------------------------------------------------------------------------------- /sf2/VintageDreamsWaves-v2.sf3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/sf2/VintageDreamsWaves-v2.sf3.yml -------------------------------------------------------------------------------- /sf2/VìntàgèDrèàmsWàvès-v2.sf2: -------------------------------------------------------------------------------- 1 | VintageDreamsWaves-v2.sf2 -------------------------------------------------------------------------------- /sf2/■VintageDreamsWaves-v2■.sf2: -------------------------------------------------------------------------------- 1 | VintageDreamsWaves-v2.sf2 -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bindings/fluid_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/bindings/fluid_cmd.c -------------------------------------------------------------------------------- /src/bindings/fluid_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/bindings/fluid_cmd.h -------------------------------------------------------------------------------- /src/bindings/fluid_filerenderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/bindings/fluid_filerenderer.c -------------------------------------------------------------------------------- /src/bindings/fluid_ladspa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/bindings/fluid_ladspa.c -------------------------------------------------------------------------------- /src/bindings/fluid_ladspa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/bindings/fluid_ladspa.h -------------------------------------------------------------------------------- /src/bindings/fluid_rtkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/bindings/fluid_rtkit.c -------------------------------------------------------------------------------- /src/bindings/fluid_rtkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/bindings/fluid_rtkit.h -------------------------------------------------------------------------------- /src/config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/config.cmake -------------------------------------------------------------------------------- /src/drivers/fluid_adriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_adriver.c -------------------------------------------------------------------------------- /src/drivers/fluid_adriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_adriver.h -------------------------------------------------------------------------------- /src/drivers/fluid_alsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_alsa.c -------------------------------------------------------------------------------- /src/drivers/fluid_aufile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_aufile.c -------------------------------------------------------------------------------- /src/drivers/fluid_coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_coreaudio.c -------------------------------------------------------------------------------- /src/drivers/fluid_coremidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_coremidi.c -------------------------------------------------------------------------------- /src/drivers/fluid_dart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_dart.c -------------------------------------------------------------------------------- /src/drivers/fluid_dsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_dsound.c -------------------------------------------------------------------------------- /src/drivers/fluid_jack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_jack.c -------------------------------------------------------------------------------- /src/drivers/fluid_kai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_kai.c -------------------------------------------------------------------------------- /src/drivers/fluid_mdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_mdriver.c -------------------------------------------------------------------------------- /src/drivers/fluid_mdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_mdriver.h -------------------------------------------------------------------------------- /src/drivers/fluid_midishare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_midishare.c -------------------------------------------------------------------------------- /src/drivers/fluid_oboe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_oboe.cpp -------------------------------------------------------------------------------- /src/drivers/fluid_opensles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_opensles.c -------------------------------------------------------------------------------- /src/drivers/fluid_oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_oss.c -------------------------------------------------------------------------------- /src/drivers/fluid_pipewire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_pipewire.c -------------------------------------------------------------------------------- /src/drivers/fluid_portaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_portaudio.c -------------------------------------------------------------------------------- /src/drivers/fluid_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_pulse.c -------------------------------------------------------------------------------- /src/drivers/fluid_sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_sdl2.c -------------------------------------------------------------------------------- /src/drivers/fluid_sdl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_sdl3.c -------------------------------------------------------------------------------- /src/drivers/fluid_sndmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_sndmgr.c -------------------------------------------------------------------------------- /src/drivers/fluid_wasapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_wasapi.c -------------------------------------------------------------------------------- /src/drivers/fluid_waveout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_waveout.c -------------------------------------------------------------------------------- /src/drivers/fluid_winmidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/drivers/fluid_winmidi.c -------------------------------------------------------------------------------- /src/fluid_wasapi_device_enumerate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/fluid_wasapi_device_enumerate.c -------------------------------------------------------------------------------- /src/fluidsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/fluidsynth.c -------------------------------------------------------------------------------- /src/gentables/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/gentables/CMakeLists.txt -------------------------------------------------------------------------------- /src/gentables/gen_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/gentables/gen_conv.c -------------------------------------------------------------------------------- /src/gentables/gen_rvoice_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/gentables/gen_rvoice_dsp.c -------------------------------------------------------------------------------- /src/gentables/make_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/gentables/make_tables.c -------------------------------------------------------------------------------- /src/gentables/make_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/gentables/make_tables.h -------------------------------------------------------------------------------- /src/midi/fluid_midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_midi.c -------------------------------------------------------------------------------- /src/midi/fluid_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_midi.h -------------------------------------------------------------------------------- /src/midi/fluid_midi_router.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_midi_router.c -------------------------------------------------------------------------------- /src/midi/fluid_midi_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_midi_router.h -------------------------------------------------------------------------------- /src/midi/fluid_seq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_seq.c -------------------------------------------------------------------------------- /src/midi/fluid_seq_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_seq_queue.cpp -------------------------------------------------------------------------------- /src/midi/fluid_seq_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_seq_queue.h -------------------------------------------------------------------------------- /src/midi/fluid_seqbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_seqbind.c -------------------------------------------------------------------------------- /src/midi/fluid_seqbind_notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_seqbind_notes.cpp -------------------------------------------------------------------------------- /src/midi/fluid_seqbind_notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/midi/fluid_seqbind_notes.h -------------------------------------------------------------------------------- /src/rvoice/fluid_adsr_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_adsr_env.c -------------------------------------------------------------------------------- /src/rvoice/fluid_adsr_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_adsr_env.h -------------------------------------------------------------------------------- /src/rvoice/fluid_chorus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_chorus.c -------------------------------------------------------------------------------- /src/rvoice/fluid_chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_chorus.h -------------------------------------------------------------------------------- /src/rvoice/fluid_iir_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_iir_filter.c -------------------------------------------------------------------------------- /src/rvoice/fluid_iir_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_iir_filter.h -------------------------------------------------------------------------------- /src/rvoice/fluid_iir_filter_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_iir_filter_impl.cpp -------------------------------------------------------------------------------- /src/rvoice/fluid_lfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_lfo.c -------------------------------------------------------------------------------- /src/rvoice/fluid_lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_lfo.h -------------------------------------------------------------------------------- /src/rvoice/fluid_phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_phase.h -------------------------------------------------------------------------------- /src/rvoice/fluid_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rev.c -------------------------------------------------------------------------------- /src/rvoice/fluid_rev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rev.h -------------------------------------------------------------------------------- /src/rvoice/fluid_rvoice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rvoice.c -------------------------------------------------------------------------------- /src/rvoice/fluid_rvoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rvoice.h -------------------------------------------------------------------------------- /src/rvoice/fluid_rvoice_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rvoice_dsp.cpp -------------------------------------------------------------------------------- /src/rvoice/fluid_rvoice_dsp_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rvoice_dsp_tables.h -------------------------------------------------------------------------------- /src/rvoice/fluid_rvoice_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rvoice_event.c -------------------------------------------------------------------------------- /src/rvoice/fluid_rvoice_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rvoice_event.h -------------------------------------------------------------------------------- /src/rvoice/fluid_rvoice_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rvoice_mixer.c -------------------------------------------------------------------------------- /src/rvoice/fluid_rvoice_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/rvoice/fluid_rvoice_mixer.h -------------------------------------------------------------------------------- /src/sfloader/fluid_defsfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_defsfont.c -------------------------------------------------------------------------------- /src/sfloader/fluid_defsfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_defsfont.h -------------------------------------------------------------------------------- /src/sfloader/fluid_instpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_instpatch.c -------------------------------------------------------------------------------- /src/sfloader/fluid_instpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_instpatch.h -------------------------------------------------------------------------------- /src/sfloader/fluid_samplecache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_samplecache.c -------------------------------------------------------------------------------- /src/sfloader/fluid_samplecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_samplecache.h -------------------------------------------------------------------------------- /src/sfloader/fluid_sffile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_sffile.c -------------------------------------------------------------------------------- /src/sfloader/fluid_sffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_sffile.h -------------------------------------------------------------------------------- /src/sfloader/fluid_sfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_sfont.c -------------------------------------------------------------------------------- /src/sfloader/fluid_sfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/sfloader/fluid_sfont.h -------------------------------------------------------------------------------- /src/synth/fluid_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_chan.c -------------------------------------------------------------------------------- /src/synth/fluid_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_chan.h -------------------------------------------------------------------------------- /src/synth/fluid_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_event.c -------------------------------------------------------------------------------- /src/synth/fluid_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_event.h -------------------------------------------------------------------------------- /src/synth/fluid_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_gen.c -------------------------------------------------------------------------------- /src/synth/fluid_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_gen.h -------------------------------------------------------------------------------- /src/synth/fluid_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_mod.c -------------------------------------------------------------------------------- /src/synth/fluid_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_mod.h -------------------------------------------------------------------------------- /src/synth/fluid_synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_synth.c -------------------------------------------------------------------------------- /src/synth/fluid_synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_synth.h -------------------------------------------------------------------------------- /src/synth/fluid_synth_monopoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_synth_monopoly.c -------------------------------------------------------------------------------- /src/synth/fluid_tuning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_tuning.c -------------------------------------------------------------------------------- /src/synth/fluid_tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_tuning.h -------------------------------------------------------------------------------- /src/synth/fluid_voice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_voice.c -------------------------------------------------------------------------------- /src/synth/fluid_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/synth/fluid_voice.h -------------------------------------------------------------------------------- /src/utils/fluid_conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_conv.c -------------------------------------------------------------------------------- /src/utils/fluid_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_conv.h -------------------------------------------------------------------------------- /src/utils/fluid_conv_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_conv_tables.h -------------------------------------------------------------------------------- /src/utils/fluid_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_hash.c -------------------------------------------------------------------------------- /src/utils/fluid_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_hash.h -------------------------------------------------------------------------------- /src/utils/fluid_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_list.c -------------------------------------------------------------------------------- /src/utils/fluid_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_list.h -------------------------------------------------------------------------------- /src/utils/fluid_ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_ringbuffer.c -------------------------------------------------------------------------------- /src/utils/fluid_ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_ringbuffer.h -------------------------------------------------------------------------------- /src/utils/fluid_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_settings.c -------------------------------------------------------------------------------- /src/utils/fluid_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_settings.h -------------------------------------------------------------------------------- /src/utils/fluid_stub_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_stub_functions.h -------------------------------------------------------------------------------- /src/utils/fluid_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_sys.c -------------------------------------------------------------------------------- /src/utils/fluid_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_sys.h -------------------------------------------------------------------------------- /src/utils/fluid_sys_embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_sys_embedded.c -------------------------------------------------------------------------------- /src/utils/fluid_sys_embedded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_sys_embedded.h -------------------------------------------------------------------------------- /src/utils/fluid_sys_glib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_sys_glib.c -------------------------------------------------------------------------------- /src/utils/fluid_sys_glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluid_sys_glib.h -------------------------------------------------------------------------------- /src/utils/fluidsynth_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/src/utils/fluidsynth_priv.h -------------------------------------------------------------------------------- /test-android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/.gitignore -------------------------------------------------------------------------------- /test-android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/README.md -------------------------------------------------------------------------------- /test-android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /test-android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/build.gradle -------------------------------------------------------------------------------- /test-android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/proguard-rules.pro -------------------------------------------------------------------------------- /test-android/app/src/androidTest/java/org/fluidsynth/fluidsynth_tests/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/androidTest/java/org/fluidsynth/fluidsynth_tests/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /test-android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /test-android/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /test-android/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /test-android/app/src/main/java/org/fluidsynth/fluidsynthtests/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/java/org/fluidsynth/fluidsynthtests/MainActivity.kt -------------------------------------------------------------------------------- /test-android/app/src/main/java/org/fluidsynth/fluidsynthtests/TestRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/java/org/fluidsynth/fluidsynthtests/TestRunner.kt -------------------------------------------------------------------------------- /test-android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /test-android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /test-android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /test-android/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /test-android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /test-android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /test-android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /test-android/app/src/test/java/org/fluidsynth/fluidsynth_tests/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/app/src/test/java/org/fluidsynth/fluidsynth_tests/ExampleUnitTest.kt -------------------------------------------------------------------------------- /test-android/build-scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/build-scripts/.gitignore -------------------------------------------------------------------------------- /test-android/build-scripts/build-all-archs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/build-scripts/build-all-archs.sh -------------------------------------------------------------------------------- /test-android/build-scripts/build-call-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/build-scripts/build-call-cmake.sh -------------------------------------------------------------------------------- /test-android/build-scripts/build-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/build-scripts/build-env.sh -------------------------------------------------------------------------------- /test-android/build-scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/build-scripts/build.sh -------------------------------------------------------------------------------- /test-android/build-scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/build-scripts/download.sh -------------------------------------------------------------------------------- /test-android/build-scripts/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/build-scripts/extract.sh -------------------------------------------------------------------------------- /test-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/build.gradle -------------------------------------------------------------------------------- /test-android/convert-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/convert-tests.sh -------------------------------------------------------------------------------- /test-android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/gradle.properties -------------------------------------------------------------------------------- /test-android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /test-android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /test-android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/gradlew -------------------------------------------------------------------------------- /test-android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test-android/gradlew.bat -------------------------------------------------------------------------------- /test-android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "fluidsynth-tests" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/README.md -------------------------------------------------------------------------------- /test/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/cmake/README.md -------------------------------------------------------------------------------- /test/cmake/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/cmake/main.c -------------------------------------------------------------------------------- /test/dump_sfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/dump_sfont.c -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test.h -------------------------------------------------------------------------------- /test/test_bug_635.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_bug_635.c -------------------------------------------------------------------------------- /test/test_ct2hz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_ct2hz.c -------------------------------------------------------------------------------- /test/test_fast_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_fast_render.c -------------------------------------------------------------------------------- /test/test_jack_obtaining_synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_jack_obtaining_synth.c -------------------------------------------------------------------------------- /test/test_pointer_alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_pointer_alignment.c -------------------------------------------------------------------------------- /test/test_preset_pinning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_preset_pinning.c -------------------------------------------------------------------------------- /test/test_preset_sample_loading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_preset_sample_loading.c -------------------------------------------------------------------------------- /test/test_sample_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_sample_cache.c -------------------------------------------------------------------------------- /test/test_sample_rate_change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_sample_rate_change.c -------------------------------------------------------------------------------- /test/test_sample_validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_sample_validate.c -------------------------------------------------------------------------------- /test/test_seq_event_queue_remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_seq_event_queue_remove.c -------------------------------------------------------------------------------- /test/test_seq_event_queue_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_seq_event_queue_sort.c -------------------------------------------------------------------------------- /test/test_seq_evt_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_seq_evt_order.c -------------------------------------------------------------------------------- /test/test_seq_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_seq_scale.c -------------------------------------------------------------------------------- /test/test_seqbind_unregister.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_seqbind_unregister.c -------------------------------------------------------------------------------- /test/test_settings_unregister_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_settings_unregister_callback.c -------------------------------------------------------------------------------- /test/test_sf3_sfont_loading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_sf3_sfont_loading.c -------------------------------------------------------------------------------- /test/test_sfont_loading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_sfont_loading.c -------------------------------------------------------------------------------- /test/test_sfont_unloading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_sfont_unloading.c -------------------------------------------------------------------------------- /test/test_sfont_zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_sfont_zone.c -------------------------------------------------------------------------------- /test/test_snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_snprintf.c -------------------------------------------------------------------------------- /test/test_synth_chorus_reverb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_synth_chorus_reverb.c -------------------------------------------------------------------------------- /test/test_synth_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_synth_process.c -------------------------------------------------------------------------------- /test/test_synth_reset_cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_synth_reset_cc.c -------------------------------------------------------------------------------- /test/test_utf8_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/test_utf8_open.c -------------------------------------------------------------------------------- /test/èmpty.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/èmpty.mid -------------------------------------------------------------------------------- /test/ⓉⒺⓈⓉ.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jet2jet/fluidsynth-emscripten/HEAD/test/ⓉⒺⓈⓉ.mid --------------------------------------------------------------------------------