Mercurial > mplayer.hg
annotate stream/vcd_read_darwin.h @ 23866:b1156b0b71c0
Remove extern index_mode, it is already in demuxer.h
author | reimar |
---|---|
date | Fri, 27 Jul 2007 21:00:33 +0000 |
parents | 78f77927050c |
children | 542d4cda34c3 |
rev | line source |
---|---|
13842 | 1 #include <sys/types.h> |
2 #include <CoreFoundation/CFBase.h> | |
3 #include <IOKit/IOKitLib.h> | |
4 #include <IOKit/storage/IOCDTypes.h> | |
5 #include <IOKit/storage/IOCDMedia.h> | |
13682 | 6 #include <IOKit/storage/IOCDMediaBSDClient.h> |
7 | |
8 //=================== VideoCD ========================== | |
9 #define CDROM_LEADOUT 0xAA | |
10 | |
11 typedef struct | |
12 { | |
13 uint8_t sync [12]; | |
14 uint8_t header [4]; | |
15 uint8_t subheader [8]; | |
16 uint8_t data [2324]; | |
17 uint8_t spare [4]; | |
18 } cdsector_t; | |
19 | |
20 typedef struct mp_vcd_priv_st | |
21 { | |
22 int fd; | |
23 dk_cd_read_track_info_t entry; | |
24 CDMSF msf; | |
25 cdsector_t buf; | |
26 } mp_vcd_priv_t; | |
27 | |
28 static inline void vcd_set_msf(mp_vcd_priv_t* vcd, unsigned int sect) | |
29 { | |
30 vcd->msf.frame=sect%75; | |
31 sect=sect/75; | |
32 vcd->msf.second=sect%60; | |
33 sect=sect/60; | |
34 vcd->msf.minute=sect; | |
35 } | |
36 | |
37 static inline unsigned int vcd_get_msf(mp_vcd_priv_t* vcd) | |
38 { | |
39 return vcd->msf.frame + | |
40 (vcd->msf.second+ | |
41 vcd->msf.minute*60)*75; | |
42 } | |
43 | |
44 int vcd_seek_to_track(mp_vcd_priv_t* vcd, int track) | |
45 { | |
46 struct CDTrackInfo entry; | |
47 | |
48 memset( &vcd->entry, 0, sizeof(vcd->entry)); | |
49 vcd->entry.addressType = kCDTrackInfoAddressTypeTrackNumber; | |
50 vcd->entry.address = track; | |
51 vcd->entry.bufferLength = sizeof(entry); | |
52 vcd->entry.buffer = &entry; | |
53 | |
54 if (ioctl(vcd->fd, DKIOCCDREADTRACKINFO, &vcd->entry)) | |
55 { | |
56 mp_msg(MSGT_STREAM,MSGL_ERR,"ioctl dif1: %s\n",strerror(errno)); | |
57 return -1; | |
58 } | |
59 return VCD_SECTOR_DATA*vcd_get_msf(vcd); | |
60 } | |
61 | |
62 int vcd_get_track_end(mp_vcd_priv_t* vcd, int track) | |
63 { | |
64 dk_cd_read_disc_info_t tochdr; | |
65 struct CDDiscInfo hdr; | |
66 | |
67 struct CDTrackInfo entry; | |
68 | |
69 //read toc header | |
70 memset(&tochdr, 0, sizeof(tochdr)); | |
71 tochdr.buffer = &hdr; | |
72 tochdr.bufferLength = sizeof(hdr); | |
73 | |
74 if (ioctl(vcd->fd, DKIOCCDREADDISCINFO, &tochdr) < 0) | |
75 { | |
76 mp_msg(MSGT_OPEN,MSGL_ERR,"read CDROM toc header: %s\n",strerror(errno)); | |
77 return NULL; | |
78 } | |
79 | |
80 //read track info | |
81 memset( &vcd->entry, 0, sizeof(vcd->entry)); | |
82 vcd->entry.addressType = kCDTrackInfoAddressTypeTrackNumber; | |
83 vcd->entry.address = track<(hdr.lastTrackNumberInLastSessionLSB+1)?(track):CDROM_LEADOUT; | |
84 vcd->entry.bufferLength = sizeof(entry); | |
85 vcd->entry.buffer = &entry; | |
86 | |
87 if (ioctl(vcd->fd, DKIOCCDREADTRACKINFO, &vcd->entry)) | |
88 { | |
89 mp_msg(MSGT_STREAM,MSGL_ERR,"ioctl dif2: %s\n",strerror(errno)); | |
90 return -1; | |
91 } | |
92 return VCD_SECTOR_DATA*vcd_get_msf(vcd); | |
93 } | |
94 | |
95 mp_vcd_priv_t* vcd_read_toc(int fd) | |
96 { | |
97 dk_cd_read_disc_info_t tochdr; | |
98 struct CDDiscInfo hdr; | |
99 | |
100 dk_cd_read_track_info_t tocentry; | |
101 struct CDTrackInfo entry; | |
102 CDMSF trackMSF; | |
103 | |
104 mp_vcd_priv_t* vcd; | |
16547
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
105 int i, min = 0, sec = 0, frame = 0; |
13682 | 106 |
107 //read toc header | |
108 memset(&tochdr, 0, sizeof(tochdr)); | |
109 tochdr.buffer = &hdr; | |
110 tochdr.bufferLength = sizeof(hdr); | |
111 | |
112 if (ioctl(fd, DKIOCCDREADDISCINFO, &tochdr) < 0) | |
113 { | |
114 mp_msg(MSGT_OPEN,MSGL_ERR,"read CDROM toc header: %s\n",strerror(errno)); | |
115 return NULL; | |
116 } | |
117 | |
118 //print all track info | |
18237
4231482179b6
Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents:
16547
diff
changeset
|
119 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VCD_START_TRACK=%d\n", hdr.firstTrackNumberInLastSessionLSB); |
4231482179b6
Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents:
16547
diff
changeset
|
120 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VCD_END_TRACK=%d\n", hdr.lastTrackNumberInLastSessionLSB); |
16547
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
121 for (i=hdr.firstTrackNumberInLastSessionLSB ; i<=hdr.lastTrackNumberInLastSessionLSB + 1; i++) |
13682 | 122 { |
123 memset( &tocentry, 0, sizeof(tocentry)); | |
124 tocentry.addressType = kCDTrackInfoAddressTypeTrackNumber; | |
16547
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
125 tocentry.address = i<=hdr.lastTrackNumberInLastSessionLSB ? i : CDROM_LEADOUT; |
13682 | 126 tocentry.bufferLength = sizeof(entry); |
127 tocentry.buffer = &entry; | |
128 | |
129 if (ioctl(fd,DKIOCCDREADTRACKINFO,&tocentry)==-1) | |
130 { | |
131 mp_msg(MSGT_OPEN,MSGL_ERR,"read CDROM toc entry: %s\n",strerror(errno)); | |
132 return NULL; | |
133 } | |
134 | |
135 trackMSF = CDConvertLBAToMSF(entry.trackStartAddress); | |
136 | |
137 //mp_msg(MSGT_OPEN,MSGL_INFO,"track %02d: adr=%d ctrl=%d format=%d %02d:%02d:%02d\n", | |
16547
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
138 if (i<=hdr.lastTrackNumberInLastSessionLSB) |
13682 | 139 mp_msg(MSGT_OPEN,MSGL_INFO,"track %02d: format=%d %02d:%02d:%02d\n", |
140 (int)tocentry.address, | |
141 //(int)tocentry.entry.addr_type, | |
142 //(int)tocentry.entry.control, | |
143 (int)tocentry.addressType, | |
144 (int)trackMSF.minute, | |
145 (int)trackMSF.second, | |
146 (int)trackMSF.frame | |
147 ); | |
16547
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
148 |
18237
4231482179b6
Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents:
16547
diff
changeset
|
149 if (mp_msg_test(MSGT_IDENTIFY, MSGL_INFO)) |
16547
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
150 { |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
151 if (i > hdr.firstTrackNumberInLastSessionLSB) |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
152 { |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
153 min = trackMSF.minute - min; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
154 sec = trackMSF.second - sec; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
155 frame = trackMSF.frame - frame; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
156 if ( frame < 0 ) |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
157 { |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
158 frame += 75; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
159 sec --; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
160 } |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
161 if ( sec < 0 ) |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
162 { |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
163 sec += 60; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
164 min --; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
165 } |
18237
4231482179b6
Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents:
16547
diff
changeset
|
166 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VCD_TRACK_%d_MSF=%02d:%02d:%02d\n", i - 1, min, sec, frame); |
16547
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
167 } |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
168 min = trackMSF.minute; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
169 sec = trackMSF.second; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
170 frame = trackMSF.frame; |
aa15d627a00b
Prints the numbers of start and end tracks and MSF length for each
gpoirier
parents:
13842
diff
changeset
|
171 } |
13682 | 172 } |
173 | |
174 vcd = malloc(sizeof(mp_vcd_priv_t)); | |
175 vcd->fd = fd; | |
176 vcd->msf = trackMSF; | |
177 return vcd; | |
178 } | |
179 | |
180 static int vcd_read(mp_vcd_priv_t* vcd,char *mem) | |
181 { | |
182 if (pread(vcd->fd,&vcd->buf,VCD_SECTOR_SIZE,vcd_get_msf(vcd)*VCD_SECTOR_SIZE) != VCD_SECTOR_SIZE) | |
183 return 0; // EOF? | |
184 | |
185 vcd->msf.frame++; | |
186 if (vcd->msf.frame==75) | |
187 { | |
188 vcd->msf.frame=0; | |
189 vcd->msf.second++; | |
190 | |
191 if (vcd->msf.second==60) | |
192 { | |
193 vcd->msf.second=0; | |
194 vcd->msf.minute++; | |
195 } | |
196 } | |
197 | |
198 memcpy(mem,vcd->buf.data,VCD_SECTOR_DATA); | |
199 return VCD_SECTOR_DATA; | |
200 } | |
201 |