mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
15 lines
275 B
C#
15 lines
275 B
C#
namespace CUETools.Codecs
|
|
{
|
|
public interface IAudioDest
|
|
{
|
|
IAudioEncoderSettings Settings { get; }
|
|
|
|
string Path { get; }
|
|
long FinalSampleCount { set; }
|
|
|
|
void Write(AudioBuffer buffer);
|
|
void Close();
|
|
void Delete();
|
|
}
|
|
}
|