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