Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removed .settings/ | RubbaBoy | 2020-10-30 | 3 | -361/+1 |
| | |||||
* | Restructured project, added gradle, JUnit, logger, and more | RubbaBoy | 2020-10-30 | 347 | -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/tolenti | Phil Burk | 2020-10-30 | 8 | -8/+8 |
|\ | | | | | JSyn: fix spelling of Lisa Tolentino | ||||
| * | JSyn: fix spelling of Lisa Tolentino | Phil Burk | 2020-10-30 | 8 | -8/+8 |
|/ | |||||
* | Merge pull request #81 from philburk/usejava8v16.8.1 | Phil Burk | 2020-07-02 | 1 | -1/+1 |
|\ | | | | | build: use java 1.8 in ant script | ||||
| * | build: use java 1.8 in ant script | Phil Burk | 2020-07-02 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #80 from philburk/bump464 | Phil Burk | 2020-07-02 | 1 | -2/+2 |
|\| | | | | | jsyn: bump to build 464, version 16.8.1 | ||||
| * | jsyn: bump to build 464, version 16.8.1 | Phil Burk | 2020-07-02 | 1 | -2/+2 |
|/ | |||||
* | Merge pull request #79 from philburk/minorfixes | Phil Burk | 2020-07-02 | 1 | -1/+1 |
|\ | | | | | jsyn: some minor improvements | ||||
| * | jsyn: some minor improvements | Phil Burk | 2020-07-02 | 1 | -1/+1 |
|/ | | | | Use final in MultiPassThrough | ||||
* | Merge pull request #78 from philburk/betterdocs | Phil Burk | 2020-07-02 | 8 | -28/+66 |
|\ | | | | | jsyn docs: various small improvements | ||||
| * | jsyn docs: various small improvements | Phil Burk | 2020-07-02 | 8 | -28/+66 |
|/ | | | | Update build.xml to use newer versions of javadoc | ||||
* | Merge pull request #73 from philburk/safeui | Phil Burk | 2019-09-15 | 1 | -1/+7 |
|\ | | | | | ui: use safeRepaint() | ||||
| * | ui: use safeRepaint() | Phil Burk | 2019-09-15 | 1 | -1/+7 |
| | | | | | | | | | | To allow workaround for OpenJDK bug. https://github.com/philburk/syntona/issues/13 | ||||
* | | point README.txt to README.md | Phil Burk | 2019-04-21 | 1 | -23/+1 |
| | | |||||
* | | reorganize README.md | Phil Burk | 2019-04-21 | 1 | -10/+5 |
|/ | |||||
* | Merge pull request #72 from philburk/bump463 | Phil Burk | 2019-03-17 | 1 | -5/+5 |
|\ | | | | | JSyn: bump to build 463, version 16.8.0 | ||||
| * | JSyn: bump to build 463, version 16.8.0 | Phil Burk | 2019-03-17 | 1 | -5/+5 |
|/ | |||||
* | Merge pull request #53 from philburk/noteplayer | Phil Burk | 2017-07-31 | 1 | -1/+31 |
|\ | | | | | MultiChannelSynthesizer: add noteOn and noteOff with timestamp | ||||
| * | MultiChannelSynthesizer: add noteOn and noteOff with timestamp | Phil Burk | 2017-07-31 | 1 | -1/+31 |
|/ | |||||
* | Merge pull request #52 from philburk/multipass | Phil Burk | 2017-07-31 | 4 | -7/+78 |
|\ | | | | | MultiPassThrough: multi-channel passthrough | ||||
| * | MultiPassThrough: multi-channel passthrough | Phil Burk | 2017-07-31 | 4 | -7/+78 |
|/ | |||||
* | Merge pull request #51 from nmulcahey/master | Phil Burk | 2017-07-31 | 1 | -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 than | Nathan Mulcahey | 2017-07-17 | 1 | -1/+3 |
|/ | | | | Thread#MAX_PRIORITY | ||||
* | Merge pull request #48 from philburk/js20161211 | Phil Burk | 2016-12-21 | 4 | -24/+26 |
|\ | | | | | Fix some white space and doc issues. | ||||
| * | AudioFifo: remove extra white space | Phil Burk | 2016-12-15 | 2 | -15/+14 |
| | | |||||
| * | Filter docs, add some see links. | Phil Burk | 2016-12-15 | 2 | -9/+12 |
|/ | |||||
* | Merge pull request #47 from zgeggy2k/master | Phil Burk | 2016-12-15 | 2 | -23/+73 |
|\ | | | | | Fix deadlock in AudioFifo. | ||||
| * | Fix deadlock in AudioFifo. | Greg | 2016-12-12 | 2 | -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/fixdocs | Phil Burk | 2016-12-03 | 3 | -4/+3 |
|\ | | | | | fix javadocs | ||||
| * | fix javadocs | Phil Burk | 2016-12-03 | 3 | -4/+3 |
|/ | |||||
* | Merge pull request #45 from philburk/throttle2 | Phil Burk | 2016-12-01 | 1 | -0/+7 |
|\ | | | | | Throttle the CPU if there are no audio devices. | ||||
| * | Throttle the CPU if there are no audio devices. | Phil Burk | 2016-12-01 | 1 | -0/+7 |
|/ | |||||
* | Merge pull request #44 from philburk/floatshaper | Phil Burk | 2016-12-01 | 2 | -9/+133 |
|\ | | | | | Floatshaper | ||||
| * | Added evaluate() to FloatSample. | Phil Burk | 2016-11-30 | 2 | -37/+27 |
| | | |||||
| * | FloatWaveShaper: example program | Phil Burk | 2016-11-30 | 1 | -0/+134 |
|/ | | | | FIXME need better solution, add evaluate to FloatSample() | ||||
* | Merge pull request #43 from philburk/rc-1678 | Phil Burk | 2016-11-30 | 8 | -28/+191 |
|\ | | | | | last minute changes for 16.7.8 | ||||
| * | Turn down example FM carrier | Phil Burk | 2016-11-30 | 1 | -4/+4 |
| | | |||||
| * | Cleanup EdgeDetector | Phil Burk | 2016-11-30 | 1 | -9/+4 |
| | | |||||
| * | cleanup for 16.7.8, doc MultiChannelSynthesizer, add DoubleTable.length() | Phil Burk | 2016-11-30 | 6 | -15/+183 |
|/ | |||||
* | Merge pull request #42 from philburk/startrequired | Phil Burk | 2016-11-29 | 13 | -89/+158 |
|\ | | | | | add isStartRequired, add GroupChannel to synth | ||||
| * | add isStartRequired, add GroupChannel to synth | Phil Burk | 2016-11-29 | 13 | -89/+158 |
|/ | |||||
* | Merge pull request #41 from philburk/instruments | Phil Burk | 2016-11-29 | 45 | -344/+1770 |
|\ | | | | | Instruments | ||||
| * | Instruments: add voice operation. | Phil Burk | 2016-10-31 | 2 | -16/+35 |
| | | |||||
| * | Instruments: add better synth, pitch control | Phil Burk | 2016-10-24 | 44 | -338/+1745 |
| | | |||||
* | | Merge pull request #39 from philburk/issue-15-queue | Phil Burk | 2016-11-27 | 2 | -17/+54 |
|\ \ | |/ |/| | Check for bounds when sample or envelope data is queued. | ||||
| * | Check for bounds when sample or envelope data is queued. | Phil Burk | 2016-11-27 | 2 | -17/+54 |
|/ | | | | | | Add unit test. Fix: #15 | ||||
* | Merge pull request #31 from philburk/startstop | Phil Burk | 2016-08-09 | 3 | -87/+95 |
|\ | | | | | Fix race condition when stopping and restarting the synthesizer. | ||||
| * | Fix race condition when stopping and restarting the synthesizer. | Phil Burk | 2016-08-09 | 3 | -87/+95 |
|/ | | | | https://github.com/philburk/jsyn/issues/30 | ||||
* | Merge pull request #28 from philburk/docs | Phil Burk | 2016-03-23 | 25 | -177/+214 |
|\ | | | | | Docs |