Add reader for DiscImageCreator DVD Raw dumps (#817)

This commit is contained in:
Rebecca Wallander
2023-08-22 16:27:52 +02:00
committed by GitHub
parent d1d9e0833e
commit ebf893e278
19 changed files with 798 additions and 95 deletions

View File

@@ -38,6 +38,12 @@ public sealed partial class ZZZRawImage
{
MediaType CalculateDiskType()
{
if(_rawDvd)
{
// TODO: Add all types
return MediaType.DVDROM;
}
if(_imageInfo.SectorSize == 2048)
return _imageInfo.Sectors switch
{