mirror of
https://github.com/DarthAffe/KeyboardAudioVisualizer.git
synced 2025-12-12 23:28:30 +00:00
16 lines
302 B
C#
16 lines
302 B
C#
using System;
|
|
|
|
namespace KeyboardAudioVisualizer.AudioCapture
|
|
{
|
|
public delegate void AudioData(float[] data, int offset, int count);
|
|
|
|
public interface IAudioInput : IDisposable
|
|
{
|
|
int SampleRate { get; }
|
|
|
|
event AudioData DataAvailable;
|
|
|
|
void Initialize();
|
|
}
|
|
}
|