mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add support for PD650 media.
This commit is contained in:
@@ -1542,7 +1542,12 @@ namespace DiscImageChef.CommonTypes
|
||||
{
|
||||
switch(mediumType)
|
||||
{
|
||||
case 0x00: return MediaType.CD;
|
||||
case 0x00:
|
||||
return blockSize == 512
|
||||
? blocks == 1281856
|
||||
? MediaType.PD650_WORM
|
||||
: MediaType.PD650
|
||||
: MediaType.CD;
|
||||
case 0x01:
|
||||
case 0x05: return MediaType.CDROM;
|
||||
case 0x02:
|
||||
|
||||
Reference in New Issue
Block a user