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:
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
|
||||
namespace CUETools.Codecs.NULL
|
||||
{
|
||||
public class AudioEncoder : IAudioDest
|
||||
{
|
||||
IAudioEncoderSettings m_settings;
|
||||
|
||||
public AudioEncoder(string path, IAudioEncoderSettings settings)
|
||||
{
|
||||
m_settings = settings;
|
||||
}
|
||||
|
||||
public void Close()
|
||||
{
|
||||
}
|
||||
|
||||
public void Delete()
|
||||
{
|
||||
}
|
||||
|
||||
public long FinalSampleCount
|
||||
{
|
||||
set { }
|
||||
}
|
||||
|
||||
public IAudioEncoderSettings Settings => m_settings;
|
||||
|
||||
public void Write(AudioBuffer buff)
|
||||
{
|
||||
}
|
||||
|
||||
public string Path => null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user