2018-02-10 17:33:22 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CUETools.Codecs.BDLPCM
|
|
|
|
|
|
{
|
|
|
|
|
|
public class BDLPCMReaderSettings : AudioDecoderSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public BDLPCMReaderSettings()
|
|
|
|
|
|
{
|
2018-02-18 15:57:27 -05:00
|
|
|
|
IgnoreShortItems = true;
|
2018-02-10 17:33:22 -05:00
|
|
|
|
}
|
2018-02-18 15:57:27 -05:00
|
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
|
public bool IgnoreShortItems { get; set; }
|
|
|
|
|
|
|
2018-02-10 17:33:22 -05:00
|
|
|
|
[Browsable(false)]
|
2018-02-14 21:54:03 -05:00
|
|
|
|
public int? Stream { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[Browsable(false)]
|
|
|
|
|
|
public ushort? Pid { get; set; }
|
2018-02-10 17:33:22 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|