Is it possible to convert between dump styles?
From what I've loosely understood is that non-null data is the same. The difference arises from Redump having null data prefixed or appended, and index entries adjusted appropriately.
If this is indeed the case I can probably write an AutoIt script to make the proper adjustments to convert Tosec to Redump...and ideally vise versa.
The idea of course is to get both groups efforts completed as soon as possible...and to reduce duplication of effort.
So if this is possible what are the test conditions?
Example:
<Track 1 Data> = 00:00:00
-- If Track 1 End Point Does Not Equal Track 2 Start Point Then Prefix Null To Track 2 & Adjust Track 2 Start Point
<Track 2 Audio>
<Track 3 Data> = 10:00:00
-- If Track 3 End Point Does Not Equal Track 4 Start Point Then Prefix Null To Track 4 & Adjust Track 4 Start Point
<Track 4 Audio>
-- If Track 5 Is Audio Then If Track 4 End Point Does Not Equal Track 5 Start Point Then Prefix Null To Track 5 & Adjust Track 5 Start Point
-- If Track 5 Is Data Then If Track 4 End Point Does Not Equal Track 5 Start Point Then Append Null To Track 4
<Track 5 Audio>
-- If Track 6 Is Audio Then If Track 5 End Point Does Not Equal Track 6 Start Point Then Prefix Null To Track 6 & Adjust Track 6 Start Point
-- If Track 6 Is Data Then If Track 4 End Point Does Not Equal Track 6 Start Point Then Append Null To Track 5
<Track 6 Data>
....
Is that the correct conditions or is it different?