Mercurial > mplayer.hg
annotate libmpdemux/stream_dvd.c @ 17012:6ff3379a0862
Unify include path handling, -I.. is in CFLAGS.
author | diego |
---|---|
date | Fri, 18 Nov 2005 14:39:25 +0000 |
parents | 8d4fb5469efb |
children | 6ac0b5f0d1ed |
rev | line source |
---|---|
15518 | 1 |
2 | |
3 #include <ctype.h> | |
4 #include <stdio.h> | |
5 #include <stdlib.h> | |
6 #include <string.h> | |
7 #include <unistd.h> | |
8 #include <fcntl.h> | |
9 #include <string.h> | |
10 | |
11 #include "config.h" | |
12 #include "mp_msg.h" | |
13 #include "help_mp.h" | |
14 | |
15 #ifdef __FreeBSD__ | |
16 #include <sys/cdrio.h> | |
17 #endif | |
18 | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
19 #define FIRST_AC3_AID 128 |
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
20 #define FIRST_DTS_AID 136 |
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
21 #define FIRST_MPG_AID 0 |
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
22 #define FIRST_PCM_AID 160 |
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
23 |
15518 | 24 #include "stream.h" |
17012 | 25 #include "m_option.h" |
26 #include "m_struct.h" | |
15518 | 27 |
28 /// We keep these 2 for the gui atm, but they will be removed. | |
29 int dvd_title=0; | |
30 int dvd_chapter=1; | |
31 int dvd_last_chapter=0; | |
32 int dvd_angle=1; | |
33 char* dvd_device=NULL; | |
34 | |
35 #ifdef USE_DVDREAD | |
36 #define DVDREAD_VERSION(maj,min,micro) ((maj)*10000 + (min)*100 + (micro)) | |
37 /* | |
38 * Try to autodetect the libdvd-0.9.0 library | |
39 * (0.9.0 removed the <dvdread/dvd_udf.h> header, and moved the two defines | |
40 * DVD_VIDEO_LB_LEN and MAX_UDF_FILE_NAME_LEN from it to | |
41 * <dvdread/dvd_reader.h>) | |
42 */ | |
43 #if defined(DVD_VIDEO_LB_LEN) && defined(MAX_UDF_FILE_NAME_LEN) | |
44 #define LIBDVDREAD_VERSION DVDREAD_VERSION(0,9,0) | |
45 #else | |
46 #define LIBDVDREAD_VERSION DVDREAD_VERSION(0,8,0) | |
47 #endif | |
48 | |
49 char * dvd_audio_stream_types[8] = { "ac3","unknown","mpeg1","mpeg2ext","lpcm","unknown","dts" }; | |
50 char * dvd_audio_stream_channels[6] = { "mono", "stereo", "unknown", "unknown", "5.1/6.1", "5.1" }; | |
51 #endif | |
52 | |
53 | |
54 static struct stream_priv_s { | |
55 int title; | |
56 } stream_priv_dflts = { | |
57 1 | |
58 }; | |
59 | |
60 #define ST_OFF(f) M_ST_OFF(struct stream_priv_s,f) | |
61 /// URL definition | |
62 static m_option_t stream_opts_fields[] = { | |
63 { "hostname", ST_OFF(title), CONF_TYPE_INT, M_OPT_MIN, 1, 0, NULL }, | |
64 { NULL, NULL, 0, 0, 0, 0, NULL } | |
65 }; | |
66 static struct m_struct_st stream_opts = { | |
67 "dvd", | |
68 sizeof(struct stream_priv_s), | |
69 &stream_priv_dflts, | |
70 stream_opts_fields | |
71 }; | |
72 | |
73 int dvd_parse_chapter_range(m_option_t *conf, const char *range) { | |
74 const char *s; | |
75 char *t; | |
76 if (!range) | |
77 return M_OPT_MISSING_PARAM; | |
78 s = range; | |
79 dvd_chapter = 1; | |
80 dvd_last_chapter = 0; | |
81 if(*range && isdigit(*range)) { | |
82 dvd_chapter = strtol(range, &s, 10); | |
83 if(range == s) { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
84 mp_msg(MSGT_OPEN, MSGL_ERR, MSGTR_DVDinvalidChapterRange, range); |
15518 | 85 return M_OPT_INVALID; |
86 } | |
87 } | |
88 if(*s == 0) | |
89 return 0; | |
90 else if(*s != '-') { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
91 mp_msg(MSGT_OPEN, MSGL_ERR, MSGTR_DVDinvalidChapterRange, range); |
15518 | 92 return M_OPT_INVALID; |
93 } | |
94 ++s; | |
95 if(*s == 0) | |
96 return 0; | |
97 if(! isdigit(*s)) { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
98 mp_msg(MSGT_OPEN, MSGL_ERR, MSGTR_DVDinvalidChapterRange, range); |
15518 | 99 return M_OPT_INVALID; |
100 } | |
101 dvd_last_chapter = strtol(s, &t, 10); | |
102 if (s == t || *t) { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
103 mp_msg(MSGT_OPEN, MSGL_ERR, MSGTR_DVDinvalidChapterRange, range); |
15518 | 104 return M_OPT_INVALID; |
105 } | |
106 return 0; | |
107 } | |
108 | |
109 #ifdef USE_DVDREAD | |
110 int dvd_chapter_from_cell(dvd_priv_t* dvd,int title,int cell) | |
111 { | |
112 pgc_t * cur_pgc; | |
113 ptt_info_t* ptt; | |
114 int chapter = cell; | |
115 int pgc_id,pgn; | |
116 if(title < 0 || cell < 0){ | |
117 return 0; | |
118 } | |
119 /* for most DVD's chapter == cell */ | |
120 /* but there are more complecated cases... */ | |
121 if(chapter >= dvd->vmg_file->tt_srpt->title[title].nr_of_ptts) { | |
122 chapter = dvd->vmg_file->tt_srpt->title[title].nr_of_ptts-1; | |
123 } | |
124 title = dvd->tt_srpt->title[title].vts_ttn-1; | |
125 ptt = dvd->vts_file->vts_ptt_srpt->title[title].ptt; | |
126 while(chapter >= 0) { | |
127 pgc_id = ptt[chapter].pgcn; | |
128 pgn = ptt[chapter].pgn; | |
129 cur_pgc = dvd->vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc; | |
130 if(cell >= cur_pgc->program_map[pgn-1]-1) { | |
131 return chapter; | |
132 } | |
133 --chapter; | |
134 } | |
135 /* didn't find a chapter ??? */ | |
136 return chapter; | |
137 } | |
138 | |
139 int dvd_aid_from_lang(stream_t *stream, unsigned char* lang) { | |
140 dvd_priv_t *d=stream->priv; | |
141 int code,i; | |
142 if(lang) { | |
143 while(strlen(lang)>=2) { | |
144 code=lang[1]|(lang[0]<<8); | |
145 for(i=0;i<d->nr_of_channels;i++) { | |
146 if(d->audio_streams[i].language==code) { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
147 mp_msg(MSGT_OPEN,MSGL_INFO,MSGTR_DVDaudioChannel, |
15518 | 148 d->audio_streams[i].id, lang[0],lang[1]); |
149 return d->audio_streams[i].id; | |
150 } | |
151 //printf("%X != %X (%c%c)\n",code,d->audio_streams[i].language,lang[0],lang[1]); | |
152 } | |
153 lang+=2; while (lang[0]==',' || lang[0]==' ') ++lang; | |
154 } | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
155 mp_msg(MSGT_OPEN,MSGL_WARN,MSGTR_DVDnoMatchingAudio); |
15518 | 156 } |
157 return -1; | |
158 } | |
159 | |
160 int dvd_number_of_subs(stream_t *stream) { | |
161 dvd_priv_t *d; | |
162 if (!stream) return -1; | |
163 d = stream->priv; | |
164 if (!d) return -1; | |
165 return d->nr_of_subtitles; | |
166 } | |
167 | |
168 int dvd_lang_from_sid(stream_t *stream, int id) { | |
169 dvd_priv_t *d; | |
170 if (!stream) return 0; | |
171 d = stream->priv; | |
172 if (!d) return 0; | |
173 if (id >= d->nr_of_subtitles) return 0; | |
174 return d->subtitles[id].language; | |
175 } | |
176 | |
177 int dvd_sid_from_lang(stream_t *stream, unsigned char* lang) { | |
178 dvd_priv_t *d=stream->priv; | |
179 int code,i; | |
180 while(lang && strlen(lang)>=2) { | |
181 code=lang[1]|(lang[0]<<8); | |
182 for(i=0;i<d->nr_of_subtitles;i++) { | |
183 if(d->subtitles[i].language==code) { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
184 mp_msg(MSGT_OPEN,MSGL_INFO,MSGTR_DVDsubtitleChannel, i, lang[0],lang[1]); |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
185 return i; |
15518 | 186 } |
187 } | |
188 lang+=2; | |
189 while (lang[0]==',' || lang[0]==' ') ++lang; | |
190 } | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
191 mp_msg(MSGT_OPEN,MSGL_WARN,MSGTR_DVDnoMatchingSubtitle); |
15518 | 192 return -1; |
193 } | |
194 | |
195 static int dvd_next_cell(dvd_priv_t *d) { | |
196 int next_cell=d->cur_cell; | |
197 | |
15551
f62be65f7df3
Reduce senseless spamminess of DVD playback in verbose mode.
diego
parents:
15518
diff
changeset
|
198 mp_msg(MSGT_DVD,MSGL_DBG2, "dvd_next_cell: next1=0x%X \n",next_cell); |
15518 | 199 if( d->cur_pgc->cell_playback[ next_cell ].block_type == BLOCK_TYPE_ANGLE_BLOCK ) { |
200 while(next_cell<d->last_cell) { | |
201 if( d->cur_pgc->cell_playback[next_cell].block_mode == BLOCK_MODE_LAST_CELL ) | |
202 break; | |
203 ++next_cell; | |
204 } | |
205 } | |
15551
f62be65f7df3
Reduce senseless spamminess of DVD playback in verbose mode.
diego
parents:
15518
diff
changeset
|
206 mp_msg(MSGT_DVD,MSGL_DBG2, "dvd_next_cell: next2=0x%X \n",next_cell); |
15518 | 207 |
208 ++next_cell; | |
209 if(next_cell>=d->last_cell) | |
210 return -1; // EOF | |
211 if(d->cur_pgc->cell_playback[next_cell].block_type == BLOCK_TYPE_ANGLE_BLOCK ) { | |
212 next_cell+=dvd_angle; | |
213 if(next_cell>=d->last_cell) | |
214 return -1; // EOF | |
215 } | |
15551
f62be65f7df3
Reduce senseless spamminess of DVD playback in verbose mode.
diego
parents:
15518
diff
changeset
|
216 mp_msg(MSGT_DVD,MSGL_DBG2, "dvd_next_cell: next3=0x%X \n",next_cell); |
15518 | 217 return next_cell; |
218 } | |
219 | |
220 int dvd_read_sector(dvd_priv_t *d,unsigned char* data) { | |
221 int len; | |
222 | |
223 if(d->packs_left==0) { | |
224 /** | |
225 * If we're not at the end of this cell, we can determine the next | |
226 * VOBU to display using the VOBU_SRI information section of the | |
227 * DSI. Using this value correctly follows the current angle, | |
228 * avoiding the doubled scenes in The Matrix, and makes our life | |
229 * really happy. | |
230 * | |
231 * Otherwise, we set our next address past the end of this cell to | |
232 * force the code above to go to the next cell in the program. | |
233 */ | |
234 if(d->dsi_pack.vobu_sri.next_vobu != SRI_END_OF_CELL) { | |
235 d->cur_pack= d->dsi_pack.dsi_gi.nv_pck_lbn + ( d->dsi_pack.vobu_sri.next_vobu & 0x7fffffff ); | |
236 mp_msg(MSGT_DVD,MSGL_DBG2, "Navi new pos=0x%X \n",d->cur_pack); | |
237 } else { | |
238 // end of cell! find next cell! | |
239 mp_msg(MSGT_DVD,MSGL_V, "--- END OF CELL !!! ---\n"); | |
240 d->cur_pack=d->cell_last_pack+1; | |
241 } | |
242 } | |
243 | |
244 read_next: | |
245 if(d->cur_pack>d->cell_last_pack) { | |
246 // end of cell! | |
247 int next=dvd_next_cell(d); | |
248 if(next>=0) { | |
249 d->cur_cell=next; | |
250 // if( d->cur_pgc->cell_playback[d->cur_cell].block_type | |
251 // == BLOCK_TYPE_ANGLE_BLOCK ) d->cur_cell+=dvd_angle; | |
252 d->cur_pack = d->cur_pgc->cell_playback[ d->cur_cell ].first_sector; | |
253 d->cell_last_pack=d->cur_pgc->cell_playback[ d->cur_cell ].last_sector; | |
254 mp_msg(MSGT_DVD,MSGL_V, "DVD next cell: %d pack: 0x%X-0x%X \n",d->cur_cell,d->cur_pack,d->cell_last_pack); | |
255 } else | |
256 return -1; // EOF | |
257 } | |
258 | |
259 len = DVDReadBlocks(d->title, d->cur_pack, 1, data); | |
260 if(!len) return -1; //error | |
261 | |
262 if(data[38]==0 && data[39]==0 && data[40]==1 && data[41]==0xBF && | |
263 data[1024]==0 && data[1025]==0 && data[1026]==1 && data[1027]==0xBF) { | |
264 // found a Navi packet!!! | |
265 #if LIBDVDREAD_VERSION >= DVDREAD_VERSION(0,9,0) | |
266 navRead_DSI(&d->dsi_pack, &(data[ DSI_START_BYTE ])); | |
267 #else | |
268 navRead_DSI(&d->dsi_pack, &(data[ DSI_START_BYTE ]), sizeof(dsi_t)); | |
269 #endif | |
270 if(d->cur_pack != d->dsi_pack.dsi_gi.nv_pck_lbn ) { | |
271 mp_msg(MSGT_DVD,MSGL_V, "Invalid NAVI packet! lba=0x%X navi=0x%X \n", | |
272 d->cur_pack,d->dsi_pack.dsi_gi.nv_pck_lbn); | |
273 } else { | |
274 // process! | |
275 d->packs_left = d->dsi_pack.dsi_gi.vobu_ea; | |
276 mp_msg(MSGT_DVD,MSGL_DBG2, "Found NAVI packet! lba=0x%X len=%d \n",d->cur_pack,d->packs_left); | |
277 //navPrint_DSI(&d->dsi_pack); | |
278 mp_msg(MSGT_DVD,MSGL_DBG3,"\r### CELL %d: Navi: %d/%d IFO: %d/%d \n",d->cur_cell, | |
279 d->dsi_pack.dsi_gi.vobu_c_idn,d->dsi_pack.dsi_gi.vobu_vob_idn, | |
280 d->cur_pgc->cell_position[d->cur_cell].cell_nr, | |
281 d->cur_pgc->cell_position[d->cur_cell].vob_id_nr); | |
282 | |
283 if(d->angle_seek) { | |
284 int i,skip=0; | |
285 #if defined(__GNUC__) && ( defined(__sparc__) || defined(hpux) ) | |
286 // workaround for a bug in the sparc/hpux version of gcc 2.95.X ... 3.2, | |
287 // it generates incorrect code for unaligned access to a packed | |
288 // structure member, resulting in an mplayer crash with a SIGBUS | |
289 // signal. | |
290 // | |
291 // See also gcc problem report PR c/7847: | |
292 // http://gcc.gnu.org/cgi-bin/gnatsweb.pl?database=gcc&cmd=view+audit-trail&pr=7847 | |
293 for(i=0;i<9;i++) { // check if all values zero: | |
294 typeof(d->dsi_pack.sml_agli.data[i].address) tmp_addr; | |
295 memcpy(&tmp_addr,&d->dsi_pack.sml_agli.data[i].address,sizeof(tmp_addr)); | |
296 if((skip=tmp_addr)!=0) break; | |
297 } | |
298 #else | |
299 for(i=0;i<9;i++) // check if all values zero: | |
300 if((skip=d->dsi_pack.sml_agli.data[i].address)!=0) break; | |
301 #endif | |
302 if(skip) { | |
303 // sml_agli table has valid data (at least one non-zero): | |
304 d->cur_pack=d->dsi_pack.dsi_gi.nv_pck_lbn+ | |
305 d->dsi_pack.sml_agli.data[dvd_angle].address; | |
306 d->angle_seek=0; | |
307 mp_msg(MSGT_DVD,MSGL_V, "Angle-seek synced using sml_agli map! new_lba=0x%X \n",d->cur_pack); | |
308 } else { | |
309 // check if we're in the right cell, jump otherwise: | |
310 if( (d->dsi_pack.dsi_gi.vobu_c_idn==d->cur_pgc->cell_position[d->cur_cell].cell_nr) && | |
311 (d->dsi_pack.dsi_gi.vobu_vob_idn==d->cur_pgc->cell_position[d->cur_cell].vob_id_nr) ){ | |
312 d->angle_seek=0; | |
313 mp_msg(MSGT_DVD,MSGL_V, "Angle-seek synced by cell/vob IDN search! \n"); | |
314 } else { | |
315 // wrong angle, skip this vobu: | |
316 d->cur_pack=d->dsi_pack.dsi_gi.nv_pck_lbn+ | |
317 d->dsi_pack.dsi_gi.vobu_ea; | |
318 d->angle_seek=2; // DEBUG | |
319 } | |
320 } | |
321 } | |
322 } | |
323 ++d->cur_pack; | |
324 goto read_next; | |
325 } | |
326 | |
327 ++d->cur_pack; | |
328 if(d->packs_left>=0) --d->packs_left; | |
329 | |
330 if(d->angle_seek) { | |
331 if(d->angle_seek==2) mp_msg(MSGT_DVD,MSGL_V, "!!! warning! reading packet while angle_seek !!!\n"); | |
332 goto read_next; // searching for Navi packet | |
333 } | |
334 | |
335 return d->cur_pack-1; | |
336 } | |
337 | |
338 void dvd_seek(dvd_priv_t *d,int pos) { | |
339 d->packs_left=-1; | |
340 d->cur_pack=pos; | |
341 | |
342 // check if we stay in current cell (speedup things, and avoid angle skip) | |
343 if(d->cur_pack>d->cell_last_pack || | |
344 d->cur_pack<d->cur_pgc->cell_playback[ d->cur_cell ].first_sector) { | |
345 | |
346 // ok, cell change, find the right cell! | |
347 d->cur_cell=0; | |
348 if(d->cur_pgc->cell_playback[d->cur_cell].block_type == BLOCK_TYPE_ANGLE_BLOCK ) | |
349 d->cur_cell+=dvd_angle; | |
350 | |
351 while(1) { | |
352 int next; | |
353 d->cell_last_pack=d->cur_pgc->cell_playback[ d->cur_cell ].last_sector; | |
354 if(d->cur_pack<d->cur_pgc->cell_playback[ d->cur_cell ].first_sector) { | |
355 d->cur_pack=d->cur_pgc->cell_playback[ d->cur_cell ].first_sector; | |
356 break; | |
357 } | |
358 if(d->cur_pack<=d->cell_last_pack) break; // ok, we find it! :) | |
359 next=dvd_next_cell(d); | |
360 if(next<0) { | |
361 //d->cur_pack=d->cell_last_pack+1; | |
362 break; // we're after the last cell | |
363 } | |
364 d->cur_cell=next; | |
365 } | |
366 } | |
367 | |
368 mp_msg(MSGT_DVD,MSGL_V, "DVD Seek! lba=0x%X cell=%d packs: 0x%X-0x%X \n", | |
369 d->cur_pack,d->cur_cell,d->cur_pgc->cell_playback[ d->cur_cell ].first_sector,d->cell_last_pack); | |
370 | |
371 // if we're in interleaved multi-angle cell, find the right angle chain! | |
372 // (read Navi block, and use the seamless angle jump table) | |
373 d->angle_seek=1; | |
374 } | |
375 | |
376 void dvd_close(dvd_priv_t *d) { | |
377 ifoClose(d->vts_file); | |
378 ifoClose(d->vmg_file); | |
379 DVDCloseFile(d->title); | |
380 DVDClose(d->dvd); | |
381 dvd_chapter = 1; | |
382 dvd_last_chapter = 0; | |
383 } | |
384 | |
385 #endif | |
386 | |
387 static int fill_buffer(stream_t *s, char *but, int len) | |
388 { | |
389 #ifdef USE_DVDREAD | |
390 if(s->type == STREAMTYPE_DVD) { | |
391 off_t pos=dvd_read_sector(s->priv,s->buffer); | |
392 if(pos>=0) { | |
393 len=2048; // full sector | |
394 s->pos=2048*pos-len; | |
395 } else len=-1; // error | |
396 } | |
397 #endif | |
398 return len; | |
399 } | |
400 | |
401 static int seek(stream_t *s, off_t newpos) { | |
402 #ifdef USE_DVDREAD | |
403 s->pos=newpos; // real seek | |
404 dvd_seek(s->priv,s->pos/2048); | |
405 #endif | |
406 return 1; | |
407 } | |
408 | |
409 static void stream_dvd_close(stream_t *s) { | |
410 #ifdef USE_DVDREAD | |
411 dvd_close(s->priv); | |
412 #endif | |
413 } | |
414 | |
16544
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
415 /** |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
416 \brief Converts DVD time structure to milliseconds. |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
417 \param *dev the DVD time structure to convert |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
418 \return returns the time in milliseconds |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
419 */ |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
420 static int dvdtimetomsec(dvd_time_t *dt) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
421 { |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
422 static int framerates[4] = {0, 2500, 0, 2997}; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
423 int framerate = framerates[(dt->frame_u & 0xc0) >> 6]; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
424 int msec = (((dt->hour & 0xf0) >> 3) * 5 + (dt->hour & 0x0f)) * 3600000; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
425 msec += (((dt->minute & 0xf0) >> 3) * 5 + (dt->minute & 0x0f)) * 60000; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
426 msec += (((dt->second & 0xf0) >> 3) * 5 + (dt->second & 0x0f)) * 1000; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
427 if(framerate > 0) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
428 msec += (((dt->frame_u & 0x30) >> 3) * 5 + (dt->frame_u & 0x0f)) * 100000 / framerate; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
429 return msec; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
430 } |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
431 |
15518 | 432 static int open_s(stream_t *stream,int mode, void* opts, int* file_format) { |
433 struct stream_priv_s* p = (struct stream_priv_s*)opts; | |
434 char *filename; | |
435 | |
436 filename = strdup(stream->url); | |
437 mp_msg(MSGT_OPEN,MSGL_V,"URL: %s\n", filename); | |
438 dvd_title = p->title; | |
439 #ifdef USE_DVDREAD | |
440 if(1){ | |
441 //int ret,ret2; | |
442 dvd_priv_t *d; | |
443 int ttn,pgc_id,pgn; | |
444 dvd_reader_t *dvd; | |
445 dvd_file_t *title; | |
446 ifo_handle_t *vmg_file; | |
447 tt_srpt_t *tt_srpt; | |
448 ifo_handle_t *vts_file; | |
449 /** | |
450 * Open the disc. | |
451 */ | |
452 if(!dvd_device) dvd_device=strdup(DEFAULT_DVD_DEVICE); | |
453 #ifdef SYS_DARWIN | |
454 /* Dynamic DVD drive selection on Darwin */ | |
455 if(!strcmp(dvd_device, "/dev/rdiskN")) { | |
456 int i; | |
457 char *temp_device = malloc((strlen(dvd_device)+1)*sizeof(char)); | |
458 | |
459 for (i = 1; i < 10; i++) { | |
460 sprintf(temp_device, "/dev/rdisk%d", i); | |
461 dvd = DVDOpen(temp_device); | |
462 if(!dvd) { | |
463 mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_CantOpenDVD,temp_device); | |
464 } else { | |
465 free(temp_device); | |
466 break; | |
467 } | |
468 } | |
469 | |
470 if(!dvd) { | |
471 m_struct_free(&stream_opts,opts); | |
472 return STREAM_UNSUPORTED; | |
473 } | |
474 } else | |
475 #endif /* SYS_DARWIN */ | |
476 { | |
477 dvd = DVDOpen(dvd_device); | |
478 if(!dvd) { | |
479 mp_msg(MSGT_OPEN,MSGL_ERR,MSGTR_CantOpenDVD,dvd_device); | |
480 m_struct_free(&stream_opts,opts); | |
481 return STREAM_UNSUPORTED; | |
482 } | |
483 } | |
484 | |
485 mp_msg(MSGT_OPEN,MSGL_INFO,MSGTR_DVDwait); | |
486 | |
487 /** | |
488 * Load the video manager to find out the information about the titles on | |
489 * this disc. | |
490 */ | |
491 vmg_file = ifoOpen(dvd, 0); | |
492 if(!vmg_file) { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
493 mp_msg(MSGT_OPEN,MSGL_ERR, MSGTR_DVDnoVMG); |
15518 | 494 DVDClose( dvd ); |
495 m_struct_free(&stream_opts,opts); | |
496 return STREAM_UNSUPORTED; | |
497 } | |
498 tt_srpt = vmg_file->tt_srpt; | |
16544
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
499 if (identify) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
500 { |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
501 unsigned char discid [16]; ///< disk ID, a 128 bit MD5 sum |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
502 int vts_no; ///< video title set number |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
503 int title_no; ///< title number |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
504 int vts_ttn; ///< title number within video title set |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
505 int pgc_no; ///< program chain number |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
506 int msec; ///< time length in milliseconds |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
507 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_DVD_TITLES=%d\n", tt_srpt->nr_of_srpts); |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
508 for (title_no = 0; title_no < tt_srpt->nr_of_srpts; title_no++) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
509 { |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
510 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_DVD_TITLE_%d_CHAPTERS=%d\n", title_no + 1, tt_srpt->title[title_no].nr_of_ptts); |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
511 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_DVD_TITLE_%d_ANGLES=%d\n", title_no + 1, tt_srpt->title[title_no].nr_of_angles); |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
512 } |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
513 for (vts_no = 1; vts_no <= vmg_file->vts_atrt->nr_of_vtss; vts_no++) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
514 { |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
515 vts_file = ifoOpen(dvd, vts_no); |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
516 if (vts_file) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
517 { |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
518 if (vts_file->vtsi_mat && vts_file->vts_pgcit) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
519 for (title_no = 0; title_no < tt_srpt->nr_of_srpts; title_no++) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
520 if (tt_srpt->title[title_no].title_set_nr == vts_no) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
521 { |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
522 vts_ttn = tt_srpt->title[title_no].vts_ttn - 1; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
523 pgc_no = vts_file->vts_ptt_srpt->title[vts_ttn].ptt[0].pgcn - 1; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
524 msec = dvdtimetomsec(&vts_file->vts_pgcit->pgci_srp[pgc_no].pgc->playback_time); |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
525 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_DVD_TITLE_%d_LENGTH=%d.%03d\n", title_no + 1, msec / 1000, msec % 1000); |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
526 } |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
527 ifoClose(vts_file); |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
528 } |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
529 } |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
530 if (DVDDiscID(dvd, discid) >= 0) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
531 { |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
532 int i; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
533 char buf[33]; |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
534 for (i = 0; i < 16; i ++) |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
535 sprintf(buf+2*i, "%02X", discid[i]); |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
536 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_DVD_DISC_ID=%s\n", buf); |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
537 } |
a10adcba312f
Prints the number of titles, DVD disk ID, the numbers of chapters and
gpoirier
parents:
15551
diff
changeset
|
538 } |
15518 | 539 /** |
540 * Make sure our title number is valid. | |
541 */ | |
542 mp_msg(MSGT_OPEN,MSGL_INFO, MSGTR_DVDnumTitles, tt_srpt->nr_of_srpts ); | |
543 if(dvd_title < 1 || dvd_title > tt_srpt->nr_of_srpts) { | |
544 mp_msg(MSGT_OPEN,MSGL_ERR, MSGTR_DVDinvalidTitle, dvd_title); | |
545 ifoClose( vmg_file ); | |
546 DVDClose( dvd ); | |
547 m_struct_free(&stream_opts,opts); | |
548 return STREAM_UNSUPORTED; | |
549 } | |
550 --dvd_title; // remap 1.. -> 0.. | |
551 /** | |
552 * Make sure the chapter number is valid for this title. | |
553 */ | |
554 mp_msg(MSGT_OPEN,MSGL_INFO, MSGTR_DVDnumChapters, tt_srpt->title[dvd_title].nr_of_ptts); | |
555 if(dvd_chapter<1 || dvd_chapter>tt_srpt->title[dvd_title].nr_of_ptts) { | |
556 mp_msg(MSGT_OPEN,MSGL_ERR, MSGTR_DVDinvalidChapter, dvd_chapter); | |
557 ifoClose( vmg_file ); | |
558 DVDClose( dvd ); | |
559 m_struct_free(&stream_opts,opts); | |
560 return STREAM_UNSUPORTED; | |
561 } | |
562 if(dvd_last_chapter>0) { | |
563 if(dvd_last_chapter<dvd_chapter || dvd_last_chapter>tt_srpt->title[dvd_title].nr_of_ptts) { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
564 mp_msg(MSGT_OPEN,MSGL_ERR, MSGTR_DVDinvalidLastChapter, dvd_last_chapter); |
15518 | 565 ifoClose( vmg_file ); |
566 DVDClose( dvd ); | |
567 m_struct_free(&stream_opts,opts); | |
568 return STREAM_UNSUPORTED; | |
569 } | |
570 } | |
571 --dvd_chapter; // remap 1.. -> 0.. | |
572 /* XXX No need to remap dvd_last_chapter */ | |
573 /** | |
574 * Make sure the angle number is valid for this title. | |
575 */ | |
576 mp_msg(MSGT_OPEN,MSGL_INFO, MSGTR_DVDnumAngles, tt_srpt->title[dvd_title].nr_of_angles); | |
577 if(dvd_angle<1 || dvd_angle>tt_srpt->title[dvd_title].nr_of_angles) { | |
578 mp_msg(MSGT_OPEN,MSGL_ERR, MSGTR_DVDinvalidAngle, dvd_angle); | |
579 ifoClose( vmg_file ); | |
580 DVDClose( dvd ); | |
581 m_struct_free(&stream_opts,opts); | |
582 return STREAM_UNSUPORTED; | |
583 } | |
584 --dvd_angle; // remap 1.. -> 0.. | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
585 |
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
586 ttn = tt_srpt->title[dvd_title].vts_ttn - 1; |
15518 | 587 /** |
588 * Load the VTS information for the title set our title is in. | |
589 */ | |
590 vts_file = ifoOpen( dvd, tt_srpt->title[dvd_title].title_set_nr ); | |
591 if(!vts_file) { | |
592 mp_msg(MSGT_OPEN,MSGL_ERR, MSGTR_DVDnoIFO, tt_srpt->title[dvd_title].title_set_nr ); | |
593 ifoClose( vmg_file ); | |
594 DVDClose( dvd ); | |
595 m_struct_free(&stream_opts,opts); | |
596 return STREAM_UNSUPORTED; | |
597 } | |
598 /** | |
599 * We've got enough info, time to open the title set data. | |
600 */ | |
601 title = DVDOpenFile(dvd, tt_srpt->title[dvd_title].title_set_nr, DVD_READ_TITLE_VOBS); | |
602 if(!title) { | |
603 mp_msg(MSGT_OPEN,MSGL_ERR, MSGTR_DVDnoVOBs, tt_srpt->title[dvd_title].title_set_nr); | |
604 ifoClose( vts_file ); | |
605 ifoClose( vmg_file ); | |
606 DVDClose( dvd ); | |
607 m_struct_free(&stream_opts,opts); | |
608 return STREAM_UNSUPORTED; | |
609 } | |
610 | |
611 mp_msg(MSGT_OPEN,MSGL_INFO, MSGTR_DVDopenOk); | |
612 // store data | |
613 d=malloc(sizeof(dvd_priv_t)); memset(d,0,sizeof(dvd_priv_t)); | |
614 d->dvd=dvd; | |
615 d->title=title; | |
616 d->vmg_file=vmg_file; | |
617 d->tt_srpt=tt_srpt; | |
618 d->vts_file=vts_file; | |
619 | |
620 /** | |
621 * Check number of audio channels and types | |
622 */ | |
623 { | |
624 d->nr_of_channels=0; | |
625 if(vts_file->vts_pgcit) { | |
626 int i; | |
627 for(i=0;i<8;i++) | |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
628 #ifdef USE_MPDVDKIT |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
629 if(vts_file->vts_pgcit->pgci_srp[ttn].pgc->audio_control[i].present) { |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
630 #else |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
631 if(vts_file->vts_pgcit->pgci_srp[ttn].pgc->audio_control[i] & 0x8000) { |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
632 #endif |
15518 | 633 audio_attr_t * audio = &vts_file->vtsi_mat->vts_audio_attr[i]; |
634 int language = 0; | |
635 char tmp[] = "unknown"; | |
636 | |
637 if(audio->lang_type == 1) { | |
638 language=audio->lang_code; | |
639 tmp[0]=language>>8; | |
640 tmp[1]=language&0xff; | |
641 tmp[2]=0; | |
642 } | |
643 | |
644 d->audio_streams[d->nr_of_channels].language=language; | |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
645 #ifdef USE_MPDVDKIT |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
646 d->audio_streams[d->nr_of_channels].id=vts_file->vts_pgcit->pgci_srp[ttn].pgc->audio_control[i].s_audio; |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
647 #else |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
648 d->audio_streams[d->nr_of_channels].id=vts_file->vts_pgcit->pgci_srp[ttn].pgc->audio_control[i] >> 8 & 7; |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
649 #endif |
15518 | 650 switch(audio->audio_format) { |
651 case 0: // ac3 | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
652 d->audio_streams[d->nr_of_channels].id+=FIRST_AC3_AID; |
15518 | 653 break; |
654 case 6: // dts | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
655 d->audio_streams[d->nr_of_channels].id+=FIRST_DTS_AID; |
15518 | 656 break; |
657 case 2: // mpeg layer 1/2/3 | |
658 case 3: // mpeg2 ext | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
659 d->audio_streams[d->nr_of_channels].id+=FIRST_MPG_AID; |
15518 | 660 break; |
661 case 4: // lpcm | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
662 d->audio_streams[d->nr_of_channels].id+=FIRST_PCM_AID; |
15518 | 663 break; |
664 } | |
665 | |
666 d->audio_streams[d->nr_of_channels].type=audio->audio_format; | |
667 // Pontscho: to my mind, tha channels: | |
668 // 1 - stereo | |
669 // 5 - 5.1 | |
670 d->audio_streams[d->nr_of_channels].channels=audio->channels; | |
671 mp_msg(MSGT_OPEN,MSGL_V,"[open] audio stream: %d audio format: %s (%s) language: %s aid: %d\n", | |
672 d->nr_of_channels, | |
673 dvd_audio_stream_types[ audio->audio_format ], | |
674 dvd_audio_stream_channels[ audio->channels ], | |
675 tmp, | |
676 d->audio_streams[d->nr_of_channels].id | |
677 ); | |
678 if(identify) { | |
679 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AUDIO_ID=%d\n", d->audio_streams[d->nr_of_channels].id); | |
680 if(language && tmp[0]) | |
681 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_AID_%d_LANG=%s\n", d->audio_streams[d->nr_of_channels].id, tmp); | |
682 } | |
683 | |
684 d->nr_of_channels++; | |
685 } | |
686 } | |
687 mp_msg(MSGT_OPEN,MSGL_V,"[open] number of audio channels on disk: %d.\n",d->nr_of_channels ); | |
688 } | |
689 | |
690 /** | |
691 * Check number of subtitles and language | |
692 */ | |
693 { | |
694 int i; | |
695 | |
696 d->nr_of_subtitles=0; | |
697 for(i=0;i<32;i++) | |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
698 #ifdef USE_MPDVDKIT |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
699 if(vts_file->vts_pgcit->pgci_srp[ttn].pgc->subp_control[i].present) { |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
700 #else |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
701 if(vts_file->vts_pgcit->pgci_srp[ttn].pgc->subp_control[i] & 0x80000000) { |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
702 #endif |
15518 | 703 subp_attr_t * subtitle = &vts_file->vtsi_mat->vts_subp_attr[i]; |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
704 video_attr_t *video = &vts_file->vtsi_mat->vts_video_attr; |
15518 | 705 int language = 0; |
706 char tmp[] = "unknown"; | |
707 | |
708 if(subtitle->type == 1) { | |
709 language=subtitle->lang_code; | |
710 tmp[0]=language>>8; | |
711 tmp[1]=language&0xff; | |
712 tmp[2]=0; | |
713 } | |
714 | |
715 d->subtitles[ d->nr_of_subtitles ].language=language; | |
716 d->subtitles[ d->nr_of_subtitles ].id=d->nr_of_subtitles; | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
717 if(video->display_aspect_ratio == 0) /* 4:3 */ |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
718 #ifdef USE_MPDVDKIT |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
719 d->subtitles[d->nr_of_subtitles].id = vts_file->vts_pgcit->pgci_srp[ttn].pgc->subp_control[i].s_4p3; |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
720 #else |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
721 d->subtitles[d->nr_of_subtitles].id = vts_file->vts_pgcit->pgci_srp[ttn].pgc->subp_control[i] >> 24 & 31; |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
722 #endif |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
723 else if(video->display_aspect_ratio == 3) /* 16:9 */ |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
724 #ifdef USE_MPDVDKIT |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
725 d->subtitles[d->nr_of_subtitles].id = vts_file->vts_pgcit->pgci_srp[ttn].pgc->subp_control[i].s_lbox; |
16770
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
726 #else |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
727 d->subtitles[d->nr_of_subtitles].id = vts_file->vts_pgcit->pgci_srp[ttn].pgc->subp_control[i] >> 8 & 31; |
a580febbb306
ugly hack to make it work again with external libdvdread
reimar
parents:
16649
diff
changeset
|
728 #endif |
15518 | 729 |
730 mp_msg(MSGT_OPEN,MSGL_V,"[open] subtitle ( sid ): %d language: %s\n", d->nr_of_subtitles, tmp); | |
731 if(identify) { | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
732 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SUBTITLE_ID=%d\n", d->subtitles[d->nr_of_subtitles].id); |
15518 | 733 if(language && tmp[0]) |
734 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ID_SID_%d_LANG=%s\n", d->nr_of_subtitles, tmp); | |
735 } | |
736 d->nr_of_subtitles++; | |
737 } | |
738 mp_msg(MSGT_OPEN,MSGL_V,"[open] number of subtitles on disk: %d\n",d->nr_of_subtitles ); | |
739 } | |
740 | |
741 /** | |
742 * Determine which program chain we want to watch. This is based on the | |
743 * chapter number. | |
744 */ | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
745 pgc_id = vts_file->vts_ptt_srpt->title[ttn].ptt[dvd_chapter].pgcn; // local |
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
746 pgn = vts_file->vts_ptt_srpt->title[ttn].ptt[dvd_chapter].pgn; // local |
15518 | 747 d->cur_pgc = vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc; |
748 d->cur_cell = d->cur_pgc->program_map[pgn-1] - 1; // start playback here | |
749 d->packs_left=-1; // for Navi stuff | |
750 d->angle_seek=0; | |
751 /* XXX dvd_last_chapter is in the range 1..nr_of_ptts */ | |
752 if(dvd_last_chapter > 0 && dvd_last_chapter < tt_srpt->title[dvd_title].nr_of_ptts) { | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
16544
diff
changeset
|
753 pgn=vts_file->vts_ptt_srpt->title[ttn].ptt[dvd_last_chapter].pgn; |
15518 | 754 d->last_cell=d->cur_pgc->program_map[pgn-1] - 1; |
755 } else | |
756 d->last_cell=d->cur_pgc->nr_of_cells; | |
757 | |
758 if(d->cur_pgc->cell_playback[d->cur_cell].block_type == BLOCK_TYPE_ANGLE_BLOCK ) | |
759 d->cur_cell+=dvd_angle; | |
760 d->cur_pack = d->cur_pgc->cell_playback[ d->cur_cell ].first_sector; | |
761 d->cell_last_pack=d->cur_pgc->cell_playback[ d->cur_cell ].last_sector; | |
762 mp_msg(MSGT_DVD,MSGL_V, "DVD start cell: %d pack: 0x%X-0x%X \n",d->cur_cell,d->cur_pack,d->cell_last_pack); | |
763 | |
764 // ... (unimplemented) | |
765 // return NULL; | |
766 stream->type = STREAMTYPE_DVD; | |
767 stream->sector_size = 2048; | |
768 stream->flags = STREAM_READ | STREAM_SEEK; | |
769 stream->fill_buffer = fill_buffer; | |
770 stream->seek = seek; | |
771 stream->close = stream_dvd_close; | |
772 stream->start_pos = (off_t)d->cur_pack*2048; | |
773 stream->end_pos = (off_t)(d->cur_pgc->cell_playback[d->last_cell-1].last_sector)*2048; | |
774 mp_msg(MSGT_DVD,MSGL_V,"DVD start=%d end=%d \n",d->cur_pack,d->cur_pgc->cell_playback[d->last_cell-1].last_sector); | |
775 stream->priv = (void*)d; | |
776 return STREAM_OK; | |
777 } | |
778 #endif | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16770
diff
changeset
|
779 mp_msg(MSGT_DVD,MSGL_ERR,MSGTR_NoDVDSupport); |
15518 | 780 m_struct_free(&stream_opts,opts); |
781 return STREAM_UNSUPORTED; | |
782 } | |
783 | |
784 | |
785 stream_info_t stream_info_dvd = { | |
786 "DVD stream", | |
787 "null", | |
788 "", | |
789 "", | |
790 open_s, | |
791 { "dvd", NULL }, | |
792 &stream_opts, | |
793 1 // Urls are an option string | |
794 }; |