mirror of
https://github.com/unclshura/ABStemPlayer.git
synced 2026-08-07 00:43:38 +00:00
13 lines
217 B
C#
13 lines
217 B
C#
namespace AudioCore.Interfaces;
|
|
|
|
public interface IStemDecoder : IDisposable
|
|
{
|
|
StemTrack Stem { get; }
|
|
|
|
bool TryDecodeNextBlock(out AudioBlock block);
|
|
|
|
void Seek(long samplePosition);
|
|
|
|
void Reset();
|
|
}
|