mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
25 lines
546 B
C#
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; }
|
|
}
|
|
}
|