aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Removed .settings/RubbaBoy2020-10-303-361/+1
|
* Restructured project, added gradle, JUnit, logger, and moreRubbaBoy2020-10-30347-1494/+1946
| | | | 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.
* Merge pull request #85 from philburk/tolentiPhil Burk2020-10-308-8/+8
|\ | | | | JSyn: fix spelling of Lisa Tolentino
| * JSyn: fix spelling of Lisa TolentinoPhil Burk2020-10-308-8/+8
|/
* Merge pull request #81 from philburk/usejava8v16.8.1Phil Burk2020-07-021-1/+1
|\ | | | | build: use java 1.8 in ant script
| * build: use java 1.8 in ant scriptPhil Burk2020-07-021-1/+1
| |
* | Merge pull request #80 from philburk/bump464Phil Burk2020-07-021-2/+2
|\| | | | | jsyn: bump to build 464, version 16.8.1
| * jsyn: bump to build 464, version 16.8.1Phil Burk2020-07-021-2/+2
|/
* Merge pull request #79 from philburk/minorfixesPhil Burk2020-07-021-1/+1
|\ | | | | jsyn: some minor improvements
| * jsyn: some minor improvementsPhil Burk2020-07-021-1/+1
|/ | | | Use final in MultiPassThrough
* Merge pull request #78 from philburk/betterdocsPhil Burk2020-07-028-28/+66
|\ | | | | jsyn docs: various small improvements
| * jsyn docs: various small improvementsPhil Burk2020-07-028-28/+66
|/ | | | Update build.xml to use newer versions of javadoc
* Merge pull request #73 from philburk/safeuiPhil Burk2019-09-151-1/+7
|\ | | | | ui: use safeRepaint()
| * ui: use safeRepaint()Phil Burk2019-09-151-1/+7
| | | | | | | | | | To allow workaround for OpenJDK bug. https://github.com/philburk/syntona/issues/13
* | point README.txt to README.mdPhil Burk2019-04-211-23/+1
| |
* | reorganize README.mdPhil Burk2019-04-211-10/+5
|/
* Merge pull request #72 from philburk/bump463Phil Burk2019-03-171-5/+5
|\ | | | | JSyn: bump to build 463, version 16.8.0
| * JSyn: bump to build 463, version 16.8.0Phil Burk2019-03-171-5/+5
|/
* Merge pull request #53 from philburk/noteplayerPhil Burk2017-07-311-1/+31
|\ | | | | MultiChannelSynthesizer: add noteOn and noteOff with timestamp
| * MultiChannelSynthesizer: add noteOn and noteOff with timestampPhil Burk2017-07-311-1/+31
|/
* Merge pull request #52 from philburk/multipassPhil Burk2017-07-314-7/+78
|\ | | | | MultiPassThrough: multi-channel passthrough
| * MultiPassThrough: multi-channel passthroughPhil Burk2017-07-314-7/+78
|/
* Merge pull request #51 from nmulcahey/masterPhil Burk2017-07-311-1/+3
|\ | | | | Ensure upper bound for argument to Thread#setPriority is less than Thread#MAX_PRIORITY
| * Ensure upper bound for argument to Thread#setPriority is less thanNathan Mulcahey2017-07-171-1/+3
|/ | | | Thread#MAX_PRIORITY
* Merge pull request #48 from philburk/js20161211Phil Burk2016-12-214-24/+26
|\ | | | | Fix some white space and doc issues.
| * AudioFifo: remove extra white spacePhil Burk2016-12-152-15/+14
| |
| * Filter docs, add some see links.Phil Burk2016-12-152-9/+12
|/
* Merge pull request #47 from zgeggy2k/masterPhil Burk2016-12-152-23/+73
|\ | | | | Fix deadlock in AudioFifo.
| * Fix deadlock in AudioFifo.Greg2016-12-122-23/+73
|/ | | | | | | | | | | | | | | | | | | | | | | | The deadlock scenario is the following: 1) AudioFifo is used with wait on write and read 2) Producer Thread calls write(). The buffer is full, then it gets into the while(available() == buffer.length) loop 3) a context switch happens right there, BEFORE readSemaphore.wait() 4) Consumer Thread calls read() multiple times until it depletes the buffer, then ends up in writeSemaphore.wait() 5) context switch back to the Producer Thread, which now calls readSemaphore.wait() Deadlock: the buffer is empty, and nobody is going to signal the producer that there is availability. This can be reproduced with a simple stress test. I added the stress test which is simply a copy of an existing one, with a very large value for the chunk variable. The race condition is more likely to be hit when the buffer is small, but I have hit it in "production" with 32K buffers, while generating large files (a few hundred megabytes). I am not sure the performance implications of the change, as my use cases are non-realtime. Still, all the tests pass.
* Merge pull request #46 from philburk/fixdocsPhil Burk2016-12-033-4/+3
|\ | | | | fix javadocs
| * fix javadocsPhil Burk2016-12-033-4/+3
|/
* Merge pull request #45 from philburk/throttle2Phil Burk2016-12-011-0/+7
|\ | | | | Throttle the CPU if there are no audio devices.
| * Throttle the CPU if there are no audio devices.Phil Burk2016-12-011-0/+7
|/
* Merge pull request #44 from philburk/floatshaperPhil Burk2016-12-012-9/+133
|\ | | | | Floatshaper
| * Added evaluate() to FloatSample.Phil Burk2016-11-302-37/+27
| |
| * FloatWaveShaper: example programPhil Burk2016-11-301-0/+134
|/ | | | FIXME need better solution, add evaluate to FloatSample()
* Merge pull request #43 from philburk/rc-1678Phil Burk2016-11-308-28/+191
|\ | | | | last minute changes for 16.7.8
| * Turn down example FM carrierPhil Burk2016-11-301-4/+4
| |
| * Cleanup EdgeDetectorPhil Burk2016-11-301-9/+4
| |
| * cleanup for 16.7.8, doc MultiChannelSynthesizer, add DoubleTable.length()Phil Burk2016-11-306-15/+183
|/
* Merge pull request #42 from philburk/startrequiredPhil Burk2016-11-2913-89/+158
|\ | | | | add isStartRequired, add GroupChannel to synth
| * add isStartRequired, add GroupChannel to synthPhil Burk2016-11-2913-89/+158
|/
* Merge pull request #41 from philburk/instrumentsPhil Burk2016-11-2945-344/+1770
|\ | | | | Instruments
| * Instruments: add voice operation.Phil Burk2016-10-312-16/+35
| |
| * Instruments: add better synth, pitch controlPhil Burk2016-10-2444-338/+1745
| |
* | Merge pull request #39 from philburk/issue-15-queuePhil Burk2016-11-272-17/+54
|\ \ | |/ |/| Check for bounds when sample or envelope data is queued.
| * Check for bounds when sample or envelope data is queued.Phil Burk2016-11-272-17/+54
|/ | | | | | Add unit test. Fix: #15
* Merge pull request #31 from philburk/startstopPhil Burk2016-08-093-87/+95
|\ | | | | Fix race condition when stopping and restarting the synthesizer.
| * Fix race condition when stopping and restarting the synthesizer.Phil Burk2016-08-093-87/+95
|/ | | | https://github.com/philburk/jsyn/issues/30
* Merge pull request #28 from philburk/docsPhil Burk2016-03-2325-177/+214
|\ | | | | Docs