mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Code cleanup.
This commit is contained in:
@@ -1070,32 +1070,33 @@ namespace DiscImageChef.Decoders.DVD
|
||||
Array.Copy(response, 0, tmp2, 4, 2048);
|
||||
response = tmp2;
|
||||
}
|
||||
|
||||
|
||||
if(response.Length < 2052) return null;
|
||||
|
||||
PhysicalFormatInformation pfi = new PhysicalFormatInformation();
|
||||
byte[] tmp;
|
||||
byte[] tmp;
|
||||
|
||||
pfi.DataLength = (ushort)((response[0] << 8) + response[1]);
|
||||
pfi.Reserved1 = response[2];
|
||||
pfi.Reserved2 = response[3];
|
||||
pfi.Reserved1 = response[2];
|
||||
pfi.Reserved2 = response[3];
|
||||
|
||||
// Common
|
||||
pfi.DiskCategory = (DiskCategory)((response[4] & 0xF0) >> 4);
|
||||
pfi.PartVersion = (byte)(response[4] & 0x0F);
|
||||
pfi.DiscSize = (DVDSize)((response[5] & 0xF0) >> 4);
|
||||
pfi.MaximumRate = (MaximumRateField)(response[5] & 0x0F);
|
||||
pfi.Reserved3 |= (response[6] & 0x80) == 0x80;
|
||||
pfi.Layers = (byte)((response[6] & 0x60) >> 5);
|
||||
pfi.TrackPath |= (response[6] & 0x08) == 0x08;
|
||||
pfi.LayerType = (LayerTypeFieldMask)(response[6] & 0x07);
|
||||
pfi.LinearDensity = (LinearDensityField)((response[7] & 0xF0) >> 4);
|
||||
pfi.TrackDensity = (TrackDensityField)(response[7] & 0x0F);
|
||||
pfi.DiskCategory = (DiskCategory)((response[4] & 0xF0) >> 4);
|
||||
pfi.PartVersion = (byte)(response[4] & 0x0F);
|
||||
pfi.DiscSize = (DVDSize)((response[5] & 0xF0) >> 4);
|
||||
pfi.MaximumRate = (MaximumRateField)(response[5] & 0x0F);
|
||||
pfi.Reserved3 |= (response[6] & 0x80) == 0x80;
|
||||
pfi.Layers = (byte)((response[6] & 0x60) >> 5);
|
||||
pfi.TrackPath |= (response[6] & 0x08) == 0x08;
|
||||
pfi.LayerType = (LayerTypeFieldMask)(response[6] & 0x07);
|
||||
pfi.LinearDensity = (LinearDensityField)((response[7] & 0xF0) >> 4);
|
||||
pfi.TrackDensity = (TrackDensityField)(response[7] & 0x0F);
|
||||
pfi.DataAreaStartPSN =
|
||||
(uint)((response[8] << 24) + (response[9] << 16) + (response[10] << 8) + response[11]);
|
||||
pfi.DataAreaEndPSN =
|
||||
(uint)((response[12] << 24) + (response[13] << 16) + (response[14] << 8) + response[15]);
|
||||
pfi.Layer0EndPSN = (uint)((response[16] << 24) + (response[17] << 16) + (response[18] << 8) + response[19]);
|
||||
pfi.Layer0EndPSN =
|
||||
(uint)((response[16] << 24) + (response[17] << 16) + (response[18] << 8) + response[19]);
|
||||
pfi.BCA |= (response[20] & 0x80) == 0x80;
|
||||
|
||||
switch(pfi.DiskCategory)
|
||||
@@ -1110,97 +1111,98 @@ namespace DiscImageChef.Decoders.DVD
|
||||
|
||||
if(pfi.PartVersion == 1)
|
||||
{
|
||||
pfi.Velocity = response[52];
|
||||
pfi.ReadPower = response[53];
|
||||
pfi.PeakPower = response[54];
|
||||
pfi.BiasPower = response[55];
|
||||
pfi.FirstPulseStart = response[56];
|
||||
pfi.FirstPulseEnd = response[57];
|
||||
pfi.MultiPulseDuration = response[58];
|
||||
pfi.LastPulseStart = response[59];
|
||||
pfi.LastPulseEnd = response[60];
|
||||
pfi.BiasPowerDuration = response[61];
|
||||
pfi.PeakPowerGroove = response[62];
|
||||
pfi.BiasPowerGroove = response[63];
|
||||
pfi.FirstPulseStartGroove = response[64];
|
||||
pfi.FirstPulseEndGroove = response[65];
|
||||
pfi.Velocity = response[52];
|
||||
pfi.ReadPower = response[53];
|
||||
pfi.PeakPower = response[54];
|
||||
pfi.BiasPower = response[55];
|
||||
pfi.FirstPulseStart = response[56];
|
||||
pfi.FirstPulseEnd = response[57];
|
||||
pfi.MultiPulseDuration = response[58];
|
||||
pfi.LastPulseStart = response[59];
|
||||
pfi.LastPulseEnd = response[60];
|
||||
pfi.BiasPowerDuration = response[61];
|
||||
pfi.PeakPowerGroove = response[62];
|
||||
pfi.BiasPowerGroove = response[63];
|
||||
pfi.FirstPulseStartGroove = response[64];
|
||||
pfi.FirstPulseEndGroove = response[65];
|
||||
pfi.MultiplePulseDurationGroove = response[66];
|
||||
pfi.LastPulseStartGroove = response[67];
|
||||
pfi.LastPulseEndGroove = response[68];
|
||||
pfi.BiasPowerDurationGroove = response[69];
|
||||
pfi.LastPulseStartGroove = response[67];
|
||||
pfi.LastPulseEndGroove = response[68];
|
||||
pfi.BiasPowerDurationGroove = response[69];
|
||||
}
|
||||
else if(pfi.PartVersion == 6)
|
||||
{
|
||||
pfi.Velocity = response[504];
|
||||
pfi.ReadPower = response[505];
|
||||
pfi.Velocity = response[504];
|
||||
pfi.ReadPower = response[505];
|
||||
pfi.AdaptativeWritePulseControlFlag |= (response[506] & 0x80) == 0x80;
|
||||
pfi.PeakPower = response[507];
|
||||
pfi.BiasPower1 = response[508];
|
||||
pfi.BiasPower2 = response[509];
|
||||
pfi.BiasPower3 = response[510];
|
||||
pfi.PeakPowerGroove = response[511];
|
||||
pfi.BiasPower1Groove = response[512];
|
||||
pfi.BiasPower2Groove = response[513];
|
||||
pfi.BiasPower3Groove = response[514];
|
||||
pfi.FirstPulseEnd = response[515];
|
||||
pfi.FirstPulseDuration = response[516];
|
||||
pfi.MultiPulseDuration = response[518];
|
||||
pfi.LastPulseStart = response[519];
|
||||
pfi.BiasPower2Duration = response[520];
|
||||
pfi.FirstPulseStart3TSpace3T = response[521];
|
||||
pfi.FirstPulseStart4TSpace3T = response[522];
|
||||
pfi.FirstPulseStart5TSpace3T = response[523];
|
||||
pfi.FirstPulseStartSpace3T = response[524];
|
||||
pfi.FirstPulseStart3TSpace4T = response[525];
|
||||
pfi.FirstPulseStart4TSpace4T = response[526];
|
||||
pfi.FirstPulseStart5TSpace4T = response[527];
|
||||
pfi.FirstPulseStartSpace4T = response[528];
|
||||
pfi.FirstPulseStart3TSpace5T = response[529];
|
||||
pfi.FirstPulseStart4TSpace5T = response[530];
|
||||
pfi.FirstPulseStart5TSpace5T = response[531];
|
||||
pfi.FirstPulseStartSpace5T = response[532];
|
||||
pfi.FirstPulseStart3TSpace = response[533];
|
||||
pfi.FirstPulseStart4TSpace = response[534];
|
||||
pfi.FirstPulseStart5TSpace = response[535];
|
||||
pfi.FirstPulseStartSpace = response[536];
|
||||
pfi.FirstPulse3TStartTSpace3T = response[537];
|
||||
pfi.FirstPulse4TStartTSpace3T = response[538];
|
||||
pfi.FirstPulse5TStartTSpace3T = response[539];
|
||||
pfi.FirstPulseStartTSpace3T = response[540];
|
||||
pfi.FirstPulse3TStartTSpace4T = response[541];
|
||||
pfi.FirstPulse4TStartTSpace4T = response[542];
|
||||
pfi.FirstPulse5TStartTSpace4T = response[543];
|
||||
pfi.FirstPulseStartTSpace4T = response[544];
|
||||
pfi.FirstPulse3TStartTSpace5T = response[545];
|
||||
pfi.FirstPulse4TStartTSpace5T = response[546];
|
||||
pfi.FirstPulse5TStartTSpace5T = response[547];
|
||||
pfi.FirstPulseStartTSpace5T = response[548];
|
||||
pfi.FirstPulse3TStartTSpace = response[549];
|
||||
pfi.FirstPulse4TStartTSpace = response[550];
|
||||
pfi.FirstPulse5TStartTSpace = response[551];
|
||||
pfi.FirstPulseStartTSpace = response[552];
|
||||
tmp = new byte[48];
|
||||
pfi.PeakPower = response[507];
|
||||
pfi.BiasPower1 = response[508];
|
||||
pfi.BiasPower2 = response[509];
|
||||
pfi.BiasPower3 = response[510];
|
||||
pfi.PeakPowerGroove = response[511];
|
||||
pfi.BiasPower1Groove = response[512];
|
||||
pfi.BiasPower2Groove = response[513];
|
||||
pfi.BiasPower3Groove = response[514];
|
||||
pfi.FirstPulseEnd = response[515];
|
||||
pfi.FirstPulseDuration = response[516];
|
||||
pfi.MultiPulseDuration = response[518];
|
||||
pfi.LastPulseStart = response[519];
|
||||
pfi.BiasPower2Duration = response[520];
|
||||
pfi.FirstPulseStart3TSpace3T = response[521];
|
||||
pfi.FirstPulseStart4TSpace3T = response[522];
|
||||
pfi.FirstPulseStart5TSpace3T = response[523];
|
||||
pfi.FirstPulseStartSpace3T = response[524];
|
||||
pfi.FirstPulseStart3TSpace4T = response[525];
|
||||
pfi.FirstPulseStart4TSpace4T = response[526];
|
||||
pfi.FirstPulseStart5TSpace4T = response[527];
|
||||
pfi.FirstPulseStartSpace4T = response[528];
|
||||
pfi.FirstPulseStart3TSpace5T = response[529];
|
||||
pfi.FirstPulseStart4TSpace5T = response[530];
|
||||
pfi.FirstPulseStart5TSpace5T = response[531];
|
||||
pfi.FirstPulseStartSpace5T = response[532];
|
||||
pfi.FirstPulseStart3TSpace = response[533];
|
||||
pfi.FirstPulseStart4TSpace = response[534];
|
||||
pfi.FirstPulseStart5TSpace = response[535];
|
||||
pfi.FirstPulseStartSpace = response[536];
|
||||
pfi.FirstPulse3TStartTSpace3T = response[537];
|
||||
pfi.FirstPulse4TStartTSpace3T = response[538];
|
||||
pfi.FirstPulse5TStartTSpace3T = response[539];
|
||||
pfi.FirstPulseStartTSpace3T = response[540];
|
||||
pfi.FirstPulse3TStartTSpace4T = response[541];
|
||||
pfi.FirstPulse4TStartTSpace4T = response[542];
|
||||
pfi.FirstPulse5TStartTSpace4T = response[543];
|
||||
pfi.FirstPulseStartTSpace4T = response[544];
|
||||
pfi.FirstPulse3TStartTSpace5T = response[545];
|
||||
pfi.FirstPulse4TStartTSpace5T = response[546];
|
||||
pfi.FirstPulse5TStartTSpace5T = response[547];
|
||||
pfi.FirstPulseStartTSpace5T = response[548];
|
||||
pfi.FirstPulse3TStartTSpace = response[549];
|
||||
pfi.FirstPulse4TStartTSpace = response[550];
|
||||
pfi.FirstPulse5TStartTSpace = response[551];
|
||||
pfi.FirstPulseStartTSpace = response[552];
|
||||
tmp = new byte[48];
|
||||
Array.Copy(response, 553, tmp, 0, 48);
|
||||
pfi.DiskManufacturer = StringHandlers.SpacePaddedToString(tmp);
|
||||
tmp = new byte[16];
|
||||
tmp = new byte[16];
|
||||
Array.Copy(response, 601, tmp, 0, 16);
|
||||
pfi.DiskManufacturerSupplementary = StringHandlers.SpacePaddedToString(tmp);
|
||||
pfi.WritePowerControlParams = new byte[2];
|
||||
pfi.WritePowerControlParams[0] = response[617];
|
||||
pfi.WritePowerControlParams[1] = response[618];
|
||||
pfi.PowerRatioLandThreshold = response[619];
|
||||
pfi.TargetAsymmetry = response[620];
|
||||
pfi.TemporaryPeakPower = response[621];
|
||||
pfi.TemporaryBiasPower1 = response[622];
|
||||
pfi.TemporaryBiasPower2 = response[623];
|
||||
pfi.TemporaryBiasPower3 = response[624];
|
||||
pfi.PowerRatioGrooveThreshold = response[625];
|
||||
pfi.PowerRatioLandThreshold6T = response[626];
|
||||
pfi.PowerRatioGrooveThreshold6T = response[627];
|
||||
pfi.WritePowerControlParams = new byte[2];
|
||||
pfi.WritePowerControlParams[0] = response[617];
|
||||
pfi.WritePowerControlParams[1] = response[618];
|
||||
pfi.PowerRatioLandThreshold = response[619];
|
||||
pfi.TargetAsymmetry = response[620];
|
||||
pfi.TemporaryPeakPower = response[621];
|
||||
pfi.TemporaryBiasPower1 = response[622];
|
||||
pfi.TemporaryBiasPower2 = response[623];
|
||||
pfi.TemporaryBiasPower3 = response[624];
|
||||
pfi.PowerRatioGrooveThreshold = response[625];
|
||||
pfi.PowerRatioLandThreshold6T = response[626];
|
||||
pfi.PowerRatioGrooveThreshold6T = response[627];
|
||||
}
|
||||
|
||||
break;
|
||||
// DVD-R and DVD-RW
|
||||
case DiskCategory.DVDR when pfi.PartVersion < 6:
|
||||
case DiskCategory.DVDR when pfi.PartVersion < 6:
|
||||
case DiskCategory.DVDRW when pfi.PartVersion < 3:
|
||||
pfi.CurrentBorderOutSector =
|
||||
(uint)((response[36] << 24) + (response[37] << 16) + (response[38] << 8) + response[39]);
|
||||
@@ -1209,39 +1211,39 @@ namespace DiscImageChef.Decoders.DVD
|
||||
break;
|
||||
// DVD+RW
|
||||
case DiskCategory.DVDPRW:
|
||||
pfi.RecordingVelocity = response[36];
|
||||
pfi.RecordingVelocity = response[36];
|
||||
pfi.ReadPowerMaxVelocity = response[37];
|
||||
pfi.PIndMaxVelocity = response[38];
|
||||
pfi.PMaxVelocity = response[39];
|
||||
pfi.E1MaxVelocity = response[40];
|
||||
pfi.E2MaxVelocity = response[41];
|
||||
pfi.YTargetMaxVelocity = response[42];
|
||||
pfi.PIndMaxVelocity = response[38];
|
||||
pfi.PMaxVelocity = response[39];
|
||||
pfi.E1MaxVelocity = response[40];
|
||||
pfi.E2MaxVelocity = response[41];
|
||||
pfi.YTargetMaxVelocity = response[42];
|
||||
pfi.ReadPowerRefVelocity = response[43];
|
||||
pfi.PIndRefVelocity = response[44];
|
||||
pfi.PRefVelocity = response[45];
|
||||
pfi.E1RefVelocity = response[46];
|
||||
pfi.E2RefVelocity = response[47];
|
||||
pfi.YTargetRefVelocity = response[48];
|
||||
pfi.PIndRefVelocity = response[44];
|
||||
pfi.PRefVelocity = response[45];
|
||||
pfi.E1RefVelocity = response[46];
|
||||
pfi.E2RefVelocity = response[47];
|
||||
pfi.YTargetRefVelocity = response[48];
|
||||
pfi.ReadPowerMinVelocity = response[49];
|
||||
pfi.PIndMinVelocity = response[50];
|
||||
pfi.PMinVelocity = response[51];
|
||||
pfi.E1MinVelocity = response[52];
|
||||
pfi.E2MinVelocity = response[53];
|
||||
pfi.YTargetMinVelocity = response[54];
|
||||
pfi.PIndMinVelocity = response[50];
|
||||
pfi.PMinVelocity = response[51];
|
||||
pfi.E1MinVelocity = response[52];
|
||||
pfi.E2MinVelocity = response[53];
|
||||
pfi.YTargetMinVelocity = response[54];
|
||||
break;
|
||||
}
|
||||
|
||||
// DVD+R, DVD+RW, DVD+R DL and DVD+RW DL
|
||||
if(pfi.DiskCategory == DiskCategory.DVDPR || pfi.DiskCategory == DiskCategory.DVDPRW ||
|
||||
if(pfi.DiskCategory == DiskCategory.DVDPR || pfi.DiskCategory == DiskCategory.DVDPRW ||
|
||||
pfi.DiskCategory == DiskCategory.DVDPRDL || pfi.DiskCategory == DiskCategory.DVDPRWDL)
|
||||
{
|
||||
pfi.VCPS |= (response[20] & 0x40) == 0x40;
|
||||
pfi.ApplicationCode = response[21];
|
||||
pfi.ExtendedInformation = response[22];
|
||||
tmp = new byte[8];
|
||||
pfi.VCPS |= (response[20] & 0x40) == 0x40;
|
||||
pfi.ApplicationCode = response[21];
|
||||
pfi.ExtendedInformation = response[22];
|
||||
tmp = new byte[8];
|
||||
Array.Copy(response, 23, tmp, 0, 8);
|
||||
pfi.DiskManufacturerID = StringHandlers.CToString(tmp);
|
||||
tmp = new byte[3];
|
||||
tmp = new byte[3];
|
||||
Array.Copy(response, 31, tmp, 0, 3);
|
||||
pfi.MediaTypeID = StringHandlers.CToString(tmp);
|
||||
pfi.ProductRevision =
|
||||
@@ -1253,39 +1255,39 @@ namespace DiscImageChef.Decoders.DVD
|
||||
{
|
||||
// DVD+RW
|
||||
case DiskCategory.DVDPRW when pfi.PartVersion == 2:
|
||||
pfi.TopFirstPulseDuration = response[55];
|
||||
pfi.MultiPulseDuration = response[56];
|
||||
pfi.FirstPulseLeadTime = response[57];
|
||||
pfi.TopFirstPulseDuration = response[55];
|
||||
pfi.MultiPulseDuration = response[56];
|
||||
pfi.FirstPulseLeadTime = response[57];
|
||||
pfi.EraseLeadTimeRefVelocity = response[58];
|
||||
pfi.EraseLeadTimeUppVelocity = response[59];
|
||||
break;
|
||||
// DVD+R and DVD+R DL
|
||||
case DiskCategory.DVDPR:
|
||||
case DiskCategory.DVDPRDL:
|
||||
pfi.PrimaryVelocity = response[36];
|
||||
pfi.UpperVelocity = response[37];
|
||||
pfi.Wavelength = response[38];
|
||||
pfi.NormalizedPowerDependency = response[39];
|
||||
pfi.MaximumPowerAtPrimaryVelocity = response[40];
|
||||
pfi.PindAtPrimaryVelocity = response[41];
|
||||
pfi.BtargetAtPrimaryVelocity = response[42];
|
||||
pfi.MaximumPowerAtUpperVelocity = response[43];
|
||||
pfi.PindAtUpperVelocity = response[44];
|
||||
pfi.BtargetAtUpperVelocity = response[45];
|
||||
pfi.FirstPulseDuration4TPrimaryVelocity = response[46];
|
||||
pfi.FirstPulseDuration3TPrimaryVelocity = response[47];
|
||||
pfi.MultiPulseDurationPrimaryVelocity = response[48];
|
||||
pfi.LastPulseDurationPrimaryVelocity = response[49];
|
||||
pfi.FirstPulseLeadTime4TPrimaryVelocity = response[50];
|
||||
pfi.FirstPulseLeadTime3TPrimaryVelocity = response[51];
|
||||
pfi.PrimaryVelocity = response[36];
|
||||
pfi.UpperVelocity = response[37];
|
||||
pfi.Wavelength = response[38];
|
||||
pfi.NormalizedPowerDependency = response[39];
|
||||
pfi.MaximumPowerAtPrimaryVelocity = response[40];
|
||||
pfi.PindAtPrimaryVelocity = response[41];
|
||||
pfi.BtargetAtPrimaryVelocity = response[42];
|
||||
pfi.MaximumPowerAtUpperVelocity = response[43];
|
||||
pfi.PindAtUpperVelocity = response[44];
|
||||
pfi.BtargetAtUpperVelocity = response[45];
|
||||
pfi.FirstPulseDuration4TPrimaryVelocity = response[46];
|
||||
pfi.FirstPulseDuration3TPrimaryVelocity = response[47];
|
||||
pfi.MultiPulseDurationPrimaryVelocity = response[48];
|
||||
pfi.LastPulseDurationPrimaryVelocity = response[49];
|
||||
pfi.FirstPulseLeadTime4TPrimaryVelocity = response[50];
|
||||
pfi.FirstPulseLeadTime3TPrimaryVelocity = response[51];
|
||||
pfi.FirstPulseLeadingEdgePrimaryVelocity = response[52];
|
||||
pfi.FirstPulseDuration4TUpperVelocity = response[53];
|
||||
pfi.FirstPulseDuration3TUpperVelocity = response[54];
|
||||
pfi.MultiPulseDurationUpperVelocity = response[55];
|
||||
pfi.LastPulseDurationUpperVelocity = response[56];
|
||||
pfi.FirstPulseLeadTime4TUpperVelocity = response[57];
|
||||
pfi.FirstPulseLeadTime3TUpperVelocity = response[58];
|
||||
pfi.FirstPulseLeadingEdgeUpperVelocity = response[59];
|
||||
pfi.FirstPulseDuration4TUpperVelocity = response[53];
|
||||
pfi.FirstPulseDuration3TUpperVelocity = response[54];
|
||||
pfi.MultiPulseDurationUpperVelocity = response[55];
|
||||
pfi.LastPulseDurationUpperVelocity = response[56];
|
||||
pfi.FirstPulseLeadTime4TUpperVelocity = response[57];
|
||||
pfi.FirstPulseLeadTime3TUpperVelocity = response[58];
|
||||
pfi.FirstPulseLeadingEdgeUpperVelocity = response[59];
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -1297,48 +1299,48 @@ namespace DiscImageChef.Decoders.DVD
|
||||
break;
|
||||
// DVD+RW DL
|
||||
case DiskCategory.DVDPRWDL:
|
||||
pfi.BasicPrimaryVelocity = response[36];
|
||||
pfi.BasicPrimaryVelocity = response[36];
|
||||
pfi.MaxReadPowerPrimaryVelocity = response[37];
|
||||
pfi.PindPrimaryVelocity = response[38];
|
||||
pfi.PPrimaryVelocity = response[39];
|
||||
pfi.E1PrimaryVelocity = response[40];
|
||||
pfi.E2PrimaryVelocity = response[41];
|
||||
pfi.YtargetPrimaryVelocity = response[42];
|
||||
pfi.BOptimumPrimaryVelocity = response[43];
|
||||
pfi.TFirstPulseDuration = response[46];
|
||||
pfi.TMultiPulseDuration = response[47];
|
||||
pfi.FirstPulseLeadTimeAnyRun = response[48];
|
||||
pfi.FirstPulseLeadTimeRun3T = response[49];
|
||||
pfi.LastPulseLeadTimeAnyRun = response[50];
|
||||
pfi.LastPulseLeadTime3T = response[51];
|
||||
pfi.LastPulseLeadTime4T = response[52];
|
||||
pfi.ErasePulseLeadTimeAny = response[53];
|
||||
pfi.ErasePulseLeadTime3T = response[54];
|
||||
pfi.ErasePulseLeadTime4T = response[55];
|
||||
pfi.PindPrimaryVelocity = response[38];
|
||||
pfi.PPrimaryVelocity = response[39];
|
||||
pfi.E1PrimaryVelocity = response[40];
|
||||
pfi.E2PrimaryVelocity = response[41];
|
||||
pfi.YtargetPrimaryVelocity = response[42];
|
||||
pfi.BOptimumPrimaryVelocity = response[43];
|
||||
pfi.TFirstPulseDuration = response[46];
|
||||
pfi.TMultiPulseDuration = response[47];
|
||||
pfi.FirstPulseLeadTimeAnyRun = response[48];
|
||||
pfi.FirstPulseLeadTimeRun3T = response[49];
|
||||
pfi.LastPulseLeadTimeAnyRun = response[50];
|
||||
pfi.LastPulseLeadTime3T = response[51];
|
||||
pfi.LastPulseLeadTime4T = response[52];
|
||||
pfi.ErasePulseLeadTimeAny = response[53];
|
||||
pfi.ErasePulseLeadTime3T = response[54];
|
||||
pfi.ErasePulseLeadTime4T = response[55];
|
||||
break;
|
||||
// DVD-R DL and DVD-RW DL
|
||||
case DiskCategory.DVDR when pfi.PartVersion == 6:
|
||||
case DiskCategory.DVDR when pfi.PartVersion == 6:
|
||||
case DiskCategory.DVDRW when pfi.PartVersion == 3:
|
||||
pfi.MaxRecordingSpeed = (DVDRecordingSpeed)response[21];
|
||||
pfi.MinRecordingSpeed = (DVDRecordingSpeed)response[22];
|
||||
pfi.RecordingSpeed1 = (DVDRecordingSpeed)response[23];
|
||||
pfi.RecordingSpeed2 = (DVDRecordingSpeed)response[24];
|
||||
pfi.RecordingSpeed3 = (DVDRecordingSpeed)response[25];
|
||||
pfi.RecordingSpeed4 = (DVDRecordingSpeed)response[26];
|
||||
pfi.RecordingSpeed5 = (DVDRecordingSpeed)response[27];
|
||||
pfi.RecordingSpeed6 = (DVDRecordingSpeed)response[28];
|
||||
pfi.RecordingSpeed7 = (DVDRecordingSpeed)response[29];
|
||||
pfi.Class = response[30];
|
||||
pfi.ExtendedVersion = response[31];
|
||||
pfi.RecordingSpeed1 = (DVDRecordingSpeed)response[23];
|
||||
pfi.RecordingSpeed2 = (DVDRecordingSpeed)response[24];
|
||||
pfi.RecordingSpeed3 = (DVDRecordingSpeed)response[25];
|
||||
pfi.RecordingSpeed4 = (DVDRecordingSpeed)response[26];
|
||||
pfi.RecordingSpeed5 = (DVDRecordingSpeed)response[27];
|
||||
pfi.RecordingSpeed6 = (DVDRecordingSpeed)response[28];
|
||||
pfi.RecordingSpeed7 = (DVDRecordingSpeed)response[29];
|
||||
pfi.Class = response[30];
|
||||
pfi.ExtendedVersion = response[31];
|
||||
pfi.CurrentBorderOutSector =
|
||||
(uint)((response[36] << 24) + (response[37] << 16) + (response[38] << 8) + response[39]);
|
||||
pfi.NextBorderInSector =
|
||||
(uint)((response[40] << 24) + (response[41] << 16) + (response[42] << 8) + response[43]);
|
||||
pfi.PreRecordedControlDataInv |= (response[44] & 0x01) == 0x01;
|
||||
pfi.PreRecordedLeadIn |= (response[44] & 0x02) == 0x02;
|
||||
pfi.PreRecordedLeadOut |= (response[44] & 0x08) == 0x08;
|
||||
pfi.ARCharLayer1 = (byte)(response[45] & 0x0F);
|
||||
pfi.TrackPolarityLayer1 = (byte)((response[45] & 0xF0) >> 4);
|
||||
pfi.PreRecordedControlDataInv |= (response[44] & 0x01) == 0x01;
|
||||
pfi.PreRecordedLeadIn |= (response[44] & 0x02) == 0x02;
|
||||
pfi.PreRecordedLeadOut |= (response[44] & 0x08) == 0x08;
|
||||
pfi.ARCharLayer1 = (byte)(response[45] & 0x0F);
|
||||
pfi.TrackPolarityLayer1 = (byte)((response[45] & 0xF0) >> 4);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -1350,7 +1352,7 @@ namespace DiscImageChef.Decoders.DVD
|
||||
if(pfi == null) return null;
|
||||
|
||||
PhysicalFormatInformation decoded = pfi.Value;
|
||||
StringBuilder sb = new StringBuilder();
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
string sizeString;
|
||||
switch(decoded.DiscSize)
|
||||
@@ -1541,7 +1543,7 @@ namespace DiscImageChef.Decoders.DVD
|
||||
}
|
||||
|
||||
sb.AppendFormat("Disc has {0} layers", decoded.Layers + 1).AppendLine();
|
||||
if(decoded.TrackPath && decoded.Layers == 1) sb.AppendLine("Layers are in parallel track path");
|
||||
if(decoded.TrackPath && decoded.Layers == 1) sb.AppendLine("Layers are in parallel track path");
|
||||
else if(!decoded.TrackPath && decoded.Layers == 1) sb.AppendLine("Layers are in opposite track path");
|
||||
|
||||
switch(decoded.LinearDensity)
|
||||
@@ -1602,7 +1604,8 @@ namespace DiscImageChef.Decoders.DVD
|
||||
if(decoded.Layers == 1 && !decoded.TrackPath)
|
||||
sb.AppendFormat("Layer 0 ends at PSN {0:X}h", decoded.Layer0EndPSN).AppendLine();
|
||||
}
|
||||
else sb.AppendLine("Disc is empty");
|
||||
else
|
||||
sb.AppendLine("Disc is empty");
|
||||
else sb.AppendLine("Disc is empty");
|
||||
|
||||
if(decoded.BCA) sb.AppendLine("Disc has a burst cutting area");
|
||||
@@ -1632,8 +1635,9 @@ namespace DiscImageChef.Decoders.DVD
|
||||
sb.AppendFormat("Disc manufacturer supplementary information is {0}",
|
||||
decoded.DiskManufacturerSupplementary).AppendLine();
|
||||
}
|
||||
|
||||
break;
|
||||
case DiskCategory.DVDR when decoded.PartVersion < 6:
|
||||
case DiskCategory.DVDR when decoded.PartVersion < 6:
|
||||
case DiskCategory.DVDRW when decoded.PartVersion < 3:
|
||||
sb.AppendFormat("Current Border-Out first sector is PSN {0:X}h", decoded.CurrentBorderOutSector)
|
||||
.AppendLine();
|
||||
@@ -1652,7 +1656,7 @@ namespace DiscImageChef.Decoders.DVD
|
||||
break;
|
||||
}
|
||||
|
||||
if((decoded.DiskCategory != DiskCategory.DVDR || decoded.PartVersion < 6) &&
|
||||
if((decoded.DiskCategory != DiskCategory.DVDR || decoded.PartVersion < 6) &&
|
||||
(decoded.DiskCategory != DiskCategory.DVDRW || decoded.PartVersion < 3)) return sb.ToString();
|
||||
|
||||
sb.AppendFormat("Current RMD in extra Border zone starts at PSN {0:X}h", decoded.CurrentRMDExtraBorderPSN)
|
||||
|
||||
Reference in New Issue
Block a user