mirror of
https://github.com/aaru-dps/Aaru.Decoders.git
synced 2025-12-16 19:24:32 +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/PMA.cs
10
CD/PMA.cs
@@ -137,7 +137,7 @@ namespace DiscImageChef.Decoders.CD
|
||||
public byte PFRAME;
|
||||
}
|
||||
|
||||
public static CDPMA? DecodeCDPMA(byte[] CDPMAResponse)
|
||||
public static CDPMA? Decode(byte[] CDPMAResponse)
|
||||
{
|
||||
if (CDPMAResponse == null)
|
||||
return null;
|
||||
@@ -177,7 +177,7 @@ namespace DiscImageChef.Decoders.CD
|
||||
return decoded;
|
||||
}
|
||||
|
||||
public static string PrettifyCDPMA(CDPMA? CDPMAResponse)
|
||||
public static string Prettify(CDPMA? CDPMAResponse)
|
||||
{
|
||||
if (CDPMAResponse == null)
|
||||
return null;
|
||||
@@ -217,10 +217,10 @@ namespace DiscImageChef.Decoders.CD
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
public static string PrettifyCDPMA(byte[] CDPMAResponse)
|
||||
public static string Prettify(byte[] CDPMAResponse)
|
||||
{
|
||||
CDPMA? decoded = DecodeCDPMA(CDPMAResponse);
|
||||
return PrettifyCDPMA(decoded);
|
||||
CDPMA? decoded = Decode(CDPMAResponse);
|
||||
return Prettify(decoded);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user