mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add detection and media type for Ultra HD Blu-ray.
This commit is contained in:
@@ -179,6 +179,8 @@ namespace Aaru.CommonTypes
|
||||
BDRXL = 63,
|
||||
/// <summary>BD-RE XL</summary>
|
||||
BDREXL = 64,
|
||||
/// <summary>Ultra HD Blu-ray</summary>
|
||||
UHDBD = 65,
|
||||
#endregion Standard Blu-ray formats, types 60 to 69
|
||||
|
||||
#region Rare or uncommon optical standards, types 70 to 79
|
||||
|
||||
@@ -1027,6 +1027,7 @@ namespace Aaru.CommonTypes.Metadata
|
||||
case CommonTypes.MediaType.Pippin:
|
||||
case CommonTypes.MediaType.MilCD:
|
||||
case CommonTypes.MediaType.CVD:
|
||||
case CommonTypes.MediaType.UHDBD:
|
||||
dmns.Diameter = 120;
|
||||
dmns.DiameterSpecified = true;
|
||||
dmns.Thickness = 1.2;
|
||||
|
||||
@@ -72,6 +72,11 @@ namespace Aaru.CommonTypes.Metadata
|
||||
discType = "Blu-ray";
|
||||
discSubType = "BD-R XL";
|
||||
|
||||
break;
|
||||
case CommonTypes.MediaType.UHDBD:
|
||||
discType = "Blu-ray";
|
||||
discSubType = "Ultra HD Blu-ray";
|
||||
|
||||
break;
|
||||
case CommonTypes.MediaType.CBHD:
|
||||
discType = "Blu-ray";
|
||||
|
||||
Reference in New Issue
Block a user