mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Refactoring of CUETools.Codecs.
This commit is contained in:
18
CUETools.Codecs/IAudioDest.cs
Normal file
18
CUETools.Codecs/IAudioDest.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user