aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/jsyn/util
Commit message (Collapse)AuthorAgeFilesLines
* midi: fixes for ExoSynth (#114)Phil Burk2022-08-111-22/+56
| | | | | | | | | | Combine channel and noteNumber as a tag for the VoiceAllocator to avoid collisions when the same note is played on multiple channels. Allocate more voices: numChannels * voicesPerChannel For GM2 synths, force channel 10 (9) to use preset 128. That is a sign for the synth that this is a rhythm channel.
* WaveRecorder: fix hang in StreamingThread (#106)Phil Burk2022-01-302-9/+14
| | | | | | | | | | The read() could hang forever waiting for data when the WaveRecorder was stopped. Now it terminates the thread. Also fix bug in AudioFifo when partially full. It would not read any data! Fixes #105
* jsyn: remove dependency on SLF4JPhil Burk2021-09-015-114/+25
| | | | | | It was causing too many problems and had no apparent benefit. Fixes #101
* Restructured project, added gradle, JUnit, logger, and moreRubbaBoy2020-10-3028-0/+4133
Added Gradle (and removed ant), modernized testing via the JUnit framework, moved standalone examples from the tests directory to a separate module, removed sparsely used Java logger and replaced it with SLF4J. More work could be done, however this is a great start to greatly improving the health of the codebase.