mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-09-21 19:23:38 +00:00
15 lines
297 B
C#
15 lines
297 B
C#
using AudioCore.Impl;
|
|
|
|
namespace AudioCore.Models;
|
|
|
|
public interface IAudioBlock : IDisposable
|
|
{
|
|
AudioBuffer<float> Buffer { get; }
|
|
int SampleRate { get; }
|
|
int Channels { get; }
|
|
long Position { get; }
|
|
int Frames { get; }
|
|
int Length { get; }
|
|
Span<float> Span { get; }
|
|
}
|