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

18 lines
333 B
C#
Raw Normal View History

2011-10-24 00:13:35 +00:00
namespace CUETools.Codecs
{
public interface IAudioSource
{
IAudioDecoderSettings Settings { get; }
2011-10-24 00:13:35 +00:00
AudioPCMConfig PCM { get; }
string Path { get; }
long Length { get; }
long Position { get; set; }
long Remaining { get; }
int Read(AudioBuffer buffer, int maxLength);
void Close();
}
}