mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* DiscImageChef.Decoders/CD/TOC.cs:
* DiscImageChef.Decoders/CD/PMA.cs: * DiscImageChef.Decoders/CD/ATIP.cs: * DiscImageChef.Decoders/CD/Session.cs: * DiscImageChef.Decoders/CD/FullTOC.cs: * DiscImageChef.Decoders/CD/CDTextOnLeadIn.cs: Rename fields, methods and structs to more adequate names. * DiscImageChef/Commands/Decode.cs: Rename CD decoders fields, methods and structs to more adequate names.
This commit is contained in:
10
CD/ATIP.cs
10
CD/ATIP.cs
@@ -222,7 +222,7 @@ namespace DiscImageChef.Decoders.CD
|
||||
public byte Reserved10;
|
||||
}
|
||||
|
||||
public static CDATIP? DecodeCDATIP(byte[] CDATIPResponse)
|
||||
public static CDATIP? Decode(byte[] CDATIPResponse)
|
||||
{
|
||||
if (CDATIPResponse == null)
|
||||
return null;
|
||||
@@ -282,7 +282,7 @@ namespace DiscImageChef.Decoders.CD
|
||||
return decoded;
|
||||
}
|
||||
|
||||
public static string PrettifyCDATIP(CDATIP? CDATIPResponse)
|
||||
public static string Prettify(CDATIP? CDATIPResponse)
|
||||
{
|
||||
if (CDATIPResponse == null)
|
||||
return null;
|
||||
@@ -371,10 +371,10 @@ namespace DiscImageChef.Decoders.CD
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
public static string PrettifyCDATIP(byte[] CDATIPResponse)
|
||||
public static string Prettify(byte[] CDATIPResponse)
|
||||
{
|
||||
CDATIP? decoded = DecodeCDATIP(CDATIPResponse);
|
||||
return PrettifyCDATIP(decoded);
|
||||
CDATIP? decoded = Decode(CDATIPResponse);
|
||||
return Prettify(decoded);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user