1 diff -Naur dvdread.orig/bswap.h dvdread/bswap.h
2 --- dvdread.orig/bswap.h 2005-06-23 00:18:54.000000000 +0200
3 +++ dvdread/bswap.h 2005-06-23 00:19:10.000000000 +0200
5 #define B2N_32(x) x = be32toh(x)
6 #define B2N_64(x) x = be64toh(x)
8 +#elif defined(__DragonFly__)
9 +#include <sys/endian.h>
10 +#define B2N_16(x) x = be16toh(x)
11 +#define B2N_32(x) x = be32toh(x)
12 +#define B2N_64(x) x = be64toh(x)
14 +#elif defined(ARCH_X86)
15 +inline static unsigned short bswap_16(unsigned short x)
17 + __asm("xchgb %b0,%h0" :
22 +#define B2N_16(x) x = bswap_16(x)
24 +inline static unsigned int bswap_32(unsigned int x)
39 +#define B2N_32(x) x = bswap_32(x)
41 +inline static unsigned long long int bswap_64(unsigned long long int x)
43 + register union { __extension__ uint64_t __ll;
44 + uint32_t __l[2]; } __x;
46 + "=r"(__x.__l[0]),"=r"(__x.__l[1]):
47 + "0"(bswap_32((unsigned long)x)),"1"(bswap_32((unsigned long)(x>>32))));
50 +#define B2N_64(x) x = bswap_64(x)
52 /* This is a slow but portable implementation, it has multiple evaluation
54 * Old FreeBSD's and Solaris don't have <byteswap.h> or any other such
58 -#elif defined(__FreeBSD__) || defined(__sun) || defined(__bsdi__)
59 +#elif defined(__FreeBSD__) || defined(__sun) || defined(__bsdi__) || defined(__CYGWIN__)
61 x = ((((x) & 0xff00) >> 8) | \
62 (((x) & 0x00ff) << 8))
63 diff -Naur dvdread.orig/.cvsignore dvdread/.cvsignore
64 diff -Naur dvdread.orig/dvd_input.c dvdread/dvd_input.c
65 --- dvdread.orig/dvd_input.c 2005-06-23 00:18:54.000000000 +0200
66 +++ dvdread/dvd_input.c 2005-06-23 00:30:23.000000000 +0200
70 /* Allocate the handle structure */
71 - dev = (dvd_input_t) malloc(sizeof(dvd_input_t));
72 + dev = (dvd_input_t) malloc(sizeof(struct dvd_input_s));
74 fprintf(stderr, "libdvdread: Could not allocate memory.\n");
79 /* Allocate the library structure */
80 - dev = (dvd_input_t) malloc(sizeof(dvd_input_t));
81 + dev = (dvd_input_t) malloc(sizeof(struct dvd_input_s));
83 fprintf(stderr, "libdvdread: Could not allocate memory.\n");
86 fprintf(stderr, "DVDCSS_METHOD %s\n", psz_method);
87 fprintf(stderr, "DVDCSS_VERBOSE %s\n", psz_verbose);
90 fprintf(stderr, "libdvdread: Using libdvdcss version %s for DVD access\n",
94 /* libdvdcss wrapper functions */
95 dvdinput_open = css_open;
96 diff -Naur dvdread.orig/dvd_input.h dvdread/dvd_input.h
97 diff -Naur dvdread.orig/dvd_reader.c dvdread/dvd_reader.c
98 --- dvdread.orig/dvd_reader.c 2005-06-23 00:18:54.000000000 +0200
99 +++ dvdread/dvd_reader.c 2005-06-23 00:19:10.000000000 +0200
104 -#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__bsdi__)|| defined(__DARWIN__)
105 +#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__bsdi__) || defined(__DARWIN__) || defined(__DragonFly__)
110 #include <sys/mnttab.h>
112 +#include </usr/conf/h/mnttab.h>
113 #elif defined(SYS_BSD)
115 -#elif defined(__linux__)
116 +#elif defined(__linux__) || defined(__CYGWIN__)
120 +#if defined(__MINGW32__) && (__MINGW32_MAJOR_VERSION <= 3) && (__MINGW32_MINOR_VERSION < 10)
121 +#include <sys/timeb.h>
122 +static void gettimeofday(struct timeval* t,void* timezone){
123 + struct timeb timebuffer;
124 + ftime( &timebuffer );
125 + t->tv_sec=timebuffer.time;
126 + t->tv_usec=1000*timebuffer.millitm;
131 #include "dvd_input.h"
132 #include "dvd_reader.h"
135 -#define DEFAULT_UDF_CACHE_LEVEL 1
136 +#define DEFAULT_UDF_CACHE_LEVEL 0
138 struct dvd_reader_s {
139 /* Basic information. */
140 @@ -278,11 +301,16 @@
141 Darwin /dev/rdisk0, it needs to be the raw device
142 BSD/OS /dev/sr0c (if not mounted) or /dev/rsr0c ('c' any letter will do) */
143 static char *bsd_block2char( const char *path )
144 +#if defined(__FreeBSD__)
146 + return (char *) strdup( path );
152 /* If it doesn't start with "/dev/" or does start with "/dev/r" exit */
153 - if( !strncmp( path, "/dev/", 5 ) || strncmp( path, "/dev/r", 6 ) )
154 + if( strncmp( path, "/dev/", 5 ) || !strncmp( path, "/dev/r", 6 ) )
155 return (char *) strdup( path );
157 /* Replace "/dev/" with "/dev/r" */
162 +#endif /* __FreeBSD__ */
165 dvd_reader_t *DVDOpen( const char *path )
171 + /* Stat doesn't work on devices under mingwin/cygwin. */
172 + if( path[0] && path[1] == ':' && path[2] == '\0' )
174 + /* Don't try to stat the file */
175 + fileinfo.st_mode = S_IFBLK;
180 ret = stat( path, &fileinfo );
182 /* If we can't stat the file, give up */
189 /* Try to open libdvdcss or fall back to standard functions */
190 have_css = dvdinput_setup();
195 -#elif defined(__sun) || defined(__linux__)
196 +#elif defined(__sun) || defined(__linux__) || defined(__CYGWIN__)
203 new_path = getcwd( NULL, PATH_MAX );
214 -#elif defined(__linux__)
215 +#elif defined(__linux__) || defined(__CYGWIN__)
216 mntfile = fopen( MOUNTED, "r" );
223 +#elif defined(__MINGW32__)
224 + dev_name = strdup(path);
225 + auth_drive = DVDOpenImageFile( path, have_css );
228 fprintf( stderr, "libdvdread: Couldn't find device name.\n" );
232 if( dvd->css_state == 1 /* Need key init */ ) {
233 - initAllCSSKeys( dvd );
234 - dvd->css_state = 2;
235 +// initAllCSSKeys( dvd );
236 +// dvd->css_state = 2;
239 if( dvdinput_title( dvd_file->dvd->dev, (int)start ) < 0 ) {
244 -int32_t DVDFileSeek( dvd_file_t *dvd_file, int32_t offset )
245 +int DVDFileSeek( dvd_file_t *dvd_file, int offset )
247 /* Check arguments. */
248 if( dvd_file == NULL || offset < 0 )
249 diff -Naur dvdread.orig/dvdread_internal.h dvdread/dvdread_internal.h
250 --- dvdread.orig/dvdread_internal.h 2005-06-23 00:18:54.000000000 +0200
251 +++ dvdread/dvdread_internal.h 2005-06-23 00:19:10.000000000 +0200
253 #define DVDREAD_INTERNAL_H
256 -#define CHECK_VALUE(arg) \
258 - fprintf(stderr, "\n*** libdvdread: CHECK_VALUE failed in %s:%i ***" \
259 - "\n*** for %s ***\n\n", \
260 - __FILE__, __LINE__, # arg ); \
262 +#define CHECK_VALUE(arg)
265 #endif /* DVDREAD_INTERNAL_H */
266 diff -Naur dvdread.orig/dvd_udf.c dvdread/dvd_udf.c
267 --- dvdread.orig/dvd_udf.c 2005-06-23 00:18:54.000000000 +0200
268 +++ dvdread/dvd_udf.c 2005-06-23 00:19:10.000000000 +0200
274 #include <sys/ioctl.h>
276 #include <sys/types.h>
277 #include <sys/stat.h>
279 diff -Naur dvdread.orig/ifo_print.c dvdread/ifo_print.c
280 --- dvdread.orig/ifo_print.c 30 Jun 2005 22:48:26 -0000 1.4
281 +++ dvdread/ifo_print.c 3 Oct 2005 14:29:01 -0000 1.5
282 @@ -761,14 +761,14 @@
283 ifoPrint_USER_OPS(&pgc->prohibited_ops);
285 for(i = 0; i < 8; i++) {
286 - if(pgc->audio_control[i] & 0x8000) { /* The 'is present' bit */
287 + if(pgc->audio_control[i].present) {
288 printf("Audio stream %i control: %04x\n",
289 i, pgc->audio_control[i]);
293 for(i = 0; i < 32; i++) {
294 - if(pgc->subp_control[i] & 0x80000000) { /* The 'is present' bit */
295 + if(pgc->subp_control[i].present) {
296 printf("Subpicture stream %2i control: %08x\n",
297 i, pgc->subp_control[i]);
300 diff -Naur dvdread.orig/ifo_read.c dvdread/ifo_read.c
301 --- dvdread.orig/ifo_read.c 30 Jun 2005 22:48:26 -0000 1.4
302 +++ dvdread/ifo_read.c 3 Oct 2005 14:29:01 -0000 1.5
304 ifo_handle_t *ifoOpen(dvd_reader_t *dvd, int title) {
305 ifo_handle_t *ifofile;
307 - ifofile = (ifo_handle_t *)malloc(sizeof(ifo_handle_t));
308 + ifofile = malloc(sizeof(ifo_handle_t));
313 ifo_handle_t *ifoOpenVMGI(dvd_reader_t *dvd) {
314 ifo_handle_t *ifofile;
316 - ifofile = (ifo_handle_t *)malloc(sizeof(ifo_handle_t));
317 + ifofile = malloc(sizeof(ifo_handle_t));
322 ifo_handle_t *ifoOpenVTSI(dvd_reader_t *dvd, int title) {
323 ifo_handle_t *ifofile;
325 - ifofile = (ifo_handle_t *)malloc(sizeof(ifo_handle_t));
326 + ifofile = malloc(sizeof(ifo_handle_t));
331 static int ifoRead_VMG(ifo_handle_t *ifofile) {
332 vmgi_mat_t *vmgi_mat;
334 - vmgi_mat = (vmgi_mat_t *)malloc(sizeof(vmgi_mat_t));
335 + vmgi_mat = malloc(sizeof(vmgi_mat_t));
340 vtsi_mat_t *vtsi_mat;
343 - vtsi_mat = (vtsi_mat_t *)malloc(sizeof(vtsi_mat_t));
344 + vtsi_mat = malloc(sizeof(vtsi_mat_t));
350 if(cmd_tbl->nr_of_pre != 0) {
351 unsigned int pre_cmds_size = cmd_tbl->nr_of_pre * COMMAND_DATA_SIZE;
352 - cmd_tbl->pre_cmds = (vm_cmd_t *)malloc(pre_cmds_size);
353 + cmd_tbl->pre_cmds = malloc(pre_cmds_size);
354 if(!cmd_tbl->pre_cmds)
359 if(cmd_tbl->nr_of_post != 0) {
360 unsigned int post_cmds_size = cmd_tbl->nr_of_post * COMMAND_DATA_SIZE;
361 - cmd_tbl->post_cmds = (vm_cmd_t *)malloc(post_cmds_size);
362 + cmd_tbl->post_cmds = malloc(post_cmds_size);
363 if(!cmd_tbl->post_cmds) {
364 if(cmd_tbl->pre_cmds)
365 free(cmd_tbl->pre_cmds);
368 if(cmd_tbl->nr_of_cell != 0) {
369 unsigned int cell_cmds_size = cmd_tbl->nr_of_cell * COMMAND_DATA_SIZE;
370 - cmd_tbl->cell_cmds = (vm_cmd_t *)malloc(cell_cmds_size);
371 + cmd_tbl->cell_cmds = malloc(cell_cmds_size);
372 if(!cmd_tbl->cell_cmds) {
373 if(cmd_tbl->pre_cmds)
374 free(cmd_tbl->pre_cmds);
376 B2N_16(pgc->cell_playback_offset);
377 B2N_16(pgc->cell_position_offset);
379 - for(i = 0; i < 8; i++)
380 - B2N_16(pgc->audio_control[i]);
381 - for(i = 0; i < 32; i++)
382 - B2N_32(pgc->subp_control[i]);
383 for(i = 0; i < 16; i++)
384 B2N_32(pgc->palette[i]);
386 @@ -650,10 +650,10 @@
388 /* verify time (look at print_time) */
389 for(i = 0; i < 8; i++)
390 - if(!pgc->audio_control[i] & 0x8000) /* The 'is present' bit */
391 + if(!pgc->audio_control[i].present)
392 CHECK_ZERO(pgc->audio_control[i]);
393 for(i = 0; i < 32; i++)
394 - if(!pgc->subp_control[i] & 0x80000000) /* The 'is present' bit */
395 + if(!pgc->subp_control[i].present)
396 CHECK_ZERO(pgc->subp_control[i]);
398 /* Check that time is 0:0:0:0 also if nr_of_programs == 0 */
400 if(ifofile->vmgi_mat->first_play_pgc == 0)
403 - ifofile->first_play_pgc = (pgc_t *)malloc(sizeof(pgc_t));
404 + ifofile->first_play_pgc = malloc(sizeof(pgc_t));
405 if(!ifofile->first_play_pgc)
409 if(!DVDFileSeek_(ifofile->file, ifofile->vmgi_mat->tt_srpt * DVD_BLOCK_LEN))
412 - tt_srpt = (tt_srpt_t *)malloc(sizeof(tt_srpt_t));
413 + tt_srpt = malloc(sizeof(tt_srpt_t));
419 info_length = tt_srpt->last_byte + 1 - TT_SRPT_SIZE;
421 - tt_srpt->title = (title_info_t *)malloc(info_length);
422 + tt_srpt->title = malloc(info_length);
423 if(!tt_srpt->title) {
425 ifofile->tt_srpt = 0;
427 ifofile->vtsi_mat->vts_ptt_srpt * DVD_BLOCK_LEN))
430 - vts_ptt_srpt = (vts_ptt_srpt_t *)malloc(sizeof(vts_ptt_srpt_t));
431 + vts_ptt_srpt = malloc(sizeof(vts_ptt_srpt_t));
437 info_length = vts_ptt_srpt->last_byte + 1 - VTS_PTT_SRPT_SIZE;
439 - data = (uint32_t *)malloc(info_length);
440 + data = malloc(info_length);
443 ifofile->vts_ptt_srpt = 0;
444 @@ -1047,7 +1047,7 @@
445 if(!DVDFileSeek_(ifofile->file, ifofile->vmgi_mat->ptl_mait * DVD_BLOCK_LEN))
448 - ptl_mait = (ptl_mait_t *)malloc(sizeof(ptl_mait_t));
449 + ptl_mait = malloc(sizeof(ptl_mait_t));
453 @@ -1071,7 +1071,7 @@
454 <= ptl_mait->last_byte + 1 - PTL_MAIT_SIZE);
456 info_length = ptl_mait->nr_of_countries * sizeof(ptl_mait_country_t);
457 - ptl_mait->countries = (ptl_mait_country_t *)malloc(info_length);
458 + ptl_mait->countries = malloc(info_length);
459 if(!ptl_mait->countries) {
461 ifofile->ptl_mait = 0;
462 @@ -1112,7 +1112,7 @@
465 info_length = (ptl_mait->nr_of_vtss + 1) * sizeof(pf_level_t);
466 - pf_temp = (uint16_t *)malloc(info_length);
467 + pf_temp = malloc(info_length);
469 for(j = 0; j < i ; j++) {
470 free(ptl_mait->countries[j].pf_ptl_mai);
471 @@ -1134,7 +1134,7 @@
472 for (j = 0; j < ((ptl_mait->nr_of_vtss + 1) * 8); j++) {
475 - ptl_mait->countries[i].pf_ptl_mai = (pf_level_t *)malloc(info_length);
476 + ptl_mait->countries[i].pf_ptl_mai = malloc(info_length);
477 if(!ptl_mait->countries[i].pf_ptl_mai) {
479 for(j = 0; j < i ; j++) {
480 @@ -1198,7 +1198,7 @@
481 if(!DVDFileSeek_(ifofile->file, offset))
484 - vts_tmapt = (vts_tmapt_t *)malloc(sizeof(vts_tmapt_t));
485 + vts_tmapt = malloc(sizeof(vts_tmapt_t));
489 @@ -1218,7 +1218,7 @@
491 info_length = vts_tmapt->nr_of_tmaps * 4;
493 - vts_tmap_srp = (uint32_t *)malloc(info_length);
494 + vts_tmap_srp = malloc(info_length);
497 ifofile->vts_tmapt = NULL;
498 @@ -1242,7 +1242,7 @@
500 info_length = vts_tmapt->nr_of_tmaps * sizeof(vts_tmap_t);
502 - vts_tmapt->tmap = (vts_tmap_t *)malloc(info_length);
503 + vts_tmapt->tmap = malloc(info_length);
504 if(!vts_tmapt->tmap) {
507 @@ -1274,7 +1274,7 @@
509 info_length = vts_tmapt->tmap[i].nr_of_entries * sizeof(map_ent_t);
511 - vts_tmapt->tmap[i].map_ent = (map_ent_t *)malloc(info_length);
512 + vts_tmapt->tmap[i].map_ent = malloc(info_length);
513 if(!vts_tmapt->tmap[i].map_ent) {
514 ifoFree_VTS_TMAPT(ifofile);
516 @@ -1322,7 +1322,7 @@
517 if(ifofile->vtsi_mat->vts_c_adt == 0) /* mandatory */
520 - ifofile->vts_c_adt = (c_adt_t *)malloc(sizeof(c_adt_t));
521 + ifofile->vts_c_adt = malloc(sizeof(c_adt_t));
522 if(!ifofile->vts_c_adt)
525 @@ -1354,7 +1354,7 @@
529 - ifofile->menu_c_adt = (c_adt_t *)malloc(sizeof(c_adt_t));
530 + ifofile->menu_c_adt = malloc(sizeof(c_adt_t));
531 if(!ifofile->menu_c_adt)
534 @@ -1396,7 +1396,7 @@
535 c_adt->nr_of_vobs = info_length / sizeof(cell_adr_t);
538 - c_adt->cell_adr_table = (cell_adr_t *)malloc(info_length);
539 + c_adt->cell_adr_table = malloc(info_length);
540 if(!c_adt->cell_adr_table)
543 @@ -1456,7 +1456,7 @@
544 if(ifofile->vtsi_mat->vts_vobu_admap == 0) /* mandatory */
547 - ifofile->vts_vobu_admap = (vobu_admap_t *)malloc(sizeof(vobu_admap_t));
548 + ifofile->vts_vobu_admap = malloc(sizeof(vobu_admap_t));
549 if(!ifofile->vts_vobu_admap)
552 @@ -1488,7 +1488,7 @@
556 - ifofile->menu_vobu_admap = (vobu_admap_t *)malloc(sizeof(vobu_admap_t));
557 + ifofile->menu_vobu_admap = malloc(sizeof(vobu_admap_t));
558 if(!ifofile->menu_vobu_admap)
561 @@ -1521,7 +1521,7 @@
562 Titles with a VOBS that has no VOBUs. */
563 CHECK_VALUE(info_length % sizeof(uint32_t) == 0);
565 - vobu_admap->vobu_start_sectors = (uint32_t *)malloc(info_length);
566 + vobu_admap->vobu_start_sectors = malloc(info_length);
567 if(!vobu_admap->vobu_start_sectors) {
570 @@ -1573,7 +1573,7 @@
571 if(ifofile->vtsi_mat->vts_pgcit == 0) /* mandatory */
574 - ifofile->vts_pgcit = (pgcit_t *)malloc(sizeof(pgcit_t));
575 + ifofile->vts_pgcit = malloc(sizeof(pgcit_t));
576 if(!ifofile->vts_pgcit)
579 @@ -1703,7 +1703,7 @@
583 - ifofile->pgci_ut = (pgci_ut_t *)malloc(sizeof(pgci_ut_t));
584 + ifofile->pgci_ut = malloc(sizeof(pgci_ut_t));
585 if(!ifofile->pgci_ut)
588 @@ -1893,7 +1893,7 @@
589 if(!DVDFileSeek_(ifofile->file, sector * DVD_BLOCK_LEN))
592 - vts_atrt = (vts_atrt_t *)malloc(sizeof(vts_atrt_t));
593 + vts_atrt = malloc(sizeof(vts_atrt_t));
597 @@ -1915,7 +1915,7 @@
598 VTS_ATRT_SIZE < vts_atrt->last_byte + 1);
600 info_length = vts_atrt->nr_of_vtss * sizeof(uint32_t);
601 - data = (uint32_t *)malloc(info_length);
602 + data = malloc(info_length);
605 ifofile->vts_atrt = 0;
606 @@ -1937,7 +1937,7 @@
609 info_length = vts_atrt->nr_of_vtss * sizeof(vts_attributes_t);
610 - vts_atrt->vts = (vts_attributes_t *)malloc(info_length);
611 + vts_atrt->vts = malloc(info_length);
615 @@ -1993,7 +1993,7 @@
616 ifofile->vmgi_mat->txtdt_mgi * DVD_BLOCK_LEN))
619 - txtdt_mgi = (txtdt_mgi_t *)malloc(sizeof(txtdt_mgi_t));
620 + txtdt_mgi = malloc(sizeof(txtdt_mgi_t));
625 diff -Naur dvdread.orig/ifo_types.h dvdread/ifo_types.h
626 --- dvdread.orig/ifo_types.h 2005-06-23 00:18:54.000000000 +0200
627 +++ dvdread/ifo_types.h 2005-06-23 00:19:10.000000000 +0200
629 } ATTRIBUTE_PACKED user_ops_t;
632 + * Subpicture stream mapping for a subtitle
635 +#ifdef WORDS_BIGENDIAN
636 + unsigned int present : 1;
637 + unsigned int zero1 : 2;
638 + unsigned int s_4p3 : 5; /* stream for 4:3 on any display */
640 + unsigned int zero2 : 3;
641 + unsigned int s_wide : 5; /* stream for 16:9 on widescreen display */
643 + unsigned int zero3 : 3;
644 + unsigned int s_lbox : 5; /* stream for 16:9 on letterboxed 4:3 display */
646 + unsigned int zero4 : 3;
647 + unsigned int s_panscan : 5; /* stream for 16:9 with pan&scan data on 4:3 display */
649 + unsigned int s_4p3 : 5; /* stream for 4:3 on any display */
650 + unsigned int zero1 : 2;
651 + unsigned int present : 1;
653 + unsigned int s_wide : 5; /* stream for 16:9 on widescreen display */
654 + unsigned int zero2 : 3;
656 + unsigned int s_lbox : 5; /* stream for 16:9 on letterboxed 4:3 display */
657 + unsigned int zero3 : 3;
659 + unsigned int s_panscan : 5; /* stream for 16:9 with pan&scan data on 4:3 display */
660 + unsigned int zero4 : 3;
662 +} ATTRIBUTE_PACKED subp_mapping_t;
665 + * Audio stream mapping for a soundtrack
668 +#ifdef WORDS_BIGENDIAN
669 + unsigned int present : 1;
670 + unsigned int zero1 : 4;
671 + unsigned int s_audio : 3;
673 + unsigned int s_audio : 3;
674 + unsigned int zero1 : 4;
675 + unsigned int present : 1;
678 +} ATTRIBUTE_PACKED audio_mapping_t;
681 * Program Chain Information.
686 dvd_time_t playback_time;
687 user_ops_t prohibited_ops;
688 - uint16_t audio_control[8]; /* New type? */
689 - uint32_t subp_control[32]; /* New type? */
690 + audio_mapping_t audio_control[8];
691 + subp_mapping_t subp_control[32];
692 uint16_t next_pgc_nr;
693 uint16_t prev_pgc_nr;
694 uint16_t goup_pgc_nr;