Files
cuetools.net/CUETools.Codecs/IAudioSource.cs

21 lines
392 B
C#

using System;
namespace CUETools.Codecs
{
public interface IAudioSource
{
IAudioDecoderSettings Settings { get; }
AudioPCMConfig PCM { get; }
string Path { get; }
TimeSpan Duration { get; }
long Length { get; }
long Position { get; set; }
long Remaining { get; }
int Read(AudioBuffer buffer, int maxLength);
void Close();
}
}