Files
cuetools.net/CUETools.Codecs.BDLPCM/BDLPCMReaderSettings.cs
2018-02-18 15:57:27 -05:00

25 lines
546 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace CUETools.Codecs.BDLPCM
{
public class BDLPCMReaderSettings : AudioDecoderSettings
{
public BDLPCMReaderSettings()
{
IgnoreShortItems = true;
}
[Browsable(false)]
public bool IgnoreShortItems { get; set; }
[Browsable(false)]
public int? Stream { get; set; }
[Browsable(false)]
public ushort? Pid { get; set; }
}
}