stream_dvd: minor cleanup
[mplayer/glamo.git] / stream / stream_dvd.c
blobbff5011e9060fe58e68361bc16f7092367438458
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include <ctype.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <unistd.h>
24 #include <string.h>
26 #include "config.h"
27 #include "mp_msg.h"
29 #include <libgen.h>
30 #include <errno.h>
32 #define FIRST_AC3_AID 128
33 #define FIRST_DTS_AID 136
34 #define FIRST_MPG_AID 0
35 #define FIRST_PCM_AID 160
37 #include "stream.h"
38 #include "m_option.h"
39 #include "m_struct.h"
41 #include "stream_dvd.h"
42 #include "stream_dvd_common.h"
43 #include "libmpdemux/demuxer.h"
45 static char* dvd_device_current;
46 int dvd_angle=1;
48 #define LIBDVDREAD_VERSION(maj,min,micro) ((maj)*10000 + (min)*100 + (micro))
50 * Try to autodetect the libdvd-0.9.0 library
51 * (0.9.0 removed the <dvdread/dvd_udf.h> header, and moved the two defines
52 * DVD_VIDEO_LB_LEN and MAX_UDF_FILE_NAME_LEN from it to
53 * <dvdread/dvd_reader.h>)
55 #ifndef DVDREAD_VERSION
56 #if defined(DVD_VIDEO_LB_LEN) && defined(MAX_UDF_FILE_NAME_LEN)
57 #define DVDREAD_VERSION LIBDVDREAD_VERSION(0,9,0)
58 #else
59 #define DVDREAD_VERSION LIBDVDREAD_VERSION(0,8,0)
60 #endif
61 #endif
64 static struct stream_priv_s {
65 int title;
66 char* device;
67 } stream_priv_dflts = {
69 NULL
72 #define ST_OFF(f) M_ST_OFF(struct stream_priv_s,f)
73 /// URL definition
74 static const m_option_t stream_opts_fields[] = {
75 { "hostname", ST_OFF(title), CONF_TYPE_INT, M_OPT_RANGE, 1, 99, NULL},
76 { "filename", ST_OFF(device), CONF_TYPE_STRING, 0, 0 ,0, NULL},
77 { NULL, NULL, 0, 0, 0, 0, NULL }
79 static const struct m_struct_st stream_opts = {
80 "dvd",
81 sizeof(struct stream_priv_s),
82 &stream_priv_dflts,
83 stream_opts_fields
86 int dvd_chapter_from_cell(dvd_priv_t* dvd,int title,int cell)
88 pgc_t * cur_pgc;
89 ptt_info_t* ptt;
90 int chapter = cell;
91 int pgc_id,pgn;
92 if(title < 0 || cell < 0){
93 return 0;
95 /* for most DVD's chapter == cell */
96 /* but there are more complecated cases... */
97 if(chapter >= dvd->vmg_file->tt_srpt->title[title].nr_of_ptts) {
98 chapter = dvd->vmg_file->tt_srpt->title[title].nr_of_ptts-1;
100 title = dvd->tt_srpt->title[title].vts_ttn-1;
101 ptt = dvd->vts_file->vts_ptt_srpt->title[title].ptt;
102 while(chapter >= 0) {
103 pgc_id = ptt[chapter].pgcn;
104 pgn = ptt[chapter].pgn;
105 cur_pgc = dvd->vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc;
106 if(cell >= cur_pgc->program_map[pgn-1]-1) {
107 return chapter;
109 --chapter;
111 /* didn't find a chapter ??? */
112 return chapter;
115 int dvd_lang_from_aid(stream_t *stream, int id) {
116 dvd_priv_t *d;
117 int i;
118 if (!stream) return 0;
119 d = stream->priv;
120 if (!d) return 0;
121 for(i=0;i<d->nr_of_channels;i++) {
122 if(d->audio_streams[i].id==id)
123 return d->audio_streams[i].language;
125 return 0;
128 int dvd_aid_from_lang(stream_t *stream, const unsigned char* lang) {
129 dvd_priv_t *d=stream->priv;
130 int code,i;
131 if(lang) {
132 while(strlen(lang)>=2) {
133 code=lang[1]|(lang[0]<<8);
134 for(i=0;i<d->nr_of_channels;i++) {
135 if(d->audio_streams[i].language==code) {
136 mp_tmsg(MSGT_OPEN,MSGL_INFO,"Selected DVD audio channel: %d language: %c%c\n",
137 d->audio_streams[i].id, lang[0],lang[1]);
138 return d->audio_streams[i].id;
140 //printf("%X != %X (%c%c)\n",code,d->audio_streams[i].language,lang[0],lang[1]);
142 lang+=2; while (lang[0]==',' || lang[0]==' ') ++lang;
144 mp_tmsg(MSGT_OPEN,MSGL_WARN,"No matching DVD audio language found!\n");
146 return -1;
149 int dvd_number_of_subs(stream_t *stream) {
150 int i;
151 int maxid = -1;
152 dvd_priv_t *d;
153 if (!stream) return -1;
154 d = stream->priv;
155 if (!d) return -1;
156 for (i = 0; i < d->nr_of_subtitles; i++)
157 if (d->subtitles[i].id > maxid) maxid = d->subtitles[i].id;
158 return maxid + 1;
161 int dvd_lang_from_sid(stream_t *stream, int id) {
162 int i;
163 dvd_priv_t *d;
164 if (!stream) return 0;
165 d = stream->priv;
166 if (!d) return 0;
167 for (i = 0; i < d->nr_of_subtitles; i++)
168 if (d->subtitles[i].id == id && d->subtitles[i].language) return d->subtitles[i].language;
169 return 0;
172 int dvd_sid_from_lang(stream_t *stream, const unsigned char* lang) {
173 dvd_priv_t *d=stream->priv;
174 int code,i;
175 while(lang && strlen(lang)>=2) {
176 code=lang[1]|(lang[0]<<8);
177 for(i=0;i<d->nr_of_subtitles;i++) {
178 if(d->subtitles[i].language==code) {
179 mp_tmsg(MSGT_OPEN,MSGL_INFO,"Selected DVD subtitle channel: %d language: %c%c\n", i, lang[0],lang[1]);
180 return d->subtitles[i].id;
183 lang+=2;
184 while (lang[0]==',' || lang[0]==' ') ++lang;
186 mp_tmsg(MSGT_OPEN,MSGL_WARN,"No matching DVD subtitle language found!\n");
187 return -1;
190 static int dvd_next_cell(dvd_priv_t *d) {
191 int next_cell=d->cur_cell;
193 mp_msg(MSGT_DVD,MSGL_DBG2, "dvd_next_cell: next1=0x%X \n",next_cell);
194 if( d->cur_pgc->cell_playback[ next_cell ].block_type == BLOCK_TYPE_ANGLE_BLOCK ) {
195 while(next_cell<d->last_cell) {
196 if( d->cur_pgc->cell_playback[next_cell].block_mode == BLOCK_MODE_LAST_CELL )
197 break;
198 ++next_cell;
201 mp_msg(MSGT_DVD,MSGL_DBG2, "dvd_next_cell: next2=0x%X \n",next_cell);
203 ++next_cell;
204 if(next_cell>=d->last_cell)
205 return -1; // EOF
206 if(d->cur_pgc->cell_playback[next_cell].block_type == BLOCK_TYPE_ANGLE_BLOCK ) {
207 next_cell+=dvd_angle;
208 if(next_cell>=d->last_cell)
209 return -1; // EOF
211 mp_msg(MSGT_DVD,MSGL_DBG2, "dvd_next_cell: next3=0x%X \n",next_cell);
212 return next_cell;
215 static int dvd_read_sector(dvd_priv_t *d, unsigned char *data)
217 int len;
219 if(d->packs_left==0) {
221 * If we're not at the end of this cell, we can determine the next
222 * VOBU to display using the VOBU_SRI information section of the
223 * DSI. Using this value correctly follows the current angle,
224 * avoiding the doubled scenes in The Matrix, and makes our life
225 * really happy.
227 * Otherwise, we set our next address past the end of this cell to
228 * force the code above to go to the next cell in the program.
230 if(d->dsi_pack.vobu_sri.next_vobu != SRI_END_OF_CELL) {
231 d->cur_pack= d->dsi_pack.dsi_gi.nv_pck_lbn + ( d->dsi_pack.vobu_sri.next_vobu & 0x7fffffff );
232 mp_msg(MSGT_DVD,MSGL_DBG2, "Navi new pos=0x%X \n",d->cur_pack);
233 } else {
234 // end of cell! find next cell!
235 mp_msg(MSGT_DVD,MSGL_V, "--- END OF CELL !!! ---\n");
236 d->cur_pack=d->cell_last_pack+1;
240 read_next:
241 if(d->cur_pack>d->cell_last_pack) {
242 // end of cell!
243 int next=dvd_next_cell(d);
244 if(next>=0) {
245 d->cur_cell=next;
246 // if( d->cur_pgc->cell_playback[d->cur_cell].block_type
247 // == BLOCK_TYPE_ANGLE_BLOCK ) d->cur_cell+=dvd_angle;
248 d->cur_pack = d->cur_pgc->cell_playback[ d->cur_cell ].first_sector;
249 d->cell_last_pack=d->cur_pgc->cell_playback[ d->cur_cell ].last_sector;
250 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);
251 } else
252 return -1; // EOF
255 len = DVDReadBlocks(d->title, d->cur_pack, 1, data);
256 // only == 0 should indicate an error, but some dvdread version are buggy when used with dvdcss
257 if(len <= 0) return -1; //error
259 if(data[38]==0 && data[39]==0 && data[40]==1 && data[41]==0xBF &&
260 data[1024]==0 && data[1025]==0 && data[1026]==1 && data[1027]==0xBF) {
261 // found a Navi packet!!!
262 #if DVDREAD_VERSION >= LIBDVDREAD_VERSION(0,9,0)
263 navRead_DSI(&d->dsi_pack, &(data[ DSI_START_BYTE ]));
264 #else
265 navRead_DSI(&d->dsi_pack, &(data[ DSI_START_BYTE ]), sizeof(dsi_t));
266 #endif
267 if(d->cur_pack != d->dsi_pack.dsi_gi.nv_pck_lbn ) {
268 mp_msg(MSGT_DVD,MSGL_V, "Invalid NAVI packet! lba=0x%X navi=0x%X \n",
269 d->cur_pack,d->dsi_pack.dsi_gi.nv_pck_lbn);
270 } else {
271 // process!
272 d->packs_left = d->dsi_pack.dsi_gi.vobu_ea;
273 mp_msg(MSGT_DVD,MSGL_DBG2, "Found NAVI packet! lba=0x%X len=%d \n",d->cur_pack,d->packs_left);
274 //navPrint_DSI(&d->dsi_pack);
275 mp_msg(MSGT_DVD,MSGL_DBG3,"\r### CELL %d: Navi: %d/%d IFO: %d/%d \n",d->cur_cell,
276 d->dsi_pack.dsi_gi.vobu_c_idn,d->dsi_pack.dsi_gi.vobu_vob_idn,
277 d->cur_pgc->cell_position[d->cur_cell].cell_nr,
278 d->cur_pgc->cell_position[d->cur_cell].vob_id_nr);
280 if(d->angle_seek) {
281 int i,skip=0;
282 #if defined(__GNUC__) && ( defined(__sparc__) || defined(hpux) )
283 // workaround for a bug in the sparc/hpux version of gcc 2.95.X ... 3.2,
284 // it generates incorrect code for unaligned access to a packed
285 // structure member, resulting in an mplayer crash with a SIGBUS
286 // signal.
288 // See also gcc problem report PR c/7847:
289 // http://gcc.gnu.org/cgi-bin/gnatsweb.pl?database=gcc&cmd=view+audit-trail&pr=7847
290 for(i=0;i<9;i++) { // check if all values zero:
291 __typeof__(d->dsi_pack.sml_agli.data[i].address) tmp_addr;
292 memcpy(&tmp_addr,&d->dsi_pack.sml_agli.data[i].address,sizeof(tmp_addr));
293 if((skip=tmp_addr)!=0) break;
295 #else
296 for(i=0;i<9;i++) // check if all values zero:
297 if((skip=d->dsi_pack.sml_agli.data[i].address)!=0) break;
298 #endif
299 if(skip && skip!=0x7fffffff) {
300 // sml_agli table has valid data (at least one non-zero):
301 d->cur_pack=d->dsi_pack.dsi_gi.nv_pck_lbn+
302 d->dsi_pack.sml_agli.data[dvd_angle].address;
303 d->angle_seek=0;
304 d->cur_pack--;
305 mp_msg(MSGT_DVD,MSGL_V, "Angle-seek synced using sml_agli map! new_lba=0x%X \n",d->cur_pack);
306 } else {
307 // check if we're in the right cell, jump otherwise:
308 if( (d->dsi_pack.dsi_gi.vobu_c_idn==d->cur_pgc->cell_position[d->cur_cell].cell_nr) &&
309 (d->dsi_pack.dsi_gi.vobu_vob_idn==d->cur_pgc->cell_position[d->cur_cell].vob_id_nr) ){
310 d->angle_seek=0;
311 mp_msg(MSGT_DVD,MSGL_V, "Angle-seek synced by cell/vob IDN search! \n");
312 } else {
313 // wrong angle, skip this vobu:
314 d->cur_pack=d->dsi_pack.dsi_gi.nv_pck_lbn+
315 d->dsi_pack.dsi_gi.vobu_ea;
316 d->angle_seek=2; // DEBUG
321 ++d->cur_pack;
322 goto read_next;
325 ++d->cur_pack;
326 if(d->packs_left>=0) --d->packs_left;
328 if(d->angle_seek) {
329 if(d->angle_seek==2) mp_msg(MSGT_DVD,MSGL_V, "!!! warning! reading packet while angle_seek !!!\n");
330 goto read_next; // searching for Navi packet
333 return d->cur_pack-1;
336 static void dvd_seek(dvd_priv_t *d, int pos)
338 d->packs_left=-1;
339 d->cur_pack=pos;
341 // check if we stay in current cell (speedup things, and avoid angle skip)
342 if(d->cur_pack>d->cell_last_pack ||
343 d->cur_pack<d->cur_pgc->cell_playback[ d->cur_cell ].first_sector) {
345 // ok, cell change, find the right cell!
346 cell_playback_t *cell;
347 for(d->cur_cell=0; d->cur_cell < d->cur_pgc->nr_of_cells; d->cur_cell++) {
348 cell = &(d->cur_pgc->cell_playback[d->cur_cell]);
349 if(cell->block_type == BLOCK_TYPE_ANGLE_BLOCK && cell->block_mode != BLOCK_MODE_FIRST_CELL)
350 continue;
351 d->cell_last_pack=cell->last_sector;
352 if(d->cur_pack<cell->first_sector) {
353 d->cur_pack=cell->first_sector;
354 break;
356 if(d->cur_pack<=d->cell_last_pack) break; // ok, we find it! :)
360 mp_msg(MSGT_DVD,MSGL_V, "DVD Seek! lba=0x%X cell=%d packs: 0x%X-0x%X \n",
361 d->cur_pack,d->cur_cell,d->cur_pgc->cell_playback[ d->cur_cell ].first_sector,d->cell_last_pack);
363 // if we're in interleaved multi-angle cell, find the right angle chain!
364 // (read Navi block, and use the seamless angle jump table)
365 d->angle_seek=1;
368 static void dvd_close(dvd_priv_t *d)
370 ifoClose(d->vts_file);
371 ifoClose(d->vmg_file);
372 DVDCloseFile(d->title);
373 DVDClose(d->dvd);
374 dvd_set_speed(dvd_device_current, -1); /* -1 => restore default */
377 static int fill_buffer(stream_t *s, char *but, int len)
379 off_t pos=dvd_read_sector(s->priv,s->buffer);
380 if (pos < 0)
381 return -1;
382 s->pos = 2048*(pos - 1);
383 return 2048; // full sector
386 static int seek(stream_t *s, off_t newpos) {
387 s->pos=newpos; // real seek
388 dvd_seek(s->priv,s->pos/2048);
389 return 1;
392 static void stream_dvd_close(stream_t *s) {
393 dvd_close(s->priv);
396 static int mp_get_titleset_length(ifo_handle_t *vts_file, tt_srpt_t *tt_srpt, int title_no)
398 int vts_ttn; ///< title number within video title set
399 int pgc_no; ///< program chain number
400 int msec; ///< time length in milliseconds
402 msec=0;
403 if(!vts_file || !tt_srpt)
404 return 0;
406 if(vts_file->vtsi_mat && vts_file->vts_pgcit)
408 vts_ttn = tt_srpt->title[title_no].vts_ttn - 1;
409 pgc_no = vts_file->vts_ptt_srpt->title[vts_ttn].ptt[0].pgcn - 1;
410 msec = mp_dvdtimetomsec(&vts_file->vts_pgcit->pgci_srp[pgc_no].pgc->playback_time);
412 return msec;
416 static int mp_describe_titleset(dvd_reader_t *dvd, tt_srpt_t *tt_srpt, int vts_no)
418 ifo_handle_t *vts_file;
419 int title_no, msec=0;
421 vts_file = ifoOpen(dvd, vts_no);
422 if(!vts_file)
423 return 0;
425 if(!vts_file->vtsi_mat || !vts_file->vts_pgcit)
427 ifoClose(vts_file);
428 return 0;
431 for(title_no = 0; title_no < tt_srpt->nr_of_srpts; title_no++)
433 if (tt_srpt->title[title_no].title_set_nr != vts_no)
434 continue;
435 msec = mp_get_titleset_length(vts_file, tt_srpt, title_no);
436 mp_msg(MSGT_IDENTIFY, MSGL_V, "ID_DVD_TITLE_%d_LENGTH=%d.%03d\n", title_no + 1, msec / 1000, msec % 1000);
438 ifoClose(vts_file);
439 return 1;
442 static int get_num_chapter(ifo_handle_t *vts_file, tt_srpt_t *tt_srpt, int title_no)
444 if(!vts_file || !tt_srpt)
445 return 0;
447 if(title_no < 0 || title_no >= tt_srpt->nr_of_srpts)
448 return 0;
450 // map global title to vts title
451 title_no = tt_srpt->title[title_no].vts_ttn - 1;
453 if(title_no < 0 || title_no >= vts_file->vts_ptt_srpt->nr_of_srpts)
454 return 0;
456 return vts_file->vts_ptt_srpt->title[title_no].nr_of_ptts;
459 static int seek_to_chapter(stream_t *stream, ifo_handle_t *vts_file, tt_srpt_t *tt_srpt, int title_no, int chapter)
461 dvd_priv_t *d = stream->priv;
462 ptt_info_t ptt;
463 pgc_t *pgc;
464 off_t pos;
466 if(!vts_file || !tt_srpt)
467 return 0;
469 if(title_no < 0 || title_no >= tt_srpt->nr_of_srpts)
470 return 0;
472 // map global title to vts title
473 title_no = tt_srpt->title[title_no].vts_ttn - 1;
475 if(title_no < 0 || title_no >= vts_file->vts_ptt_srpt->nr_of_srpts)
476 return 0;
478 if(chapter < 0 || chapter > vts_file->vts_ptt_srpt->title[title_no].nr_of_ptts-1) //no such chapter
479 return 0;
481 ptt = vts_file->vts_ptt_srpt->title[title_no].ptt[chapter];
482 pgc = vts_file->vts_pgcit->pgci_srp[ptt.pgcn-1].pgc;
484 d->cur_cell = pgc->program_map[ptt.pgn - 1] - 1;
485 if(pgc->cell_playback[d->cur_cell].block_type == BLOCK_TYPE_ANGLE_BLOCK)
486 d->cur_cell += dvd_angle;
487 d->cur_pack = pgc->cell_playback[d->cur_cell].first_sector;
488 d->cell_last_pack = pgc->cell_playback[d->cur_cell].last_sector;
490 d->packs_left = -1;
491 d->angle_seek = 0;
493 pos = (off_t) d->cur_pack * 2048;
494 mp_msg(MSGT_OPEN,MSGL_V,"\r\nSTREAM_DVD, seeked to chapter: %d, cell: %u, pos: %"PRIu64"\n",
495 chapter, d->cur_pack, pos);
497 return chapter;
500 static void list_chapters(ifo_handle_t *vts_file, tt_srpt_t *tt_srpt, int title_no)
502 unsigned int i, cell, last_cell;
503 unsigned int t=0;
504 ptt_info_t *ptt;
505 pgc_t *pgc;
507 title_no = tt_srpt->title[title_no].vts_ttn - 1;
508 if(vts_file->vts_ptt_srpt->title[title_no].nr_of_ptts < 2)
509 return;
510 ptt = vts_file->vts_ptt_srpt->title[title_no].ptt;
512 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "CHAPTERS: ");
513 for(i=0; i<vts_file->vts_ptt_srpt->title[title_no].nr_of_ptts; i++)
515 pgc = vts_file->vts_pgcit->pgci_srp[ptt[i].pgcn-1].pgc;
516 cell = pgc->program_map[ptt[i].pgn-1]; //here the cell is 1-based
517 if(ptt[i].pgn<pgc->nr_of_programs)
518 last_cell = pgc->program_map[ptt[i].pgn];
519 else
520 last_cell = 0;
521 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "%02d:%02d:%02d.%03d,", t/3600000, (t/60000)%60, (t/1000)%60, t%1000);
522 do {
523 if(!(pgc->cell_playback[cell-1].block_type == BLOCK_TYPE_ANGLE_BLOCK &&
524 pgc->cell_playback[cell-1].block_mode != BLOCK_MODE_FIRST_CELL)
526 t += mp_dvdtimetomsec(&pgc->cell_playback[cell-1].playback_time);
527 cell++;
528 } while(cell < last_cell);
530 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "\n");
533 static double dvd_get_current_time(stream_t *stream, int cell)
535 int i, tm;
536 dvd_priv_t *d = stream->priv;
538 tm=0;
539 if(!cell) cell=d->cur_cell;
540 for(i=0; i<d->cur_cell; i++) {
541 if(d->cur_pgc->cell_playback[i].block_type == BLOCK_TYPE_ANGLE_BLOCK &&
542 d->cur_pgc->cell_playback[i].block_mode != BLOCK_MODE_FIRST_CELL
544 continue;
545 tm += d->cell_times_table[i];
547 tm += mp_dvdtimetomsec(&d->dsi_pack.dsi_gi.c_eltm);
549 return (double)tm/1000.0;
552 static int dvd_seek_to_time(stream_t *stream, ifo_handle_t *vts_file, double sec)
554 unsigned int i, j, k, timeunit, ac_time, tmap_sector=0, cell_sector=0, vobu_sector=0;
555 int t=0;
556 double tm, duration;
557 off_t pos = -1;
558 dvd_priv_t *d = stream->priv;
559 vts_tmapt_t *vts_tmapt = vts_file->vts_tmapt;
561 if(!vts_file->vts_tmapt || sec < 0)
562 return 0;
564 duration = (double) mp_get_titleset_length(d->vts_file, d->tt_srpt, d->cur_title-1) / 1000.0f;
565 if(sec > duration)
566 return 0;
568 i=d->cur_pgc_idx;
569 timeunit = vts_tmapt->tmap[i].tmu;
570 for(j = 0; j < vts_tmapt->tmap[i].nr_of_entries; j++) {
571 ac_time = timeunit * (j + 1);
572 if(ac_time >= sec)
573 break;
574 tmap_sector = vts_tmapt->tmap[i].map_ent[j] & 0x7fffffff;
576 //search enclosing cell
577 for(i=0; i<d->cur_pgc->nr_of_cells; i++) {
578 if(tmap_sector >= d->cur_pgc->cell_playback[i].first_sector && tmap_sector <= d->cur_pgc->cell_playback[i].last_sector) {
579 cell_sector = d->cur_pgc->cell_playback[i].first_sector;
580 break;
584 pos = ((off_t)cell_sector)<<11;
585 stream_seek(stream, pos);
586 do {
587 stream_skip(stream, 2048);
588 t = mp_dvdtimetomsec(&d->dsi_pack.dsi_gi.c_eltm);
589 } while(!t);
590 tm = dvd_get_current_time(stream, 0);
592 pos = ((off_t)tmap_sector)<<11;
593 stream_seek(stream, pos);
594 //now get current time in terms of the cell+cell time offset
595 memset(&d->dsi_pack.dsi_gi.c_eltm, 0, sizeof(dvd_time_t));
596 while(tm <= sec) {
597 if(!stream_skip(stream, 2048))
598 break;
599 tm = dvd_get_current_time(stream, 0);
601 tmap_sector = stream->pos >> 11;
603 //search closest VOBU sector
604 k=(vts_file->vts_vobu_admap->last_byte + 1 - VOBU_ADMAP_SIZE)/4; //entries in the vobu admap
605 for(i=1; i<k; i++) {
606 if(vts_file->vts_vobu_admap->vobu_start_sectors[i] > tmap_sector)
607 break;
609 vobu_sector = vts_file->vts_vobu_admap->vobu_start_sectors[i-1];
610 pos = ((off_t)vobu_sector) << 11;
611 stream_seek(stream, pos);
613 return 1;
616 static int control(stream_t *stream,int cmd,void* arg)
618 dvd_priv_t *d = stream->priv;
619 switch(cmd)
621 case STREAM_CTRL_GET_TIME_LENGTH:
623 *((double *)arg) = (double) mp_get_titleset_length(d->vts_file, d->tt_srpt, d->cur_title-1)/1000.0;
624 return 1;
626 case STREAM_CTRL_GET_NUM_CHAPTERS:
628 int r;
629 r = get_num_chapter(d->vts_file, d->tt_srpt, d->cur_title-1);
630 if(! r) return STREAM_UNSUPPORTED;
631 *((unsigned int *)arg) = r;
632 return 1;
634 case STREAM_CTRL_SEEK_TO_CHAPTER:
636 int r;
637 r = seek_to_chapter(stream, d->vts_file, d->tt_srpt, d->cur_title-1, *((unsigned int *)arg));
638 if(! r) return STREAM_UNSUPPORTED;
640 return 1;
642 case STREAM_CTRL_GET_CURRENT_CHAPTER:
644 *((unsigned int *)arg) = dvd_chapter_from_cell(d, d->cur_title-1, d->cur_cell);
645 return 1;
647 case STREAM_CTRL_GET_CURRENT_TIME:
649 double tm;
650 tm = dvd_get_current_time(stream, 0);
651 if(tm != -1) {
652 *((double *)arg) = tm;
653 return 1;
655 break;
657 case STREAM_CTRL_SEEK_TO_TIME:
659 if(dvd_seek_to_time(stream, d->vts_file, *((double*)arg)))
660 return 1;
661 break;
663 case STREAM_CTRL_GET_ASPECT_RATIO:
665 *((double *)arg) = !d->vts_file->vtsi_mat->vts_video_attr.display_aspect_ratio ? 4.0/3.0 : 16.0/9.0;
666 return 1;
668 case STREAM_CTRL_GET_NUM_ANGLES:
670 *((int *)arg) = d->vmg_file->tt_srpt->title[dvd_title].nr_of_angles;
671 return 1;
673 case STREAM_CTRL_GET_ANGLE:
675 *((int *)arg) = dvd_angle+1;
676 return 1;
678 case STREAM_CTRL_SET_ANGLE:
680 int ang = *((int *)arg);
681 if(ang>d->vmg_file->tt_srpt->title[dvd_title].nr_of_angles || ang<=0)
682 break;
683 dvd_angle = ang - 1;
684 d->angle_seek = 1;
685 return 1;
688 return STREAM_UNSUPPORTED;
692 static int open_s(stream_t *stream,int mode, void* opts, int* file_format) {
693 struct stream_priv_s* p = (struct stream_priv_s*)opts;
694 int k;
696 mp_msg(MSGT_OPEN,MSGL_V,"URL: %s\n", stream->url);
697 dvd_title = p->title;
698 if(1){
699 //int ret,ret2;
700 dvd_priv_t *d;
701 int ttn,pgc_id,pgn;
702 dvd_reader_t *dvd;
703 dvd_file_t *title;
704 ifo_handle_t *vmg_file;
705 tt_srpt_t *tt_srpt;
706 ifo_handle_t *vts_file;
707 pgc_t *pgc;
709 * Open the disc.
711 if(p->device)
712 dvd_device_current = p->device;
713 else if(dvd_device)
714 dvd_device_current = dvd_device;
715 else
716 dvd_device_current = DEFAULT_DVD_DEVICE;
717 dvd_set_speed(dvd_device_current, dvd_speed);
718 #if defined(__APPLE__) || defined(__DARWIN__)
719 /* Dynamic DVD drive selection on Darwin */
720 if(!strcmp(dvd_device_current, "/dev/rdiskN")) {
721 int i;
722 size_t len = strlen(dvd_device_current)+1;
723 char *temp_device = malloc(len);
725 for (i = 1; i < 10; i++) {
726 snprintf(temp_device, len, "/dev/rdisk%d", i);
727 dvd = DVDOpen(temp_device);
728 if(!dvd) {
729 mp_tmsg(MSGT_OPEN,MSGL_ERR,"Couldn't open DVD device: %s (%s)\n",temp_device, strerror(errno));
730 } else {
731 #if DVDREAD_VERSION <= LIBDVDREAD_VERSION(0,9,4)
732 dvd_file_t *dvdfile = DVDOpenFile(dvd,dvd_title,DVD_READ_INFO_FILE);
733 if(!dvdfile) {
734 mp_tmsg(MSGT_OPEN,MSGL_ERR,"Couldn't open DVD device: %s (%s)\n",temp_device, strerror(errno));
735 DVDClose(dvd);
736 continue;
738 DVDCloseFile(dvdfile);
739 #endif
740 break;
743 free(temp_device);
745 if(!dvd) {
746 m_struct_free(&stream_opts,opts);
747 return STREAM_UNSUPPORTED;
749 } else
750 #endif /* defined(__APPLE__) || defined(__DARWIN__) */
752 dvd = DVDOpen(dvd_device_current);
753 if(!dvd) {
754 mp_tmsg(MSGT_OPEN,MSGL_ERR,"Couldn't open DVD device: %s (%s)\n",dvd_device_current, strerror(errno));
755 m_struct_free(&stream_opts,opts);
756 return STREAM_UNSUPPORTED;
760 mp_msg(MSGT_OPEN,MSGL_V,"Reading disc structure, please wait...\n");
763 * Load the video manager to find out the information about the titles on
764 * this disc.
766 vmg_file = ifoOpen(dvd, 0);
767 if(!vmg_file) {
768 mp_tmsg(MSGT_OPEN,MSGL_ERR, "Can't open VMG info!\n");
769 DVDClose( dvd );
770 m_struct_free(&stream_opts,opts);
771 return STREAM_UNSUPPORTED;
773 tt_srpt = vmg_file->tt_srpt;
774 if (mp_msg_test(MSGT_IDENTIFY, MSGL_INFO))
776 int title_no; ///< title number
777 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_DVD_TITLES=%d\n", tt_srpt->nr_of_srpts);
778 for (title_no = 0; title_no < tt_srpt->nr_of_srpts; title_no++)
780 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_DVD_TITLE_%d_CHAPTERS=%d\n", title_no + 1, tt_srpt->title[title_no].nr_of_ptts);
781 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_DVD_TITLE_%d_ANGLES=%d\n", title_no + 1, tt_srpt->title[title_no].nr_of_angles);
784 if (mp_msg_test(MSGT_IDENTIFY, MSGL_V))
786 char volid[32];
787 unsigned char discid [16]; ///< disk ID, a 128 bit MD5 sum
788 int vts_no; ///< video title set number
789 for (vts_no = 1; vts_no <= vmg_file->vts_atrt->nr_of_vtss; vts_no++)
790 mp_describe_titleset(dvd, tt_srpt, vts_no);
791 if (DVDDiscID(dvd, discid) >= 0)
793 int i;
794 mp_msg(MSGT_IDENTIFY, MSGL_V, "ID_DVD_DISC_ID=");
795 for (i = 0; i < 16; i ++)
796 mp_msg(MSGT_IDENTIFY, MSGL_V, "%02X", discid[i]);
797 mp_msg(MSGT_IDENTIFY, MSGL_V, "\n");
799 if (DVDUDFVolumeInfo(dvd, volid, sizeof(volid), NULL, 0) >= 0 || DVDISOVolumeInfo(dvd, volid, sizeof(volid), NULL, 0) >= 0)
800 mp_msg(MSGT_IDENTIFY, MSGL_V, "ID_DVD_VOLUME_ID=%s\n", volid);
803 * Make sure our title number is valid.
805 mp_tmsg(MSGT_OPEN,MSGL_STATUS, "There are %d titles on this DVD.\n", tt_srpt->nr_of_srpts );
806 if(dvd_title < 1 || dvd_title > tt_srpt->nr_of_srpts) {
807 mp_tmsg(MSGT_OPEN,MSGL_ERR, "Invalid DVD title number: %d\n", dvd_title);
808 ifoClose( vmg_file );
809 DVDClose( dvd );
810 m_struct_free(&stream_opts,opts);
811 return STREAM_UNSUPPORTED;
813 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_DVD_CURRENT_TITLE=%d\n", dvd_title);
814 --dvd_title; // remap 1.. -> 0..
816 * Make sure the angle number is valid for this title.
818 mp_tmsg(MSGT_OPEN,MSGL_STATUS, "There are %d angles in this DVD title.\n", tt_srpt->title[dvd_title].nr_of_angles);
819 if(dvd_angle<1 || dvd_angle>tt_srpt->title[dvd_title].nr_of_angles) {
820 mp_tmsg(MSGT_OPEN,MSGL_ERR, "Invalid DVD angle number: %d\n", dvd_angle);
821 goto fail;
823 --dvd_angle; // remap 1.. -> 0..
825 ttn = tt_srpt->title[dvd_title].vts_ttn - 1;
827 * Load the VTS information for the title set our title is in.
829 vts_file = ifoOpen( dvd, tt_srpt->title[dvd_title].title_set_nr );
830 if(!vts_file) {
831 mp_tmsg(MSGT_OPEN,MSGL_ERR, "Cannot open the IFO file for DVD title %d.\n", tt_srpt->title[dvd_title].title_set_nr );
832 goto fail;
835 * We've got enough info, time to open the title set data.
837 title = DVDOpenFile(dvd, tt_srpt->title[dvd_title].title_set_nr, DVD_READ_TITLE_VOBS);
838 if(!title) {
839 mp_tmsg(MSGT_OPEN,MSGL_ERR, "Cannot open title VOBS (VTS_%02d_1.VOB).\n", tt_srpt->title[dvd_title].title_set_nr);
840 ifoClose( vts_file );
841 goto fail;
844 mp_msg(MSGT_OPEN,MSGL_V, "DVD successfully opened.\n");
845 // store data
846 d=malloc(sizeof(dvd_priv_t)); memset(d,0,sizeof(dvd_priv_t));
847 d->dvd=dvd;
848 d->title=title;
849 d->vmg_file=vmg_file;
850 d->tt_srpt=tt_srpt;
851 d->vts_file=vts_file;
852 d->cur_title = dvd_title+1;
854 pgc = vts_file->vts_pgcit ? vts_file->vts_pgcit->pgci_srp[ttn].pgc : NULL;
856 * Check number of audio channels and types
859 d->nr_of_channels=0;
860 if(vts_file->vts_pgcit) {
861 int i;
862 for(i=0;i<8;i++)
863 if(pgc->audio_control[i] & 0x8000) {
864 audio_attr_t * audio = &vts_file->vtsi_mat->vts_audio_attr[i];
865 int language = 0;
866 char tmp[] = "unknown";
867 stream_language_t *audio_stream = &d->audio_streams[d->nr_of_channels];
869 if(audio->lang_type == 1) {
870 language=audio->lang_code;
871 tmp[0]=language>>8;
872 tmp[1]=language&0xff;
873 tmp[2]=0;
876 audio_stream->language=language;
877 audio_stream->id=pgc->audio_control[i] >> 8 & 7;
878 switch(audio->audio_format) {
879 case 0: // ac3
880 audio_stream->id+=FIRST_AC3_AID;
881 break;
882 case 6: // dts
883 audio_stream->id+=FIRST_DTS_AID;
884 break;
885 case 2: // mpeg layer 1/2/3
886 case 3: // mpeg2 ext
887 audio_stream->id+=FIRST_MPG_AID;
888 break;
889 case 4: // lpcm
890 audio_stream->id+=FIRST_PCM_AID;
891 break;
894 audio_stream->type=audio->audio_format;
895 // Pontscho: to my mind, tha channels:
896 // 1 - stereo
897 // 5 - 5.1
898 audio_stream->channels=audio->channels;
899 mp_tmsg(MSGT_OPEN,MSGL_STATUS,"audio stream: %d format: %s (%s) language: %s aid: %d.\n",
900 d->nr_of_channels,
901 dvd_audio_stream_types[ audio->audio_format ],
902 dvd_audio_stream_channels[ audio->channels ],
903 tmp,
904 audio_stream->id
906 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_ID=%d\n", audio_stream->id);
907 if(language && tmp[0])
908 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AID_%d_LANG=%s\n", audio_stream->id, tmp);
910 d->nr_of_channels++;
913 mp_tmsg(MSGT_OPEN,MSGL_STATUS,"number of audio channels on disk: %d.\n",d->nr_of_channels );
917 * Check number of subtitles and language
920 int i;
922 d->nr_of_subtitles=0;
923 for(i=0;i<32;i++)
924 if(pgc->subp_control[i] & 0x80000000) {
925 subp_attr_t * subtitle = &vts_file->vtsi_mat->vts_subp_attr[i];
926 video_attr_t *video = &vts_file->vtsi_mat->vts_video_attr;
927 int language = 0;
928 char tmp[] = "unknown";
929 stream_language_t *sub_stream = &d->subtitles[d->nr_of_subtitles];
931 if(subtitle->type == 1) {
932 language=subtitle->lang_code;
933 tmp[0]=language>>8;
934 tmp[1]=language&0xff;
935 tmp[2]=0;
938 sub_stream->language=language;
939 sub_stream->id=d->nr_of_subtitles;
940 if(video->display_aspect_ratio == 0) /* 4:3 */
941 sub_stream->id = pgc->subp_control[i] >> 24 & 31;
942 else if(video->display_aspect_ratio == 3) /* 16:9 */
943 sub_stream->id = pgc->subp_control[i] >> 8 & 31;
945 mp_tmsg(MSGT_OPEN,MSGL_STATUS,"subtitle ( sid ): %d language: %s\n", sub_stream->id, tmp);
946 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SUBTITLE_ID=%d\n", sub_stream->id);
947 if(language && tmp[0])
948 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SID_%d_LANG=%s\n", sub_stream->id, tmp);
949 d->nr_of_subtitles++;
951 mp_tmsg(MSGT_OPEN,MSGL_STATUS,"number of subtitles on disk: %d\n",d->nr_of_subtitles);
955 * Determine which program chain we want to watch. This is based on the
956 * chapter number.
958 pgc_id = vts_file->vts_ptt_srpt->title[ttn].ptt[0].pgcn; // local
959 pgn = vts_file->vts_ptt_srpt->title[ttn].ptt[0].pgn; // local
960 d->cur_pgc_idx = pgc_id-1;
961 d->cur_pgc = vts_file->vts_pgcit->pgci_srp[pgc_id-1].pgc;
962 d->cur_cell = d->cur_pgc->program_map[pgn-1] - 1; // start playback here
963 d->packs_left=-1; // for Navi stuff
964 d->angle_seek=0;
965 d->last_cell=d->cur_pgc->nr_of_cells;
967 if(d->cur_pgc->cell_playback[d->cur_cell].block_type == BLOCK_TYPE_ANGLE_BLOCK )
968 d->cur_cell+=dvd_angle;
969 d->cur_pack = d->cur_pgc->cell_playback[ d->cur_cell ].first_sector;
970 d->cell_last_pack=d->cur_pgc->cell_playback[ d->cur_cell ].last_sector;
971 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);
973 //assign cell_times_table
974 d->cell_times_table = malloc(sizeof(unsigned int) * d->cur_pgc->nr_of_cells);
975 if(d->cell_times_table == NULL)
976 return STREAM_UNSUPPORTED;
977 for(k=0; k<d->cur_pgc->nr_of_cells; k++)
978 d->cell_times_table[k] = mp_dvdtimetomsec(&d->cur_pgc->cell_playback[k].playback_time);
979 list_chapters(vts_file,tt_srpt,dvd_title);
981 // ... (unimplemented)
982 // return NULL;
983 stream->type = STREAMTYPE_DVD;
984 stream->sector_size = 2048;
985 stream->flags = STREAM_READ | MP_STREAM_SEEK;
986 stream->fill_buffer = fill_buffer;
987 stream->seek = seek;
988 stream->control = control;
989 stream->close = stream_dvd_close;
990 stream->start_pos = (off_t)d->cur_pack*2048;
991 stream->end_pos = (off_t)(d->cur_pgc->cell_playback[d->last_cell-1].last_sector)*2048;
992 *file_format = DEMUXER_TYPE_MPEG_PS;
993 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);
994 stream->priv = (void*)d;
995 return STREAM_OK;
997 fail:
998 ifoClose(vmg_file);
999 DVDClose(dvd);
1000 m_struct_free(&stream_opts, opts);
1001 return STREAM_UNSUPPORTED;
1003 mp_tmsg(MSGT_DVD,MSGL_ERR,"MPlayer was compiled without DVD support, exiting.\n");
1004 m_struct_free(&stream_opts,opts);
1005 return STREAM_UNSUPPORTED;
1008 static int ifo_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
1010 char* filename;
1011 struct stream_priv_s *spriv;
1012 int len = strlen(stream->url);
1014 if (len < 4 || strcasecmp (stream->url + len - 4, ".ifo"))
1015 return STREAM_UNSUPPORTED;
1017 mp_msg(MSGT_DVD, MSGL_INFO, ".IFO detected. Redirecting to dvd://\n");
1019 filename = strdup(basename(stream->url));
1021 spriv=calloc(1, sizeof(struct stream_priv_s));
1022 spriv->device = strdup(dirname(stream->url));
1023 if(!strncasecmp(filename,"vts_",4))
1025 if(sscanf(filename+3, "_%02d_", &spriv->title)!=1)
1026 spriv->title=1;
1027 }else
1028 spriv->title=1;
1030 free(filename);
1031 free(stream->url);
1032 stream->url=strdup("dvd://");
1034 return open_s(stream, mode, spriv, file_format);
1037 const stream_info_t stream_info_dvd = {
1038 "DVD stream",
1039 "null",
1042 open_s,
1043 { "dvd", NULL },
1044 &stream_opts,
1045 1 // Urls are an option string
1048 const stream_info_t stream_info_ifo = {
1049 "DVD IFO input",
1050 "ifo",
1051 "Benjamin Zores",
1052 "Mostly used to play DVDs on disk through OSD Menu",
1053 ifo_stream_open,
1054 { "file", "", NULL },
1055 NULL,