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

15 lines
275 B
C#
Raw Permalink Normal View History

2011-10-24 00:13:35 +00:00
namespace CUETools.Codecs
{
public interface IAudioDest
{
IAudioEncoderSettings Settings { get; }
string Path { get; }
long FinalSampleCount { set; }
2011-10-24 00:13:35 +00:00
void Write(AudioBuffer buffer);
void Close();
void Delete();
}
}