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

15 lines
274 B
C#
Raw Normal View History

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