some majorly incomplete cue stuff. need to refactor into CueGrid so an index#0 can setup its Q subchannel synthesis by easily referencing the following index
This commit is contained in:
parent
d698bb8059
commit
8b0593dcb2
File diff suppressed because it is too large
Load Diff
|
@ -8,6 +8,8 @@ namespace BizHawk.Emulation.DiscSystem
|
|||
{
|
||||
abstract class SS_Base : ISectorSynthJob2448
|
||||
{
|
||||
public IBlob Blob;
|
||||
public long BlobOffset;
|
||||
public SubchannelQ sq;
|
||||
|
||||
public abstract void Synth(SectorSynthJob job);
|
||||
|
@ -57,8 +59,6 @@ namespace BizHawk.Emulation.DiscSystem
|
|||
/// </summary>
|
||||
class SS_2352 : SS_Base
|
||||
{
|
||||
public IBlob Blob;
|
||||
public long BlobOffset;
|
||||
public override void Synth(SectorSynthJob job)
|
||||
{
|
||||
//read the sector user data
|
||||
|
|
|
@ -102,7 +102,7 @@ namespace BizHawk.Emulation.DiscSystem
|
|||
//actually load it all up
|
||||
var loadJob = new CUE_Format2.LoadCueJob();
|
||||
loadJob.IN_AnalyzeJob = analyzeJob;
|
||||
cue2.LoadCueFile(loadJob);
|
||||
loadJob.Run();
|
||||
if (loadJob.OUT_Log != "") Console.WriteLine(loadJob.OUT_Log);
|
||||
ConcatenateJobLog(analyzeJob);
|
||||
|
||||
|
|
|
@ -54,6 +54,7 @@ namespace BizHawk.Emulation.DiscSystem
|
|||
/// <summary>
|
||||
/// Synthesizes the DiscStructure from RawTOCEntriesJob
|
||||
/// TODO - move to attic, not being used
|
||||
/// WOULD BE NICE TO USE FOR CUE
|
||||
/// </summary>
|
||||
public class SynthesizeFromRawTOCEntriesJob
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue