mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Decode 2048-bytes PFI.
This commit is contained in:
@@ -1064,6 +1064,13 @@ namespace DiscImageChef.Decoders.DVD
|
||||
{
|
||||
if(response == null) return null;
|
||||
|
||||
if(response.Length == 2048)
|
||||
{
|
||||
byte[] tmp2 = new byte[2052];
|
||||
Array.Copy(response, 0, tmp2, 4, 2048);
|
||||
response = tmp2;
|
||||
}
|
||||
|
||||
if(response.Length < 2052) return null;
|
||||
|
||||
PhysicalFormatInformation pfi = new PhysicalFormatInformation();
|
||||
|
||||
Reference in New Issue
Block a user