DiscImageCreator

sarami
Posts: 1762
Joined: Mon Jun 08, 2026 1:27 am

Re: DiscImageCreator

Post by sarami »

usurper wrote:Have you done anything with regard to the above copy protection.
No.
usurper wrote:I have several Original releases from that publisher, which always seem to use the same protection scheme.
See this. /viewtopic.php?p=24287#p24287
I want more report about this protection.
DiscImageCreator, UmdImageCreator, Conv2multiBin, bin2wav, PS3Auth (needs login), [url=http://www.mediafire.com/file/5cgoy11x6ahc7qh/%2523recompressTo7z_20150109.bat/file]recompressTo7z_20150109.bat[/url]
User avatar
iR0b0t
Posts: 3397
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by iR0b0t »

redump.org/disc/29657/

Code: Select all

Aug 18 2017 00:05:27
DiscImageCreator cd x \dic\dic_PX-760A 8 /c2 /q
Main channel is shifted by 1 sector forwards

As a note:
  • subs are filled with FF
  • subdump times differ by 2 seconds
DIC logs and subdump file
PX-760A (+30), PX-W4824TA (+98), GSA-H42L (+667), GDR-8164B (+102), SH-D162D (+6), SOHD-167T (+12)
User avatar
iR0b0t
Posts: 3397
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by iR0b0t »

redump.org/disc/32765/

Code: Select all

Aug 18 2017 00:05:27
DiscImageCreator cd x \raw\raw_PX-760A 8 /c2 /q /p /raw 
Main channel is shifted by 30 samples forwards

As a note:
  • subs leadin and the first 75 sectors are filled with repeating pattern
DIC logs
PX-760A (+30), PX-W4824TA (+98), GSA-H42L (+667), GDR-8164B (+102), SH-D162D (+6), SOHD-167T (+12)
User avatar
idlord
Posts: 73
Joined: Mon Jun 08, 2026 1:28 am

Re: DiscImageCreator

Post by idlord »

Been trying to dump the following disc Tomb Raider II - Starring Lara Croft (USA), but been running into the following error messages:

Code: Select all

- [ERROR] Number of sector(s) where mode is unknown: 23259
- [ERROR] Number of sector(s) where sync is invalid: 173395
- [ERROR] Number of sector(s) where sync is zero: 12260
- [F:CreateBin][L:1310] GetLastError: 8, Not enough storage is available to process this command.
Drive used was a Plextor PX-755A and tested with DIC 20170818, 20170702, and 20160805, all have been giving me the same problems. Disc looks mint with hardly any scratches at all so I can't figure out what the problem could be.
Last edited by idlord on Wed Sep 20, 2017 3:48 pm, edited 1 time in total.
User avatar
iR0b0t
Posts: 3397
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by iR0b0t »

idlord wrote:[F:CreateBin][L:1310] GetLastError: 8, Not enough storage is available to process this command.
This most likely means you were low on hard drive space.
PX-760A (+30), PX-W4824TA (+98), GSA-H42L (+667), GDR-8164B (+102), SH-D162D (+6), SOHD-167T (+12)
User avatar
idlord
Posts: 73
Joined: Mon Jun 08, 2026 1:28 am

Re: DiscImageCreator

Post by idlord »

I would assume that is what it refers to but there is more than enough space available to dump the disc, the disc is most likely bad as I'm unable to dump it with other software.
reentrant
Posts: 719
Joined: Mon Jun 08, 2026 1:28 am

Re: DiscImageCreator

Post by reentrant »

I checked idlord's logs and the issue is because subchannels are corrupted.

Code: Select all

Listing the different protection schemes for the 8 subcoding channels...
Channel P: no protection, Channel Q: 16-bit CRC, Channels R to W:

[FONT=Arial][SIZE=2][SIZE=2][FONT=Arial][SIZE=2][FONT=Arial]To protect the data in the subcoding channels R to W, a (24, 20) Reed-Solomon error correction code is used. To improve the burst error correction capability, 8 times interleaving is added to this error-correction system. The first two symbols in a PACK have additional protection with a (4, 2) Reed-Solomon error correction code.
[/FONT][/SIZE][/SIZE][/FONT][/SIZE][/FONT]
https://club.myce.com/t/subchannel-issues/195516/9

Sarami maybe you could take the CRC16 from Sub Q and attempt to detect single bit errors by bit swapping each bit in Sub Q and checking if CRC16 matches (CRC16 could also be corrupted). cdgtool is using such approach to clean the subs for random bit errors. Could you implement this simple algorithm. That could solve issue with such rotting CDs...
sarami
Posts: 1762
Joined: Mon Jun 08, 2026 1:27 am

Re: DiscImageCreator

Post by sarami »

reentrant wrote:subchannels are corrupted.
This? /viewtopic.php?p=24193#p24193
iR0b0t wrote:Main channel is shifted by 1 sector forwards
Uploaded test version.
iR0b0t wrote:Main channel is shifted by 30 samples forwards
Only this disc? or all disc you have? I tried the same option with MegaRace of 3DO but Main channel was shifted correctly with offset.
DiscImageCreator, UmdImageCreator, Conv2multiBin, bin2wav, PS3Auth (needs login), [url=http://www.mediafire.com/file/5cgoy11x6ahc7qh/%2523recompressTo7z_20150109.bat/file]recompressTo7z_20150109.bat[/url]
reentrant
Posts: 719
Joined: Mon Jun 08, 2026 1:28 am

Re: DiscImageCreator

Post by reentrant »

sarami wrote:
reentrant wrote:subchannels are corrupted.
This? /viewtopic.php?p=24193#p24193
I'm not the original dumper, I only saw the logs. In idlord's case /s 2 didn't help. In one of the logs you output a table describing TOC with pregap and this table is computed using RMSF in SubQ, yes? The problem with the CD is that RMSF in Q channel is bad but not random. For example at some point (say LBA 90000), RMSF is changed to some low value like 00:24:24 and goes up on each frame. After some sectors it restarts again and goes up.

RMSF goes 1 frame up with each sector (it's good) but the value is shifted and it screwes everything...
Last edited by reentrant on Thu Sep 21, 2017 12:51 pm, edited 1 time in total.
User avatar
iR0b0t
Posts: 3397
Joined: Mon Jun 08, 2026 1:26 am

Re: DiscImageCreator

Post by iR0b0t »

sarami wrote:
iR0b0t wrote:Main channel is shifted by 30 samples forwards
Only this disc? or all disc you have? I tried the same option with MegaRace of 3DO but Main channel was shifted correctly with offset.
Only this particular disc.
PX-760A (+30), PX-W4824TA (+98), GSA-H42L (+667), GDR-8164B (+102), SH-D162D (+6), SOHD-167T (+12)
Post Reply