mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move cuetools.net codec locally.
This commit is contained in:
14
Aaru.Compression/cuetools.net/CUETools.Codecs/IAudioDest.cs
Normal file
14
Aaru.Compression/cuetools.net/CUETools.Codecs/IAudioDest.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace CUETools.Codecs
|
||||
{
|
||||
public interface IAudioDest
|
||||
{
|
||||
IAudioEncoderSettings Settings { get; }
|
||||
|
||||
string Path { get; }
|
||||
long FinalSampleCount { set; }
|
||||
|
||||
void Write(AudioBuffer buffer);
|
||||
void Close();
|
||||
void Delete();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user