Files
cuetools.net/CUETools.Codecs/IAudioSource.cs
Grigory Chudov 8cedc982a6 Cuetools.Converter.exe: support for --decoder-option parameter.
Implemented "Stream" option in BDLPCM Reader to make it possible to select
the right stream in m2ts file.
2018-02-10 17:33:22 -05:00

18 lines
332 B
C#

namespace CUETools.Codecs
{
public interface IAudioSource
{
AudioDecoderSettings Settings { get; }
AudioPCMConfig PCM { get; }
string Path { get; }
long Length { get; }
long Position { get; set; }
long Remaining { get; }
int Read(AudioBuffer buffer, int maxLength);
void Close();
}
}