mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 13:52:16 +00:00
This change also removes a couple of things from `BurnOutSharp.Tools.Utilities` that are no longer needed there. Linear executables are included in the scanning classes. Update the guides accordingly.
18 lines
1.1 KiB
C#
18 lines
1.1 KiB
C#
namespace BinaryObjectScanner.Protection
|
|
{
|
|
public class DocLoc
|
|
{
|
|
// TODO: Implement - https://web.archive.org/web/20060107074801/http://www.docdata.com/
|
|
// Doc.Loc appears to be a form of audio CD copy protection, used/created by the company DocData. It seems to work by preventing the tracks being read in PC optical drives using a non-standard second session.
|
|
// List of known information and resources:
|
|
// https://www.co-bw.com/DMS_how_to_rip_copy_protected_cds.htm
|
|
// http://forum.redump.org/topic/40001/interesting-list-of-cd-audio-copy-protections/
|
|
// https://hydrogenaud.io/index.php/topic,7198.75.html
|
|
// http://cdr.xenoclast.org/issues/cd/bad/
|
|
// https://myce.wiki/other/Plextor-PX-W4012S-SCSI-32/10/
|
|
// https://www.discogs.com/release/790336-Various-Yorin-FM-Hitzone-21
|
|
// https://www.discogs.com/release/188439-Helium-Vola-Helium-Vola
|
|
// https://web.archive.org/web/20210420093858/https://club.myce.com/t/wolfsheim-casting-shadows-new-doc-loc-version/60377
|
|
// https://forums.afterdawn.com/threads/emi-copy-control.266790/
|
|
}
|
|
} |