Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Aaru.Server/Components/Admin/Pages/TestedMedia/Details.razor
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,7 @@
@RenderFeature(nameof(TestedMedia.CanReadF1_06LeadOut))
@RenderFeature(nameof(TestedMedia.SupportsHLDTSTReadRawDVD))
@RenderFeature(nameof(TestedMedia.SupportsLiteOnReadRawDVD))
@RenderFeature(nameof(TestedMedia.SupportsReadBuffer3CReadRawDVD))
@RenderFeature(nameof(TestedMedia.SupportsNECReadCDDA))
@RenderFeature(nameof(TestedMedia.SupportsPioneerReadCDDA))
@RenderFeature(nameof(TestedMedia.SupportsPioneerReadCDDAMSF))
Expand All @@ -486,6 +487,7 @@
@RenderDataLink(nameof(TestedMedia.PlextorReadRawDVDData))
@RenderDataLink(nameof(TestedMedia.HLDTSTReadRawDVDData))
@RenderDataLink(nameof(TestedMedia.LiteOnReadRawDVDData))
@RenderDataLink(nameof(TestedMedia.ReadBuffer3CReadRawDVDData))
</dl>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,10 @@ protected override async Task OnInitializedAsync()
case nameof(testedMedia.LiteOnReadRawDVDData):
buffer = testedMedia.LiteOnReadRawDVDData;

break;
case nameof(testedMedia.ReadBuffer3CReadRawDVDData):
buffer = testedMedia.ReadBuffer3CReadRawDVDData;

break;
case nameof(testedMedia.IdentifyData):
buffer = testedMedia.IdentifyData;
Expand Down
3 changes: 3 additions & 0 deletions Aaru.Server/Components/Pages/Report/View.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,9 @@ protected override async Task OnInitializedAsync()
if(report.SCSI.ReadCapabilities.SupportsLiteOnReadRawDVD == true)
readCapabilitiesList.Add("Device supports reading RAW DVD data using Lite-On READ BUFFER command");

if(report.SCSI.ReadCapabilities.SupportsReadBuffer3CReadRawDVD == true)
readCapabilitiesList.Add("Device supports reading RAW DVD data using READ BUFFER (3Ch) command");

if(readCapabilitiesList.Count > 0) ReadCapabilitiesList = readCapabilitiesList;
if(readCapabilitiesDictionary.Count > 0) ReadCapabilitiesDictionary = readCapabilitiesDictionary;
}
Expand Down
3 changes: 3 additions & 0 deletions Aaru.Server/Core/TestedMedia.cs
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,9 @@ public static void Report(List<CommonTypes.Metadata.TestedMedia> testedMedias,
if(testedMedia.SupportsLiteOnReadRawDVD == true)
list.Add("Device can use the Lite-On READ BUFFER (RAW) command with this medium");

if(testedMedia.SupportsReadBuffer3CReadRawDVD == true)
list.Add("Device can use the READ BUFFER (3Ch) command with this medium");

if(testedMedia.SupportsNECReadCDDA == true)
list.Add("Device can use the NEC vendor READ CD-DA command with this medium");

Expand Down