Mercurial > hg > svcore
annotate plugin/api/alsa/asoundlib.h @ 97:22494cc28c9f
* Reduce number of allocations and deallocations by keeping a spare buffer
around (we were generally deallocating and then immediately allocating again,
so it's much better not to have to bother as very large allocations can tie
up the system)
author | Chris Cannam |
---|---|
date | Thu, 04 May 2006 20:17:28 +0000 |
parents | da6937383da8 |
children |
rev | line source |
---|---|
Chris@0 | 1 /* DSSI ALSA compatibility library |
Chris@0 | 2 * |
Chris@0 | 3 * This library provides for Mac OS X the ALSA snd_seq_event_t handling |
Chris@0 | 4 * necessary to compile and run DSSI. It was extracted from alsa-lib 1.0.8. |
Chris@0 | 5 */ |
Chris@0 | 6 |
Chris@0 | 7 #include <stddef.h> |
Chris@0 | 8 |
Chris@0 | 9 #include <alsa/asoundef.h> |
Chris@0 | 10 #include <alsa/seq_event.h> |
Chris@0 | 11 #include <alsa/seq_midi_event.h> |
Chris@0 | 12 |