mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
16 lines
290 B
C#
16 lines
290 B
C#
namespace CUETools.Codecs
|
|
{
|
|
public interface IAudioDest
|
|
{
|
|
AudioPCMConfig PCM { get; }
|
|
string Path { get; }
|
|
|
|
AudioEncoderSettings Settings { get; set; }
|
|
long FinalSampleCount { set; }
|
|
|
|
void Write(AudioBuffer buffer);
|
|
void Close();
|
|
void Delete();
|
|
}
|
|
}
|