Files
cuetools.net/CUETools.Codecs/IAudioSource.cs
2011-10-24 00:13:35 +00:00

16 lines
282 B
C#

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