eac3to gui: audio extraction working

This commit is contained in:
Grigory Chudov
2018-02-24 11:32:35 -05:00
parent 4cf2420c46
commit 43218230eb
4 changed files with 218 additions and 68 deletions

View File

@@ -9,6 +9,12 @@ namespace CUETools.Codecs.BDLPCM
[AudioDecoderClass("cuetools", "mpls", 2)]
public class MPLSReader : IAudioSource
{
public unsafe MPLSReader(string path, Stream IO, ushort pid)
: this(path, IO)
{
settings.Pid = pid;
}
public unsafe MPLSReader(string path, Stream IO)
{
settings = new BDLPCMReaderSettings();