Hi folks,
can anyone tell what the 'audioapi' value (seen in .pdsettings) stands for ?
Thanx
Nau
Audioapi value
Hi folks,
can anyone tell what the 'audioapi' value (seen in .pdsettings) stands for ?
Thanx
Nau
The audioapi parameter corresponds to the OS audio API Pd is set to use. For example, Pd 0.43.4-extended offers in the Pd GUI window Media menu selection from [OSS, ALSA, portaudio, jack]. With jack selected, ~/.pdextended has the line
audioapi: 5
In the pd-extended source code header s_stuff.h :
#define API_NONE 0
#define API_ALSA 1
#define API_OSS 2
#define API_MMIO 3
#define API_PORTAUDIO 4
#define API_JACK 5
#define API_SGI 6
#define API_AUDIOUNIT 7
#define API_ESD 8
#define API_DUMMY 9
Thank you !
Oops! Looks like something went wrong!