[PR #866] [MERGED] Read Lite-On raw DVD buffer #1170

Open
opened 2026-01-29 15:43:05 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/aaru-dps/Aaru/pull/866
Author: @FakeShemp
Created: 4/6/2025
Status: Merged
Merged: 4/24/2025
Merged by: @claunia

Base: develHead: fakeshemp/liteon-raw-dvd-2


📝 Commits (1)

  • 1ab023b Read Lite-On raw DVD buffer

📊 Changes

17 files changed (+3218 additions, -6635 deletions)

View changed files

📝 Aaru.CommonTypes/Metadata/DeviceReport.cs (+6 -0)
📝 Aaru.Core/Devices/Dumping/Sbc/Cache.cs (+1 -1)
📝 Aaru.Core/Devices/Dumping/Sbc/Dump.cs (+21 -6)
📝 Aaru.Core/Devices/Dumping/Sbc/Error.cs (+46 -2)
📝 Aaru.Core/Devices/Dumping/Sbc/Trim.cs (+57 -2)
📝 Aaru.Core/Devices/ReaderSCSI.cs (+34 -22)
📝 Aaru.Core/Devices/Report/MMC.cs (+22 -18)
📝 Aaru.Devices/Device/ScsiCommands/HL-DT-ST.cs (+59 -5)
Aaru.Devices/Device/ScsiCommands/LiteOn.cs (+303 -0)
📝 Aaru.Devices/Device/ScsiCommands/Plextor.cs (+3 -3)
📝 Aaru.Devices/Localization/Localization.Designer.cs (+343 -825)
📝 Aaru.Devices/Localization/Localization.resx (+3 -0)
📝 Aaru.Images/AaruFormat/Enums.cs (+5 -1)
📝 Aaru.Localization/Core.Designer.cs (+2298 -5745)
📝 Aaru.Localization/Core.resx (+8 -2)
📝 Aaru.Tests.Devices/SCSI/HL-DT-ST.cs (+3 -1)
📝 Aaru/Commands/Device/DeviceReport.cs (+6 -2)

📄 Description

Add the ability to read raw DVD sectors from Lite-On drives via vendor commands. This is by far the fastest way of reading DVD title keys available. You can read an entire double layer DVD in about an hour.

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • New filesystem, test images in [url]
  • New media image, test images in [url]
  • New partition scheme, test images in [url]
  • Breaking change (fix or feature that would cause existing functionality to change)
  • I have read the CONTRIBUTING document.
  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/aaru-dps/Aaru/pull/866 **Author:** [@FakeShemp](https://github.com/FakeShemp) **Created:** 4/6/2025 **Status:** ✅ Merged **Merged:** 4/24/2025 **Merged by:** [@claunia](https://github.com/claunia) **Base:** `devel` ← **Head:** `fakeshemp/liteon-raw-dvd-2` --- ### 📝 Commits (1) - [`1ab023b`](https://github.com/aaru-dps/Aaru/commit/1ab023bbc65b22fdf1573d7b6164a927b733e1ef) Read Lite-On raw DVD buffer ### 📊 Changes **17 files changed** (+3218 additions, -6635 deletions) <details> <summary>View changed files</summary> 📝 `Aaru.CommonTypes/Metadata/DeviceReport.cs` (+6 -0) 📝 `Aaru.Core/Devices/Dumping/Sbc/Cache.cs` (+1 -1) 📝 `Aaru.Core/Devices/Dumping/Sbc/Dump.cs` (+21 -6) 📝 `Aaru.Core/Devices/Dumping/Sbc/Error.cs` (+46 -2) 📝 `Aaru.Core/Devices/Dumping/Sbc/Trim.cs` (+57 -2) 📝 `Aaru.Core/Devices/ReaderSCSI.cs` (+34 -22) 📝 `Aaru.Core/Devices/Report/MMC.cs` (+22 -18) 📝 `Aaru.Devices/Device/ScsiCommands/HL-DT-ST.cs` (+59 -5) ➕ `Aaru.Devices/Device/ScsiCommands/LiteOn.cs` (+303 -0) 📝 `Aaru.Devices/Device/ScsiCommands/Plextor.cs` (+3 -3) 📝 `Aaru.Devices/Localization/Localization.Designer.cs` (+343 -825) 📝 `Aaru.Devices/Localization/Localization.resx` (+3 -0) 📝 `Aaru.Images/AaruFormat/Enums.cs` (+5 -1) 📝 `Aaru.Localization/Core.Designer.cs` (+2298 -5745) 📝 `Aaru.Localization/Core.resx` (+8 -2) 📝 `Aaru.Tests.Devices/SCSI/HL-DT-ST.cs` (+3 -1) 📝 `Aaru/Commands/Device/DeviceReport.cs` (+6 -2) </details> ### 📄 Description Add the ability to read raw DVD sectors from Lite-On drives via vendor commands. This is by far the fastest way of reading DVD title keys available. You can read an entire double layer DVD in about an hour. ## Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [X] Bug fix (non-breaking change which fixes an issue) - [X] New feature (non-breaking change which adds functionality) - [ ] New filesystem, test images in [url] - [ ] New media image, test images in [url] - [ ] New partition scheme, test images in [url] - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [X] I have read the **CONTRIBUTING** document. - [X] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:43:05 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: aaru-dps/Aaru-aaru-dps#1170