forked from MiSTer-devel/Main_MiSTer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cd.h
67 lines (55 loc) · 1.05 KB
/
cd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#ifndef CD_H
#define CD_H
#include <libchdr/chd.h>
#include "file_io.h"
typedef enum
{
SUBCODE_NONE = 0, SUBCODE_RW, SUBCODE_RW_RAW
} cd_subcode_types_t;
typedef struct
{
fileTYPE f;
int offset;
int pregap;
int start;
int end;
int type;
int sector_size;
int indexes[100];
int index_num;
cd_subcode_types_t sbc_type;
} cd_track_t;
typedef struct
{
int end;
int last;
int sectorSize;
chd_file *chd_f;
int chd_hunksize;
cd_track_t tracks[100];
fileTYPE sub;
int GetTrackByLBA(int lba)
{
int i = 0;
while ((this->tracks[i].end <= lba) && (i < this->last)) i++;
return i;
}
int GetIndexByLBA(int track, int lba)
{
if (lba - this->tracks[track].start < 0)
return 0;
int i = 2;
while ((lba - this->tracks[track].start >= this->tracks[track].indexes[i]) && (i < this->tracks[track].index_num)) i++;
i--;
return i;
}
} toc_t;
typedef struct
{
uint8_t m;
uint8_t s;
uint8_t f;
} msf_t;
#define BCD(v) ((uint8_t)((((v)/10) << 4) | ((v)%10)))
typedef int (*SendDataFunc) (uint8_t* buf, int len, uint8_t index);
#endif