mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Implemented "Stream" option in BDLPCM Reader to make it possible to select the right stream in m2ts file.
18 lines
332 B
C#
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();
|
|
}
|
|
}
|