mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
32 lines
727 B
C#
32 lines
727 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace CUETools.Codecs.MPLS
|
|
{
|
|
[JsonObject(MemberSerialization.OptIn)]
|
|
public class DecoderSettings : AudioDecoderSettings
|
|
{
|
|
public override string Extension => "mpls";
|
|
|
|
public override string Name => "cuetools";
|
|
|
|
public override Type DecoderType => typeof(BDLPCM.MPLSDecoder);
|
|
|
|
public override int Priority => 2;
|
|
|
|
public bool IgnoreShortItems { get; set; }
|
|
|
|
public int? Stream { get; set; }
|
|
|
|
public ushort? Pid { get; set; }
|
|
|
|
public DecoderSettings() : base()
|
|
{
|
|
IgnoreShortItems = true;
|
|
}
|
|
}
|
|
}
|