2018-02-10 17:33:22 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Text;
|
2018-03-23 19:26:26 -04:00
|
|
|
|
using Newtonsoft.Json;
|
2018-02-10 17:33:22 -05:00
|
|
|
|
|
|
|
|
|
|
namespace CUETools.Codecs.BDLPCM
|
|
|
|
|
|
{
|
2018-03-23 19:26:26 -04:00
|
|
|
|
[JsonObject(MemberSerialization.OptIn)]
|
|
|
|
|
|
public class BDLPCMDecoderSettings : AudioDecoderSettings
|
2018-02-10 17:33:22 -05:00
|
|
|
|
{
|
2018-03-23 19:26:26 -04:00
|
|
|
|
public BDLPCMDecoderSettings()
|
2018-02-10 17:33:22 -05:00
|
|
|
|
{
|
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
|
|
|
|
|
|
|
|
|
|
public bool IgnoreShortItems { get; set; }
|
|
|
|
|
|
|
2018-02-14 21:54:03 -05:00
|
|
|
|
public int? Stream { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public ushort? Pid { get; set; }
|
2018-02-10 17:33:22 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|