mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Add information about Lite-On READ BUFFER (RAW) support on device report page.
This commit is contained in:
@@ -589,6 +589,12 @@ public partial class View
|
||||
if(report.SCSI.ReadCapabilities.SupportsReadLong16 == true)
|
||||
readCapabilitiesList.Add("Device supports READ LONG (16) command.");
|
||||
|
||||
if(report.SCSI.ReadCapabilities.SupportsHLDTSTReadRawDVD == true)
|
||||
readCapabilitiesList.Add("Device supports reading RAW DVD data using HL-DT-ST vendor command");
|
||||
|
||||
if(report.SCSI.ReadCapabilities.SupportsLiteOnReadRawDVD == true)
|
||||
readCapabilitiesList.Add("Device supports reading RAW DVD data using Lite-On READ BUFFER command");
|
||||
|
||||
if(readCapabilitiesList.Count > 0) ReadCapabilitiesList = readCapabilitiesList;
|
||||
if(readCapabilitiesDictionary.Count > 0) ReadCapabilitiesDictionary = readCapabilitiesDictionary;
|
||||
}
|
||||
|
||||
@@ -272,6 +272,9 @@ public static class TestedMedia
|
||||
if(testedMedia.SupportsHLDTSTReadRawDVD == true)
|
||||
list.Add("Device can use the HL-DT-ST vendor READ DVD (RAW) command with this medium");
|
||||
|
||||
if(testedMedia.SupportsLiteOnReadRawDVD == true)
|
||||
list.Add("Device can use the Lite-On READ BUFFER (RAW) command with this medium");
|
||||
|
||||
if(testedMedia.SupportsNECReadCDDA == true)
|
||||
list.Add("Device can use the NEC vendor READ CD-DA command with this medium");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user