Files
cuetools.net/CUETools.Codecs.BDLPCM/BDLPCMReaderSettings.cs

25 lines
546 B
C#
Raw Normal View History

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-18 15:57:27 -05:00
[Browsable(false)]
public bool IgnoreShortItems { get; set; }
[Browsable(false)]
2018-02-14 21:54:03 -05:00
public int? Stream { get; set; }
[Browsable(false)]
public ushort? Pid { get; set; }
}
}