Experimental: this API is experimental and might be changed or removed in the future.

AudioSampleProvider.SampleFramesEventNativeFunction

Cambiar al Manual
public delegatevoid SampleFramesEventNativeFunction (IntPtr userData, uint providerId, uint sampleFrameCount);

Parámetros

userDataUser data specified when the handler was set. The actual C type is void*.
providerIdId of the provider. See AudioSampleProvider.id.
sampleFrameCountNumber of sample frames available or overflowed, depending on event type.

Descripción

Type that represents the native function pointer for handling sample frame events.

Sample frames events are AudioSampleProvider.sampleFramesAvailable and AudioSampleProvider.sampleFramesOverflow.

Importing such a function from a native plug-in would be done this way:

[DllImport(pluginName, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
private static extern void SampleFramesAvailable(IntPtr userData, uint id, uint sampleFrameCount);