static void |
Pa.AbortStream(long stream) |
Terminates audio processing immediately without waiting for pending
buffers to complete.
|
static void |
Pa.CloseStream(long stream) |
Closes an audio stream.
|
static int |
Pa.GetDeviceCount() |
Retrieve the number of available devices.
|
static long |
Pa.OpenStream(long inputParameters,
long outputParameters,
double sampleRate,
long framesPerBuffer,
long streamFlags,
PortAudioStreamCallback streamCallback) |
Opens a stream for either input, output or both.
|
static void |
Pa.ReadStream(long stream,
byte[] buffer,
long frames) |
Read samples from an input stream.
|
static void |
Pa.StartStream(long stream) |
Commences audio processing.
|
static void |
Pa.StopStream(long stream) |
Terminates audio processing.
|
static void |
Pa.WriteStream(long stream,
byte[] buffer,
int offset,
long frames,
int numberOfWrites) |
Writes samples to an output stream.
|
static void |
Pa.WriteStream(long stream,
byte[] buffer,
long frames) |
Write samples to an output stream.
|