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/TOC.cs
10
CD/TOC.cs
@@ -112,7 +112,7 @@ namespace DiscImageChef.Decoders.CD
|
||||
public UInt32 TrackStartAddress;
|
||||
}
|
||||
|
||||
public static CDTOC? DecodeCDTOC(byte[] CDTOCResponse)
|
||||
public static CDTOC? Decode(byte[] CDTOCResponse)
|
||||
{
|
||||
if (CDTOCResponse == null)
|
||||
return null;
|
||||
@@ -145,7 +145,7 @@ namespace DiscImageChef.Decoders.CD
|
||||
return decoded;
|
||||
}
|
||||
|
||||
public static string PrettifyCDTOC(CDTOC? CDTOCResponse)
|
||||
public static string Prettify(CDTOC? CDTOCResponse)
|
||||
{
|
||||
if (CDTOCResponse == null)
|
||||
return null;
|
||||
@@ -225,10 +225,10 @@ namespace DiscImageChef.Decoders.CD
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
public static string PrettifyCDTOC(byte[] CDTOCResponse)
|
||||
public static string Prettify(byte[] CDTOCResponse)
|
||||
{
|
||||
CDTOC? decoded = DecodeCDTOC(CDTOCResponse);
|
||||
return PrettifyCDTOC(decoded);
|
||||
CDTOC? decoded = Decode(CDTOCResponse);
|
||||
return Prettify(decoded);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user