summaryrefslogtreecommitdiff
path: root/apps/plugins/midi/synth.h
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2019-08-04 16:58:20 -0400
committerSolomon Peachy <pizza@shaftnet.org>2019-08-05 20:48:40 +0200
commited724fecb15d90d8075ed1edb963f455cb91b0a1 (patch)
tree6b72250278e5170bc7ed4b8263f48eb8e8dc1c61 /apps/plugins/midi/synth.h
parenteea5bfc9aec35686406296641b37bcc2c731fbbb (diff)
downloadrockbox-ed724fecb15d90d8075ed1edb963f455cb91b0a1.tar.gz
rockbox-ed724fecb15d90d8075ed1edb963f455cb91b0a1.zip
Midiplay plugin ehancements
- Improved robustness - Improved sound quality - Use mixer and DSP Patch by Igor Poretsky Change-Id: I6fa617158cbaa53ae842295cdbdbe3a478e49ded
Diffstat (limited to 'apps/plugins/midi/synth.h')
-rw-r--r--apps/plugins/midi/synth.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/midi/synth.h b/apps/plugins/midi/synth.h
index 4cc6a545f0..b44da21fd2 100644
--- a/apps/plugins/midi/synth.h
+++ b/apps/plugins/midi/synth.h
@@ -20,7 +20,7 @@
20 ****************************************************************************/ 20 ****************************************************************************/
21int initSynth(struct MIDIfile * mf, char * filename, char * drumConfig); 21int initSynth(struct MIDIfile * mf, char * filename, char * drumConfig);
22void setPoint(struct SynthObject * so, int pt); 22void setPoint(struct SynthObject * so, int pt);
23void synthSamples(int32_t *buf_ptr, unsigned int num_samples); 23size_t synthSamples(int32_t *buf_ptr, size_t num_samples);
24 24
25void resetControllers(void); 25void resetControllers(void);
26 26