Mercurial > mplayer.hg
annotate dvdread/ifo_read.c @ 24465:8eb74a8f8da7
Use AV_RB32 instead of tivobuffer2hostlong
author | reimar |
---|---|
date | Fri, 14 Sep 2007 18:23:13 +0000 |
parents | 7b810bcf2325 |
children | 870e5564d0f7 |
rev | line source |
---|---|
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1 /* -*- c-basic-offset: 2; indent-tabs-mode: nil -*- */ |
7029 | 2 /* |
15874 | 3 * Copyright (C) 2000, 2001, 2002, 2003 |
4 * Björn Englund <d4bjorn@dtek.chalmers.se>, | |
5 * Håkan Hjort <d95hjort@dtek.chalmers.se> | |
14938
25df9508f9a8
Mark modified files as such to comply more closely with GPL ¡ø2a.
diego
parents:
7033
diff
changeset
|
6 * |
20785 | 7 * Modified for use with MPlayer, changes contained in libdvdread_changes.diff. |
8 * detailed changelog at http://svn.mplayerhq.hu/mplayer/trunk/ | |
9 * $Id$ | |
10 * | |
7029 | 11 * This program is free software; you can redistribute it and/or modify |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
24 */ | |
25 | |
15874 | 26 #include "config.h" |
27 | |
7029 | 28 #include <stdio.h> |
29 #include <stdlib.h> | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
30 |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
31 #if defined(HAVE_INTTYPES_H) |
7029 | 32 #include <inttypes.h> |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
33 #elif defined(HAVE_STDINT_H) |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
34 #include <stdint.h> |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
35 #endif |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
36 |
7029 | 37 #include <string.h> |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
38 #include <errno.h> |
7029 | 39 |
40 #include "bswap.h" | |
41 #include "ifo_types.h" | |
42 #include "ifo_read.h" | |
15874 | 43 #include "dvd_reader.h" |
44 #include "dvdread_internal.h" | |
7029 | 45 |
46 #ifndef DVD_BLOCK_LEN | |
47 #define DVD_BLOCK_LEN 2048 | |
48 #endif | |
49 | |
50 #ifndef NDEBUG | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
51 #define CHECK_ZERO0(arg) \ |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
52 if(arg != 0) { \ |
15874 | 53 fprintf(stderr, "*** Zero check failed in %s:%i\n for %s = 0x%x\n", \ |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
54 __FILE__, __LINE__, # arg, arg); \ |
15874 | 55 } |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
56 #define CHECK_ZERO(arg) \ |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
57 if(memcmp(my_friendly_zeros, &arg, sizeof(arg))) { \ |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
58 unsigned int i_CZ; \ |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
59 fprintf(stderr, "*** Zero check failed in %s:%i\n for %s = 0x", \ |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
60 __FILE__, __LINE__, # arg ); \ |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
61 for(i_CZ = 0; i_CZ < sizeof(arg); i_CZ++) \ |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
62 fprintf(stderr, "%02x", *((uint8_t *)&arg + i_CZ)); \ |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
63 fprintf(stderr, "\n"); \ |
7029 | 64 } |
65 static const uint8_t my_friendly_zeros[2048]; | |
66 #else | |
15874 | 67 #define CHECK_ZERO0(arg) (void)(arg) |
7029 | 68 #define CHECK_ZERO(arg) (void)(arg) |
69 #endif | |
70 | |
71 | |
72 /* Prototypes for internal functions */ | |
73 static int ifoRead_VMG(ifo_handle_t *ifofile); | |
74 static int ifoRead_VTS(ifo_handle_t *ifofile); | |
75 static int ifoRead_PGC(ifo_handle_t *ifofile, pgc_t *pgc, unsigned int offset); | |
76 static int ifoRead_PGC_COMMAND_TBL(ifo_handle_t *ifofile, | |
77 pgc_command_tbl_t *cmd_tbl, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
78 unsigned int offset); |
7029 | 79 static int ifoRead_PGC_PROGRAM_MAP(ifo_handle_t *ifofile, |
80 pgc_program_map_t *program_map, | |
81 unsigned int nr, unsigned int offset); | |
82 static int ifoRead_CELL_PLAYBACK_TBL(ifo_handle_t *ifofile, | |
83 cell_playback_t *cell_playback, | |
84 unsigned int nr, unsigned int offset); | |
85 static int ifoRead_CELL_POSITION_TBL(ifo_handle_t *ifofile, | |
86 cell_position_t *cell_position, | |
87 unsigned int nr, unsigned int offset); | |
88 static int ifoRead_VTS_ATTRIBUTES(ifo_handle_t *ifofile, | |
89 vts_attributes_t *vts_attributes, | |
90 unsigned int offset); | |
91 static int ifoRead_C_ADT_internal(ifo_handle_t *ifofile, c_adt_t *c_adt, | |
92 unsigned int sector); | |
93 static int ifoRead_VOBU_ADMAP_internal(ifo_handle_t *ifofile, | |
94 vobu_admap_t *vobu_admap, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
95 unsigned int sector); |
7029 | 96 static int ifoRead_PGCIT_internal(ifo_handle_t *ifofile, pgcit_t *pgcit, |
97 unsigned int offset); | |
98 | |
99 static void ifoFree_PGC(pgc_t *pgc); | |
100 static void ifoFree_PGC_COMMAND_TBL(pgc_command_tbl_t *cmd_tbl); | |
101 static void ifoFree_PGCIT_internal(pgcit_t *pgcit); | |
102 | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
103 static ifo_handle_t *ifoOpen_File(ifo_handle_t *ifofile, int title, |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
104 char *suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
105 static ifo_handle_t *ifoOpenVMGI_File(ifo_handle_t *ifofile, char *suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
106 static ifo_handle_t *ifoOpenVTSI_File(ifo_handle_t *ifofile, int title, |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
107 char *suffix); |
7029 | 108 |
15874 | 109 static inline int DVDFileSeek_( dvd_file_t *dvd_file, uint32_t offset ) { |
7029 | 110 return (DVDFileSeek(dvd_file, (int)offset) == (int)offset); |
111 } | |
112 | |
113 | |
114 ifo_handle_t *ifoOpen(dvd_reader_t *dvd, int title) { | |
115 ifo_handle_t *ifofile; | |
116 | |
18879 | 117 ifofile = malloc(sizeof(ifo_handle_t)); |
7029 | 118 if(!ifofile) |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
119 return NULL; |
7029 | 120 |
121 memset(ifofile, 0, sizeof(ifo_handle_t)); | |
122 | |
123 ifofile->file = DVDOpenFile(dvd, title, DVD_READ_INFO_FILE); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
124 if(!ifoOpen_File(ifofile, title, "IFO")) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
125 if(title) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
126 if(dvdread_verbose(dvd) >= 1) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
127 fprintf(stderr, "libdvdread: Can't open file VTS_%02d_0.%s.\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
128 title, "IFO"); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
129 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
130 } else { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
131 if(dvdread_verbose(dvd) >= 1) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
132 fprintf(stderr, "libdvdread: Can't open file VIDEO_TS.%s.\n", "IFO"); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
133 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
134 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
135 /* lower functions free the pointer, reallocate */ |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
136 ifofile = (ifo_handle_t *)malloc(sizeof(ifo_handle_t)); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
137 if(!ifofile) |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
138 return NULL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
139 |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
140 memset(ifofile, 0, sizeof(ifo_handle_t)); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
141 |
15874 | 142 ifofile->file = DVDOpenFile(dvd, title, DVD_READ_INFO_BACKUP_FILE); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
143 if(!ifoOpen_File(ifofile, title, "BUP")) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
144 if(title) { |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
145 if(dvdread_verbose(dvd) >= 1) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
146 fprintf(stderr, "libdvdread: Can't open file VTS_%02d_0.%s.\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
147 title, "BUP"); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
148 } |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
149 } else { |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
150 if(dvdread_verbose(dvd) >= 1) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
151 fprintf(stderr, "libdvdread: Can't open file VIDEO_TS.%s.\n", "BUP"); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
152 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
153 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
154 return NULL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
155 } |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
156 } |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
157 return ifofile; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
158 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
159 |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
160 static ifo_handle_t *ifoOpen_File(ifo_handle_t *ifofile, int title, |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
161 char *suffix) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
162 if(!ifofile->file) { |
7029 | 163 free(ifofile); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
164 return NULL; |
7029 | 165 } |
166 | |
167 /* First check if this is a VMGI file. */ | |
168 if(ifoRead_VMG(ifofile)) { | |
169 | |
170 /* These are both mandatory. */ | |
171 if(!ifoRead_FP_PGC(ifofile) || !ifoRead_TT_SRPT(ifofile)) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
172 if(dvdread_verbose(device_of_file(ifofile->file)) >= 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
173 fprintf(stderr, "libdvdread: Invalid main menu IFO (VIDEO_TS.%s).\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
174 suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
175 } |
7029 | 176 ifoClose(ifofile); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
177 return NULL; |
7029 | 178 } |
179 | |
180 ifoRead_PGCI_UT(ifofile); | |
181 ifoRead_PTL_MAIT(ifofile); | |
182 | |
183 /* This is also mandatory. */ | |
184 if(!ifoRead_VTS_ATRT(ifofile)) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
185 if(dvdread_verbose(device_of_file(ifofile->file)) >= 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
186 fprintf(stderr, "libdvdread: Invalid main menu IFO (VIDEO_TS.%s).\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
187 suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
188 } |
7029 | 189 ifoClose(ifofile); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
190 return NULL; |
7029 | 191 } |
192 | |
193 ifoRead_TXTDT_MGI(ifofile); | |
194 ifoRead_C_ADT(ifofile); | |
195 ifoRead_VOBU_ADMAP(ifofile); | |
196 | |
197 return ifofile; | |
198 } | |
199 | |
200 if(ifoRead_VTS(ifofile)) { | |
201 | |
202 if(!ifoRead_VTS_PTT_SRPT(ifofile) || !ifoRead_PGCIT(ifofile)) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
203 if(dvdread_verbose(device_of_file(ifofile->file)) >= 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
204 fprintf(stderr, "libdvdread: Invalid title IFO (VTS_%02d_0.%s).\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
205 title, suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
206 } |
7029 | 207 ifoClose(ifofile); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
208 return NULL; |
7029 | 209 } |
210 | |
211 ifoRead_PGCI_UT(ifofile); | |
15874 | 212 ifoRead_VTS_TMAPT(ifofile); |
7029 | 213 ifoRead_C_ADT(ifofile); |
214 ifoRead_VOBU_ADMAP(ifofile); | |
215 | |
216 if(!ifoRead_TITLE_C_ADT(ifofile) || !ifoRead_TITLE_VOBU_ADMAP(ifofile)) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
217 if(dvdread_verbose(device_of_file(ifofile->file)) >= 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
218 fprintf(stderr, "libdvdread: Invalid title IFO (VTS_%02d_0.%s).\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
219 title, suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
220 } |
7029 | 221 ifoClose(ifofile); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
222 return NULL; |
7029 | 223 } |
224 | |
225 return ifofile; | |
226 } | |
227 | |
228 if(title) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
229 if(dvdread_verbose(device_of_file(ifofile->file)) >= 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
230 fprintf(stderr, "libdvdread: Invalid IFO for title %d (VTS_%02d_0.%s).\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
231 title, title, suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
232 } |
7029 | 233 } else { |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
234 if(dvdread_verbose(device_of_file(ifofile->file)) >= 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
235 fprintf(stderr, "libdvdread: Invalid IFO for VMGM (VIDEO_TS.%s).\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
236 suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
237 } |
7029 | 238 } |
239 ifoClose(ifofile); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
240 return NULL; |
7029 | 241 } |
242 | |
243 | |
244 ifo_handle_t *ifoOpenVMGI(dvd_reader_t *dvd) { | |
245 ifo_handle_t *ifofile; | |
246 | |
18879 | 247 ifofile = malloc(sizeof(ifo_handle_t)); |
7029 | 248 if(!ifofile) |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
249 return NULL; |
7029 | 250 |
251 memset(ifofile, 0, sizeof(ifo_handle_t)); | |
252 | |
253 ifofile->file = DVDOpenFile(dvd, 0, DVD_READ_INFO_FILE); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
254 if(!ifoOpenVMGI_File(ifofile, "IFO")) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
255 if(dvdread_verbose(dvd) >= 1) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
256 fprintf(stderr, "libdvdread: Can't open file VIDEO_TS.IFO: %s\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
257 strerror(errno)); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
258 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
259 |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
260 /* lower functions free the pointer, reallocate */ |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
261 ifofile = (ifo_handle_t *)malloc(sizeof(ifo_handle_t)); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
262 if(!ifofile) |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
263 return NULL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
264 |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
265 memset(ifofile, 0, sizeof(ifo_handle_t)); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
266 |
15874 | 267 ifofile->file = DVDOpenFile(dvd, 0, DVD_READ_INFO_BACKUP_FILE); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
268 if(!ifoOpenVMGI_File(ifofile, "BUP")) |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
269 if(dvdread_verbose(dvd) >= 1) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
270 fprintf(stderr, "libdvdread: Can't open file VIDEO_TS.BUP: %s\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
271 strerror(errno)); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
272 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
273 return NULL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
274 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
275 return ifofile; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
276 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
277 |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
278 static ifo_handle_t *ifoOpenVMGI_File(ifo_handle_t *ifofile, char *suffix) { |
7029 | 279 if(!ifofile->file) { |
280 free(ifofile); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
281 return NULL; |
7029 | 282 } |
283 | |
284 if(ifoRead_VMG(ifofile)) | |
285 return ifofile; | |
286 | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
287 if(dvdread_verbose(device_of_file(ifofile->file)) >= 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
288 fprintf(stderr, "libdvdread: Invalid main menu IFO (VIDEO_TS.%s).\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
289 suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
290 } |
7029 | 291 ifoClose(ifofile); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
292 return NULL; |
7029 | 293 } |
294 | |
295 | |
296 ifo_handle_t *ifoOpenVTSI(dvd_reader_t *dvd, int title) { | |
297 ifo_handle_t *ifofile; | |
298 | |
18879 | 299 ifofile = malloc(sizeof(ifo_handle_t)); |
7029 | 300 if(!ifofile) |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
301 return NULL; |
7029 | 302 |
303 memset(ifofile, 0, sizeof(ifo_handle_t)); | |
304 | |
305 if(title <= 0 || title > 99) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
306 if(dvdread_verbose(dvd) >= 0) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
307 fprintf(stderr, "libdvdread: ifoOpenVTSI invalid title (%d).\n", title); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
308 } |
7029 | 309 free(ifofile); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
310 errno = EINVAL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
311 return NULL; |
7029 | 312 } |
313 | |
314 ifofile->file = DVDOpenFile(dvd, title, DVD_READ_INFO_FILE); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
315 if(!ifoOpenVTSI_File(ifofile, title, "IFO")) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
316 if(dvdread_verbose(dvd) >= 1) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
317 fprintf(stderr, "libdvdread: Can't open file VTS_%02d_0.%s.\n", title, "IFO"); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
318 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
319 /* lower functions free the pointer, reallocate */ |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
320 ifofile = (ifo_handle_t *)malloc(sizeof(ifo_handle_t)); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
321 if(!ifofile) |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
322 return NULL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
323 |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
324 memset(ifofile, 0, sizeof(ifo_handle_t)); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
325 |
15874 | 326 ifofile->file = DVDOpenFile(dvd, title, DVD_READ_INFO_BACKUP_FILE); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
327 if(!ifoOpenVTSI_File(ifofile, title, "BUP")) |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
328 if(dvdread_verbose(dvd) >= 1) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
329 fprintf(stderr, "libdvdread: Can't open file VTS_%02d_0.%s.\n", title, "BUP"); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
330 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
331 return NULL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
332 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
333 return ifofile; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
334 } |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
335 |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
336 static ifo_handle_t *ifoOpenVTSI_File(ifo_handle_t* ifofile, int title, char *suffix) { |
7029 | 337 if(!ifofile->file) { |
338 free(ifofile); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
339 return NULL; |
7029 | 340 } |
341 | |
342 ifoRead_VTS(ifofile); | |
343 if(ifofile->vtsi_mat) | |
344 return ifofile; | |
345 | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
346 if(dvdread_verbose(device_of_file(ifofile->file)) >= 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
347 fprintf(stderr, "libdvdread: Invalid IFO for title %d (VTS_%02d_0.%s).\n", |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
348 title, title, suffix); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
349 } |
7029 | 350 ifoClose(ifofile); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
351 return NULL; |
7029 | 352 } |
353 | |
354 | |
355 void ifoClose(ifo_handle_t *ifofile) { | |
356 if(!ifofile) | |
357 return; | |
358 | |
359 ifoFree_VOBU_ADMAP(ifofile); | |
360 ifoFree_TITLE_VOBU_ADMAP(ifofile); | |
361 ifoFree_C_ADT(ifofile); | |
362 ifoFree_TITLE_C_ADT(ifofile); | |
363 ifoFree_TXTDT_MGI(ifofile); | |
364 ifoFree_VTS_ATRT(ifofile); | |
365 ifoFree_PTL_MAIT(ifofile); | |
366 ifoFree_PGCI_UT(ifofile); | |
367 ifoFree_TT_SRPT(ifofile); | |
368 ifoFree_FP_PGC(ifofile); | |
369 ifoFree_PGCIT(ifofile); | |
370 ifoFree_VTS_PTT_SRPT(ifofile); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
371 ifoFree_VTS_TMAPT(ifofile); |
7029 | 372 |
373 if(ifofile->vmgi_mat) | |
374 free(ifofile->vmgi_mat); | |
375 | |
376 if(ifofile->vtsi_mat) | |
377 free(ifofile->vtsi_mat); | |
378 | |
379 DVDCloseFile(ifofile->file); | |
380 ifofile->file = 0; | |
381 free(ifofile); | |
382 ifofile = 0; | |
383 } | |
384 | |
385 | |
386 static int ifoRead_VMG(ifo_handle_t *ifofile) { | |
387 vmgi_mat_t *vmgi_mat; | |
388 | |
18879 | 389 vmgi_mat = malloc(sizeof(vmgi_mat_t)); |
7029 | 390 if(!vmgi_mat) |
391 return 0; | |
392 | |
393 ifofile->vmgi_mat = vmgi_mat; | |
394 | |
395 if(!DVDFileSeek_(ifofile->file, 0)) { | |
396 free(ifofile->vmgi_mat); | |
397 ifofile->vmgi_mat = 0; | |
398 return 0; | |
399 } | |
400 | |
401 if(!DVDReadBytes(ifofile->file, vmgi_mat, sizeof(vmgi_mat_t))) { | |
402 free(ifofile->vmgi_mat); | |
403 ifofile->vmgi_mat = 0; | |
404 return 0; | |
405 } | |
406 | |
407 if(strncmp("DVDVIDEO-VMG", vmgi_mat->vmg_identifier, 12) != 0) { | |
408 free(ifofile->vmgi_mat); | |
409 ifofile->vmgi_mat = 0; | |
410 return 0; | |
411 } | |
412 | |
413 B2N_32(vmgi_mat->vmg_last_sector); | |
414 B2N_32(vmgi_mat->vmgi_last_sector); | |
415 B2N_32(vmgi_mat->vmg_category); | |
416 B2N_16(vmgi_mat->vmg_nr_of_volumes); | |
417 B2N_16(vmgi_mat->vmg_this_volume_nr); | |
418 B2N_16(vmgi_mat->vmg_nr_of_title_sets); | |
419 B2N_64(vmgi_mat->vmg_pos_code); | |
420 B2N_32(vmgi_mat->vmgi_last_byte); | |
421 B2N_32(vmgi_mat->first_play_pgc); | |
422 B2N_32(vmgi_mat->vmgm_vobs); | |
423 B2N_32(vmgi_mat->tt_srpt); | |
424 B2N_32(vmgi_mat->vmgm_pgci_ut); | |
425 B2N_32(vmgi_mat->ptl_mait); | |
426 B2N_32(vmgi_mat->vts_atrt); | |
427 B2N_32(vmgi_mat->txtdt_mgi); | |
428 B2N_32(vmgi_mat->vmgm_c_adt); | |
429 B2N_32(vmgi_mat->vmgm_vobu_admap); | |
430 B2N_16(vmgi_mat->vmgm_audio_attr.lang_code); | |
431 B2N_16(vmgi_mat->vmgm_subp_attr.lang_code); | |
432 | |
433 | |
434 CHECK_ZERO(vmgi_mat->zero_1); | |
435 CHECK_ZERO(vmgi_mat->zero_2); | |
436 CHECK_ZERO(vmgi_mat->zero_3); | |
437 CHECK_ZERO(vmgi_mat->zero_4); | |
438 CHECK_ZERO(vmgi_mat->zero_5); | |
439 CHECK_ZERO(vmgi_mat->zero_6); | |
440 CHECK_ZERO(vmgi_mat->zero_7); | |
441 CHECK_ZERO(vmgi_mat->zero_8); | |
442 CHECK_ZERO(vmgi_mat->zero_9); | |
443 CHECK_ZERO(vmgi_mat->zero_10); | |
15874 | 444 CHECK_VALUE(vmgi_mat->vmg_last_sector != 0); |
445 CHECK_VALUE(vmgi_mat->vmgi_last_sector != 0); | |
446 CHECK_VALUE(vmgi_mat->vmgi_last_sector * 2 <= vmgi_mat->vmg_last_sector); | |
447 CHECK_VALUE(vmgi_mat->vmgi_last_sector * 2 <= vmgi_mat->vmg_last_sector); | |
448 CHECK_VALUE(vmgi_mat->vmg_nr_of_volumes != 0); | |
449 CHECK_VALUE(vmgi_mat->vmg_this_volume_nr != 0); | |
450 CHECK_VALUE(vmgi_mat->vmg_this_volume_nr <= vmgi_mat->vmg_nr_of_volumes); | |
451 CHECK_VALUE(vmgi_mat->disc_side == 1 || vmgi_mat->disc_side == 2); | |
452 CHECK_VALUE(vmgi_mat->vmg_nr_of_title_sets != 0); | |
453 CHECK_VALUE(vmgi_mat->vmgi_last_byte >= 341); | |
454 CHECK_VALUE(vmgi_mat->vmgi_last_byte / DVD_BLOCK_LEN <= | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
455 vmgi_mat->vmgi_last_sector); |
15874 | 456 /* It seems that first_play_pgc is optional. */ |
457 CHECK_VALUE(vmgi_mat->first_play_pgc < vmgi_mat->vmgi_last_byte); | |
458 CHECK_VALUE(vmgi_mat->vmgm_vobs == 0 || | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
459 (vmgi_mat->vmgm_vobs > vmgi_mat->vmgi_last_sector && |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
460 vmgi_mat->vmgm_vobs < vmgi_mat->vmg_last_sector)); |
15874 | 461 CHECK_VALUE(vmgi_mat->tt_srpt <= vmgi_mat->vmgi_last_sector); |
462 CHECK_VALUE(vmgi_mat->vmgm_pgci_ut <= vmgi_mat->vmgi_last_sector); | |
463 CHECK_VALUE(vmgi_mat->ptl_mait <= vmgi_mat->vmgi_last_sector); | |
464 CHECK_VALUE(vmgi_mat->vts_atrt <= vmgi_mat->vmgi_last_sector); | |
465 CHECK_VALUE(vmgi_mat->txtdt_mgi <= vmgi_mat->vmgi_last_sector); | |
466 CHECK_VALUE(vmgi_mat->vmgm_c_adt <= vmgi_mat->vmgi_last_sector); | |
467 CHECK_VALUE(vmgi_mat->vmgm_vobu_admap <= vmgi_mat->vmgi_last_sector); | |
7029 | 468 |
15874 | 469 CHECK_VALUE(vmgi_mat->nr_of_vmgm_audio_streams <= 1); |
470 CHECK_VALUE(vmgi_mat->nr_of_vmgm_subp_streams <= 1); | |
7029 | 471 |
472 return 1; | |
473 } | |
474 | |
475 | |
476 static int ifoRead_VTS(ifo_handle_t *ifofile) { | |
477 vtsi_mat_t *vtsi_mat; | |
478 int i; | |
479 | |
18879 | 480 vtsi_mat = malloc(sizeof(vtsi_mat_t)); |
7029 | 481 if(!vtsi_mat) |
482 return 0; | |
483 | |
484 ifofile->vtsi_mat = vtsi_mat; | |
485 | |
486 if(!DVDFileSeek_(ifofile->file, 0)) { | |
487 free(ifofile->vtsi_mat); | |
488 ifofile->vtsi_mat = 0; | |
489 return 0; | |
490 } | |
491 | |
492 if(!(DVDReadBytes(ifofile->file, vtsi_mat, sizeof(vtsi_mat_t)))) { | |
493 free(ifofile->vtsi_mat); | |
494 ifofile->vtsi_mat = 0; | |
495 return 0; | |
496 } | |
497 | |
498 if(strncmp("DVDVIDEO-VTS", vtsi_mat->vts_identifier, 12) != 0) { | |
499 free(ifofile->vtsi_mat); | |
500 ifofile->vtsi_mat = 0; | |
501 return 0; | |
502 } | |
503 | |
504 B2N_32(vtsi_mat->vts_last_sector); | |
505 B2N_32(vtsi_mat->vtsi_last_sector); | |
506 B2N_32(vtsi_mat->vts_category); | |
507 B2N_32(vtsi_mat->vtsi_last_byte); | |
508 B2N_32(vtsi_mat->vtsm_vobs); | |
509 B2N_32(vtsi_mat->vtstt_vobs); | |
510 B2N_32(vtsi_mat->vts_ptt_srpt); | |
511 B2N_32(vtsi_mat->vts_pgcit); | |
512 B2N_32(vtsi_mat->vtsm_pgci_ut); | |
513 B2N_32(vtsi_mat->vts_tmapt); | |
514 B2N_32(vtsi_mat->vtsm_c_adt); | |
515 B2N_32(vtsi_mat->vtsm_vobu_admap); | |
516 B2N_32(vtsi_mat->vts_c_adt); | |
517 B2N_32(vtsi_mat->vts_vobu_admap); | |
518 B2N_16(vtsi_mat->vtsm_audio_attr.lang_code); | |
519 B2N_16(vtsi_mat->vtsm_subp_attr.lang_code); | |
520 for(i = 0; i < 8; i++) | |
521 B2N_16(vtsi_mat->vts_audio_attr[i].lang_code); | |
522 for(i = 0; i < 32; i++) | |
523 B2N_16(vtsi_mat->vts_subp_attr[i].lang_code); | |
524 | |
525 | |
526 CHECK_ZERO(vtsi_mat->zero_1); | |
527 CHECK_ZERO(vtsi_mat->zero_2); | |
528 CHECK_ZERO(vtsi_mat->zero_3); | |
529 CHECK_ZERO(vtsi_mat->zero_4); | |
530 CHECK_ZERO(vtsi_mat->zero_5); | |
531 CHECK_ZERO(vtsi_mat->zero_6); | |
532 CHECK_ZERO(vtsi_mat->zero_7); | |
533 CHECK_ZERO(vtsi_mat->zero_8); | |
534 CHECK_ZERO(vtsi_mat->zero_9); | |
535 CHECK_ZERO(vtsi_mat->zero_10); | |
536 CHECK_ZERO(vtsi_mat->zero_11); | |
537 CHECK_ZERO(vtsi_mat->zero_12); | |
538 CHECK_ZERO(vtsi_mat->zero_13); | |
539 CHECK_ZERO(vtsi_mat->zero_14); | |
540 CHECK_ZERO(vtsi_mat->zero_15); | |
541 CHECK_ZERO(vtsi_mat->zero_16); | |
542 CHECK_ZERO(vtsi_mat->zero_17); | |
543 CHECK_ZERO(vtsi_mat->zero_18); | |
544 CHECK_ZERO(vtsi_mat->zero_19); | |
545 CHECK_ZERO(vtsi_mat->zero_20); | |
15874 | 546 CHECK_ZERO(vtsi_mat->zero_21); |
547 CHECK_VALUE(vtsi_mat->vtsi_last_sector*2 <= vtsi_mat->vts_last_sector); | |
548 CHECK_VALUE(vtsi_mat->vtsi_last_byte/DVD_BLOCK_LEN <= vtsi_mat->vtsi_last_sector); | |
549 CHECK_VALUE(vtsi_mat->vtsm_vobs == 0 || | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
550 (vtsi_mat->vtsm_vobs > vtsi_mat->vtsi_last_sector && |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
551 vtsi_mat->vtsm_vobs < vtsi_mat->vts_last_sector)); |
15874 | 552 CHECK_VALUE(vtsi_mat->vtstt_vobs == 0 || |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
553 (vtsi_mat->vtstt_vobs > vtsi_mat->vtsi_last_sector && |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
554 vtsi_mat->vtstt_vobs < vtsi_mat->vts_last_sector)); |
15874 | 555 CHECK_VALUE(vtsi_mat->vts_ptt_srpt <= vtsi_mat->vtsi_last_sector); |
556 CHECK_VALUE(vtsi_mat->vts_pgcit <= vtsi_mat->vtsi_last_sector); | |
557 CHECK_VALUE(vtsi_mat->vtsm_pgci_ut <= vtsi_mat->vtsi_last_sector); | |
558 CHECK_VALUE(vtsi_mat->vts_tmapt <= vtsi_mat->vtsi_last_sector); | |
559 CHECK_VALUE(vtsi_mat->vtsm_c_adt <= vtsi_mat->vtsi_last_sector); | |
560 CHECK_VALUE(vtsi_mat->vtsm_vobu_admap <= vtsi_mat->vtsi_last_sector); | |
561 CHECK_VALUE(vtsi_mat->vts_c_adt <= vtsi_mat->vtsi_last_sector); | |
562 CHECK_VALUE(vtsi_mat->vts_vobu_admap <= vtsi_mat->vtsi_last_sector); | |
7029 | 563 |
15874 | 564 CHECK_VALUE(vtsi_mat->nr_of_vtsm_audio_streams <= 1); |
565 CHECK_VALUE(vtsi_mat->nr_of_vtsm_subp_streams <= 1); | |
7029 | 566 |
15874 | 567 CHECK_VALUE(vtsi_mat->nr_of_vts_audio_streams <= 8); |
7029 | 568 for(i = vtsi_mat->nr_of_vts_audio_streams; i < 8; i++) |
569 CHECK_ZERO(vtsi_mat->vts_audio_attr[i]); | |
570 | |
15874 | 571 CHECK_VALUE(vtsi_mat->nr_of_vts_subp_streams <= 32); |
7029 | 572 for(i = vtsi_mat->nr_of_vts_subp_streams; i < 32; i++) |
573 CHECK_ZERO(vtsi_mat->vts_subp_attr[i]); | |
15874 | 574 |
575 for(i = 0; i < 8; i++) { | |
576 CHECK_ZERO0(vtsi_mat->vts_mu_audio_attr[i].zero1); | |
577 CHECK_ZERO0(vtsi_mat->vts_mu_audio_attr[i].zero2); | |
578 CHECK_ZERO0(vtsi_mat->vts_mu_audio_attr[i].zero3); | |
579 CHECK_ZERO0(vtsi_mat->vts_mu_audio_attr[i].zero4); | |
580 CHECK_ZERO0(vtsi_mat->vts_mu_audio_attr[i].zero5); | |
581 CHECK_ZERO(vtsi_mat->vts_mu_audio_attr[i].zero6); | |
582 } | |
583 | |
7029 | 584 return 1; |
585 } | |
586 | |
587 | |
588 static int ifoRead_PGC_COMMAND_TBL(ifo_handle_t *ifofile, | |
589 pgc_command_tbl_t *cmd_tbl, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
590 unsigned int offset) { |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
591 unsigned int total; |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
592 |
7029 | 593 memset(cmd_tbl, 0, sizeof(pgc_command_tbl_t)); |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
594 |
7029 | 595 if(!DVDFileSeek_(ifofile->file, offset)) |
596 return 0; | |
597 | |
598 if(!(DVDReadBytes(ifofile->file, cmd_tbl, PGC_COMMAND_TBL_SIZE))) | |
599 return 0; | |
600 | |
601 B2N_16(cmd_tbl->nr_of_pre); | |
602 B2N_16(cmd_tbl->nr_of_post); | |
603 B2N_16(cmd_tbl->nr_of_cell); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
604 B2N_16(cmd_tbl->last_byte); |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
605 |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
606 total = cmd_tbl->nr_of_pre + cmd_tbl->nr_of_post + cmd_tbl->nr_of_cell; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
607 CHECK_VALUE(PGC_COMMAND_TBL_SIZE + total * COMMAND_DATA_SIZE |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
608 <= cmd_tbl->last_byte + 1U); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
609 CHECK_VALUE(total <= 255); |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
610 |
7029 | 611 if(cmd_tbl->nr_of_pre != 0) { |
612 unsigned int pre_cmds_size = cmd_tbl->nr_of_pre * COMMAND_DATA_SIZE; | |
18879 | 613 cmd_tbl->pre_cmds = malloc(pre_cmds_size); |
7029 | 614 if(!cmd_tbl->pre_cmds) |
615 return 0; | |
616 | |
617 if(!(DVDReadBytes(ifofile->file, cmd_tbl->pre_cmds, pre_cmds_size))) { | |
618 free(cmd_tbl->pre_cmds); | |
619 return 0; | |
620 } | |
621 } | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
622 |
7029 | 623 if(cmd_tbl->nr_of_post != 0) { |
624 unsigned int post_cmds_size = cmd_tbl->nr_of_post * COMMAND_DATA_SIZE; | |
18879 | 625 cmd_tbl->post_cmds = malloc(post_cmds_size); |
7029 | 626 if(!cmd_tbl->post_cmds) { |
627 if(cmd_tbl->pre_cmds) | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
628 free(cmd_tbl->pre_cmds); |
7029 | 629 return 0; |
630 } | |
631 if(!(DVDReadBytes(ifofile->file, cmd_tbl->post_cmds, post_cmds_size))) { | |
632 if(cmd_tbl->pre_cmds) | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
633 free(cmd_tbl->pre_cmds); |
7029 | 634 free(cmd_tbl->post_cmds); |
635 return 0; | |
636 } | |
637 } | |
638 | |
639 if(cmd_tbl->nr_of_cell != 0) { | |
640 unsigned int cell_cmds_size = cmd_tbl->nr_of_cell * COMMAND_DATA_SIZE; | |
18879 | 641 cmd_tbl->cell_cmds = malloc(cell_cmds_size); |
7029 | 642 if(!cmd_tbl->cell_cmds) { |
643 if(cmd_tbl->pre_cmds) | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
644 free(cmd_tbl->pre_cmds); |
7029 | 645 if(cmd_tbl->post_cmds) |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
646 free(cmd_tbl->post_cmds); |
7029 | 647 return 0; |
648 } | |
649 if(!(DVDReadBytes(ifofile->file, cmd_tbl->cell_cmds, cell_cmds_size))) { | |
650 if(cmd_tbl->pre_cmds) | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
651 free(cmd_tbl->pre_cmds); |
7029 | 652 if(cmd_tbl->post_cmds) |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
653 free(cmd_tbl->post_cmds); |
7029 | 654 free(cmd_tbl->cell_cmds); |
655 return 0; | |
656 } | |
657 } | |
658 | |
659 /* | |
660 * Make a run over all the commands and see that we can interpret them all? | |
661 */ | |
662 return 1; | |
663 } | |
664 | |
665 | |
666 static void ifoFree_PGC_COMMAND_TBL(pgc_command_tbl_t *cmd_tbl) { | |
667 if(cmd_tbl) { | |
668 if(cmd_tbl->nr_of_pre && cmd_tbl->pre_cmds) | |
669 free(cmd_tbl->pre_cmds); | |
670 if(cmd_tbl->nr_of_post && cmd_tbl->post_cmds) | |
671 free(cmd_tbl->post_cmds); | |
672 if(cmd_tbl->nr_of_cell && cmd_tbl->cell_cmds) | |
673 free(cmd_tbl->cell_cmds); | |
674 free(cmd_tbl); | |
675 } | |
676 } | |
677 | |
678 static int ifoRead_PGC_PROGRAM_MAP(ifo_handle_t *ifofile, | |
679 pgc_program_map_t *program_map, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
680 unsigned int nr, unsigned int offset) { |
7029 | 681 unsigned int size = nr * sizeof(pgc_program_map_t); |
682 | |
683 if(!DVDFileSeek_(ifofile->file, offset)) | |
684 return 0; | |
685 | |
686 if(!(DVDReadBytes(ifofile->file, program_map, size))) | |
687 return 0; | |
688 | |
689 return 1; | |
690 } | |
691 | |
692 static int ifoRead_CELL_PLAYBACK_TBL(ifo_handle_t *ifofile, | |
693 cell_playback_t *cell_playback, | |
694 unsigned int nr, unsigned int offset) { | |
695 unsigned int i; | |
696 unsigned int size = nr * sizeof(cell_playback_t); | |
697 | |
698 if(!DVDFileSeek_(ifofile->file, offset)) | |
699 return 0; | |
700 | |
701 if(!(DVDReadBytes(ifofile->file, cell_playback, size))) | |
702 return 0; | |
703 | |
704 for(i = 0; i < nr; i++) { | |
705 B2N_32(cell_playback[i].first_sector); | |
706 B2N_32(cell_playback[i].first_ilvu_end_sector); | |
707 B2N_32(cell_playback[i].last_vobu_start_sector); | |
708 B2N_32(cell_playback[i].last_sector); | |
709 | |
710 /* Changed < to <= because this was false in the movie 'Pi'. */ | |
15874 | 711 CHECK_VALUE(cell_playback[i].last_vobu_start_sector <= |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
712 cell_playback[i].last_sector); |
15874 | 713 CHECK_VALUE(cell_playback[i].first_sector <= |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
714 cell_playback[i].last_vobu_start_sector); |
7029 | 715 } |
716 | |
717 return 1; | |
718 } | |
719 | |
720 | |
721 static int ifoRead_CELL_POSITION_TBL(ifo_handle_t *ifofile, | |
722 cell_position_t *cell_position, | |
723 unsigned int nr, unsigned int offset) { | |
724 unsigned int i; | |
725 unsigned int size = nr * sizeof(cell_position_t); | |
726 | |
727 if(!DVDFileSeek_(ifofile->file, offset)) | |
728 return 0; | |
729 | |
730 if(!(DVDReadBytes(ifofile->file, cell_position, size))) | |
731 return 0; | |
732 | |
733 for(i = 0; i < nr; i++) { | |
734 B2N_16(cell_position[i].vob_id_nr); | |
735 CHECK_ZERO(cell_position[i].zero_1); | |
736 } | |
737 | |
738 return 1; | |
739 } | |
740 | |
741 static int ifoRead_PGC(ifo_handle_t *ifofile, pgc_t *pgc, unsigned int offset) { | |
742 unsigned int i; | |
743 | |
744 if(!DVDFileSeek_(ifofile->file, offset)) | |
745 return 0; | |
746 | |
747 if(!(DVDReadBytes(ifofile->file, pgc, PGC_SIZE))) | |
748 return 0; | |
749 | |
750 B2N_16(pgc->next_pgc_nr); | |
751 B2N_16(pgc->prev_pgc_nr); | |
752 B2N_16(pgc->goup_pgc_nr); | |
753 B2N_16(pgc->command_tbl_offset); | |
754 B2N_16(pgc->program_map_offset); | |
755 B2N_16(pgc->cell_playback_offset); | |
756 B2N_16(pgc->cell_position_offset); | |
757 | |
758 for(i = 0; i < 16; i++) | |
759 B2N_32(pgc->palette[i]); | |
760 | |
761 CHECK_ZERO(pgc->zero_1); | |
15874 | 762 CHECK_VALUE(pgc->nr_of_programs <= pgc->nr_of_cells); |
7029 | 763 |
764 /* verify time (look at print_time) */ | |
765 for(i = 0; i < 8; i++) | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
15874
diff
changeset
|
766 if(!pgc->audio_control[i].present) |
7029 | 767 CHECK_ZERO(pgc->audio_control[i]); |
768 for(i = 0; i < 32; i++) | |
16649
e1d6fbd607e0
Fix DVD audio and subtitle stream mapping, esp. for DVD with both 4:3 and
reimar
parents:
15874
diff
changeset
|
769 if(!pgc->subp_control[i].present) |
7029 | 770 CHECK_ZERO(pgc->subp_control[i]); |
771 | |
772 /* Check that time is 0:0:0:0 also if nr_of_programs == 0 */ | |
773 if(pgc->nr_of_programs == 0) { | |
774 CHECK_ZERO(pgc->still_time); | |
775 CHECK_ZERO(pgc->pg_playback_mode); // ?? | |
15874 | 776 CHECK_VALUE(pgc->program_map_offset == 0); |
777 CHECK_VALUE(pgc->cell_playback_offset == 0); | |
778 CHECK_VALUE(pgc->cell_position_offset == 0); | |
7029 | 779 } else { |
15874 | 780 CHECK_VALUE(pgc->program_map_offset != 0); |
781 CHECK_VALUE(pgc->cell_playback_offset != 0); | |
782 CHECK_VALUE(pgc->cell_position_offset != 0); | |
7029 | 783 } |
784 | |
785 if(pgc->command_tbl_offset != 0) { | |
786 pgc->command_tbl = malloc(sizeof(pgc_command_tbl_t)); | |
787 if(!pgc->command_tbl) | |
788 return 0; | |
789 | |
790 if(!ifoRead_PGC_COMMAND_TBL(ifofile, pgc->command_tbl, | |
791 offset + pgc->command_tbl_offset)) { | |
792 free(pgc->command_tbl); | |
793 return 0; | |
794 } | |
795 } else { | |
796 pgc->command_tbl = NULL; | |
797 } | |
798 | |
799 if(pgc->program_map_offset != 0) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
800 if(pgc->nr_of_programs != 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
801 |
7029 | 802 pgc->program_map = malloc(pgc->nr_of_programs * sizeof(pgc_program_map_t)); |
803 if(!pgc->program_map) { | |
804 ifoFree_PGC_COMMAND_TBL(pgc->command_tbl); | |
805 return 0; | |
806 } | |
807 if(!ifoRead_PGC_PROGRAM_MAP(ifofile, pgc->program_map,pgc->nr_of_programs, | |
808 offset + pgc->program_map_offset)) { | |
809 ifoFree_PGC_COMMAND_TBL(pgc->command_tbl); | |
810 free(pgc->program_map); | |
811 return 0; | |
812 } | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
813 } else { |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
814 pgc->program_map = NULL; |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
815 } |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
816 } else { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
817 pgc->program_map = NULL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
818 } |
7029 | 819 |
820 if(pgc->cell_playback_offset != 0) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
821 if(pgc->nr_of_cells != 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
822 |
7029 | 823 pgc->cell_playback = malloc(pgc->nr_of_cells * sizeof(cell_playback_t)); |
824 if(!pgc->cell_playback) { | |
825 ifoFree_PGC_COMMAND_TBL(pgc->command_tbl); | |
826 if(pgc->program_map) | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
827 free(pgc->program_map); |
7029 | 828 return 0; |
829 } | |
830 if(!ifoRead_CELL_PLAYBACK_TBL(ifofile, pgc->cell_playback, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
831 pgc->nr_of_cells, |
7029 | 832 offset + pgc->cell_playback_offset)) { |
833 ifoFree_PGC_COMMAND_TBL(pgc->command_tbl); | |
834 if(pgc->program_map) | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
835 free(pgc->program_map); |
7029 | 836 free(pgc->cell_playback); |
837 return 0; | |
838 } | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
839 } else { |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
840 pgc->cell_playback = NULL; |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
841 } |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
842 } else { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
843 pgc->cell_playback = NULL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
844 } |
7029 | 845 |
846 if(pgc->cell_position_offset != 0) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
847 if(pgc->nr_of_cells != 0) { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
848 |
7029 | 849 pgc->cell_position = malloc(pgc->nr_of_cells * sizeof(cell_position_t)); |
850 if(!pgc->cell_position) { | |
851 ifoFree_PGC(pgc); | |
852 return 0; | |
853 } | |
854 if(!ifoRead_CELL_POSITION_TBL(ifofile, pgc->cell_position, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
855 pgc->nr_of_cells, |
7029 | 856 offset + pgc->cell_position_offset)) { |
857 ifoFree_PGC(pgc); | |
858 return 0; | |
859 } | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
860 } else { |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
861 pgc->cell_position = NULL; |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
862 } |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
863 } else { |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
864 pgc->cell_position = NULL; |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
865 } |
7029 | 866 |
867 return 1; | |
868 } | |
869 | |
870 int ifoRead_FP_PGC(ifo_handle_t *ifofile) { | |
871 | |
872 if(!ifofile) | |
873 return 0; | |
874 | |
875 if(!ifofile->vmgi_mat) | |
876 return 0; | |
877 | |
15874 | 878 /* It seems that first_play_pgc is optional after all. */ |
879 ifofile->first_play_pgc = 0; | |
880 if(ifofile->vmgi_mat->first_play_pgc == 0) | |
881 return 1; | |
7029 | 882 |
18879 | 883 ifofile->first_play_pgc = malloc(sizeof(pgc_t)); |
7029 | 884 if(!ifofile->first_play_pgc) |
885 return 0; | |
886 | |
887 if(!ifoRead_PGC(ifofile, ifofile->first_play_pgc, | |
888 ifofile->vmgi_mat->first_play_pgc)) { | |
889 free(ifofile->first_play_pgc); | |
890 ifofile->first_play_pgc = 0; | |
891 return 0; | |
892 } | |
893 | |
894 return 1; | |
895 } | |
896 | |
897 static void ifoFree_PGC(pgc_t *pgc) { | |
898 if(pgc) { | |
899 ifoFree_PGC_COMMAND_TBL(pgc->command_tbl); | |
900 if(pgc->program_map) | |
901 free(pgc->program_map); | |
902 if(pgc->cell_playback) | |
903 free(pgc->cell_playback); | |
904 if(pgc->cell_position) | |
905 free(pgc->cell_position); | |
906 } | |
907 } | |
908 | |
909 void ifoFree_FP_PGC(ifo_handle_t *ifofile) { | |
910 if(!ifofile) | |
911 return; | |
912 | |
913 if(ifofile->first_play_pgc) { | |
914 ifoFree_PGC(ifofile->first_play_pgc); | |
915 free(ifofile->first_play_pgc); | |
916 ifofile->first_play_pgc = 0; | |
917 } | |
918 } | |
919 | |
920 | |
921 int ifoRead_TT_SRPT(ifo_handle_t *ifofile) { | |
922 tt_srpt_t *tt_srpt; | |
923 int i, info_length; | |
924 | |
925 if(!ifofile) | |
926 return 0; | |
927 | |
928 if(!ifofile->vmgi_mat) | |
929 return 0; | |
930 | |
931 if(ifofile->vmgi_mat->tt_srpt == 0) /* mandatory */ | |
932 return 0; | |
933 | |
934 if(!DVDFileSeek_(ifofile->file, ifofile->vmgi_mat->tt_srpt * DVD_BLOCK_LEN)) | |
935 return 0; | |
936 | |
18879 | 937 tt_srpt = malloc(sizeof(tt_srpt_t)); |
7029 | 938 if(!tt_srpt) |
939 return 0; | |
940 | |
941 ifofile->tt_srpt = tt_srpt; | |
942 | |
943 if(!(DVDReadBytes(ifofile->file, tt_srpt, TT_SRPT_SIZE))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
944 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
945 fprintf(stderr, "libdvdread: Unable to read read TT_SRPT.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
946 } |
7029 | 947 free(tt_srpt); |
948 return 0; | |
949 } | |
950 | |
951 B2N_16(tt_srpt->nr_of_srpts); | |
952 B2N_32(tt_srpt->last_byte); | |
953 | |
954 info_length = tt_srpt->last_byte + 1 - TT_SRPT_SIZE; | |
955 | |
24053
7b810bcf2325
cosmetics: Do not add trailing whitespace to lines we change.
diego
parents:
24050
diff
changeset
|
956 tt_srpt->title = malloc(info_length); |
7029 | 957 if(!tt_srpt->title) { |
958 free(tt_srpt); | |
959 ifofile->tt_srpt = 0; | |
960 return 0; | |
961 } | |
962 if(!(DVDReadBytes(ifofile->file, tt_srpt->title, info_length))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
963 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
964 fprintf(stderr, "libdvdread: Unable to read read TT_SRPT.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
965 } |
7029 | 966 ifoFree_TT_SRPT(ifofile); |
967 return 0; | |
968 } | |
969 | |
970 for(i = 0; i < tt_srpt->nr_of_srpts; i++) { | |
971 B2N_16(tt_srpt->title[i].nr_of_ptts); | |
972 B2N_16(tt_srpt->title[i].parental_id); | |
973 B2N_32(tt_srpt->title[i].title_set_sector); | |
974 } | |
975 | |
976 | |
977 CHECK_ZERO(tt_srpt->zero_1); | |
15874 | 978 CHECK_VALUE(tt_srpt->nr_of_srpts != 0); |
979 CHECK_VALUE(tt_srpt->nr_of_srpts < 100); // ?? | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
980 CHECK_VALUE(tt_srpt->nr_of_srpts * sizeof(title_info_t) <= info_length); |
7029 | 981 |
982 for(i = 0; i < tt_srpt->nr_of_srpts; i++) { | |
15874 | 983 CHECK_VALUE(tt_srpt->title[i].pb_ty.zero_1 == 0); |
984 CHECK_VALUE(tt_srpt->title[i].nr_of_angles != 0); | |
985 CHECK_VALUE(tt_srpt->title[i].nr_of_angles < 10); | |
986 //CHECK_VALUE(tt_srpt->title[i].nr_of_ptts != 0); | |
7029 | 987 // XXX: this assertion breaks Ghostbusters: |
15874 | 988 CHECK_VALUE(tt_srpt->title[i].nr_of_ptts < 1000); // ?? |
989 CHECK_VALUE(tt_srpt->title[i].title_set_nr != 0); | |
990 CHECK_VALUE(tt_srpt->title[i].title_set_nr < 100); // ?? | |
991 CHECK_VALUE(tt_srpt->title[i].vts_ttn != 0); | |
992 CHECK_VALUE(tt_srpt->title[i].vts_ttn < 100); // ?? | |
993 //CHECK_VALUE(tt_srpt->title[i].title_set_sector != 0); | |
7029 | 994 } |
995 | |
996 // Make this a function | |
997 #if 0 | |
998 if(memcmp((uint8_t *)tt_srpt->title + | |
999 tt_srpt->nr_of_srpts * sizeof(title_info_t), | |
1000 my_friendly_zeros, | |
1001 info_length - tt_srpt->nr_of_srpts * sizeof(title_info_t))) { | |
1002 fprintf(stderr, "VMG_PTT_SRPT slack is != 0, "); | |
1003 hexdump((uint8_t *)tt_srpt->title + | |
1004 tt_srpt->nr_of_srpts * sizeof(title_info_t), | |
1005 info_length - tt_srpt->nr_of_srpts * sizeof(title_info_t)); | |
1006 } | |
1007 #endif | |
1008 | |
1009 return 1; | |
1010 } | |
1011 | |
1012 | |
1013 void ifoFree_TT_SRPT(ifo_handle_t *ifofile) { | |
1014 if(!ifofile) | |
1015 return; | |
1016 | |
1017 if(ifofile->tt_srpt) { | |
1018 free(ifofile->tt_srpt->title); | |
1019 free(ifofile->tt_srpt); | |
1020 ifofile->tt_srpt = 0; | |
1021 } | |
1022 } | |
1023 | |
1024 | |
1025 int ifoRead_VTS_PTT_SRPT(ifo_handle_t *ifofile) { | |
1026 vts_ptt_srpt_t *vts_ptt_srpt; | |
1027 int info_length, i, j; | |
1028 uint32_t *data; | |
1029 | |
1030 if(!ifofile) | |
1031 return 0; | |
1032 | |
1033 if(!ifofile->vtsi_mat) | |
1034 return 0; | |
1035 | |
1036 if(ifofile->vtsi_mat->vts_ptt_srpt == 0) /* mandatory */ | |
1037 return 0; | |
1038 | |
1039 if(!DVDFileSeek_(ifofile->file, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1040 ifofile->vtsi_mat->vts_ptt_srpt * DVD_BLOCK_LEN)) |
7029 | 1041 return 0; |
1042 | |
18879 | 1043 vts_ptt_srpt = malloc(sizeof(vts_ptt_srpt_t)); |
7029 | 1044 if(!vts_ptt_srpt) |
1045 return 0; | |
1046 | |
1047 ifofile->vts_ptt_srpt = vts_ptt_srpt; | |
1048 | |
1049 if(!(DVDReadBytes(ifofile->file, vts_ptt_srpt, VTS_PTT_SRPT_SIZE))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1050 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1051 fprintf(stderr, "libdvdread: Unable to read PTT search table.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1052 } |
7029 | 1053 free(vts_ptt_srpt); |
1054 return 0; | |
1055 } | |
1056 | |
1057 B2N_16(vts_ptt_srpt->nr_of_srpts); | |
1058 B2N_32(vts_ptt_srpt->last_byte); | |
1059 | |
1060 CHECK_ZERO(vts_ptt_srpt->zero_1); | |
15874 | 1061 CHECK_VALUE(vts_ptt_srpt->nr_of_srpts != 0); |
1062 CHECK_VALUE(vts_ptt_srpt->nr_of_srpts < 100); // ?? | |
7029 | 1063 |
1064 info_length = vts_ptt_srpt->last_byte + 1 - VTS_PTT_SRPT_SIZE; | |
1065 | |
24053
7b810bcf2325
cosmetics: Do not add trailing whitespace to lines we change.
diego
parents:
24050
diff
changeset
|
1066 data = malloc(info_length); |
7029 | 1067 if(!data) { |
1068 free(vts_ptt_srpt); | |
1069 ifofile->vts_ptt_srpt = 0; | |
1070 return 0; | |
1071 } | |
1072 if(!(DVDReadBytes(ifofile->file, data, info_length))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1073 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1074 fprintf(stderr, "libdvdread: Unable to read PTT search table.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1075 } |
7029 | 1076 free(vts_ptt_srpt); |
1077 free(data); | |
1078 ifofile->vts_ptt_srpt = 0; | |
1079 return 0; | |
1080 } | |
1081 | |
1082 for(i = 0; i < vts_ptt_srpt->nr_of_srpts; i++) { | |
1083 B2N_32(data[i]); | |
1084 /* assert(data[i] + sizeof(ptt_info_t) <= vts_ptt_srpt->last_byte + 1); | |
1085 Magic Knight Rayearth Daybreak is mastered very strange and has | |
1086 Titles with 0 PTTs. They all have a data[i] offsets beyond the end of | |
1087 of the vts_ptt_srpt structure. */ | |
15874 | 1088 CHECK_VALUE(data[i] + sizeof(ptt_info_t) <= vts_ptt_srpt->last_byte + 1 + 4); |
7029 | 1089 } |
15874 | 1090 |
1091 vts_ptt_srpt->ttu_offset = data; | |
7029 | 1092 |
1093 vts_ptt_srpt->title = malloc(vts_ptt_srpt->nr_of_srpts * sizeof(ttu_t)); | |
1094 if(!vts_ptt_srpt->title) { | |
1095 free(vts_ptt_srpt); | |
1096 free(data); | |
1097 ifofile->vts_ptt_srpt = 0; | |
1098 return 0; | |
1099 } | |
1100 for(i = 0; i < vts_ptt_srpt->nr_of_srpts; i++) { | |
1101 int n; | |
1102 if(i < vts_ptt_srpt->nr_of_srpts - 1) | |
1103 n = (data[i+1] - data[i]); | |
1104 else | |
1105 n = (vts_ptt_srpt->last_byte + 1 - data[i]); | |
1106 /* assert(n > 0 && (n % 4) == 0); | |
1107 Magic Knight Rayearth Daybreak is mastered very strange and has | |
1108 Titles with 0 PTTs. */ | |
1109 if(n < 0) n = 0; | |
15874 | 1110 CHECK_VALUE(n % 4 == 0); |
7029 | 1111 |
1112 vts_ptt_srpt->title[i].nr_of_ptts = n / 4; | |
1113 vts_ptt_srpt->title[i].ptt = malloc(n * sizeof(ptt_info_t)); | |
1114 if(!vts_ptt_srpt->title[i].ptt) { | |
1115 for(n = 0; n < i; n++) | |
1116 free(vts_ptt_srpt->title[n].ptt); | |
1117 free(vts_ptt_srpt); | |
1118 free(data); | |
1119 ifofile->vts_ptt_srpt = 0; | |
1120 return 0; | |
1121 } | |
1122 for(j = 0; j < vts_ptt_srpt->title[i].nr_of_ptts; j++) { | |
1123 /* The assert placed here because of Magic Knight Rayearth Daybreak */ | |
15874 | 1124 CHECK_VALUE(data[i] + sizeof(ptt_info_t) <= vts_ptt_srpt->last_byte + 1); |
7029 | 1125 vts_ptt_srpt->title[i].ptt[j].pgcn |
1126 = *(uint16_t*)(((char *)data) + data[i] + 4*j - VTS_PTT_SRPT_SIZE); | |
1127 vts_ptt_srpt->title[i].ptt[j].pgn | |
1128 = *(uint16_t*)(((char *)data) + data[i] + 4*j + 2 - VTS_PTT_SRPT_SIZE); | |
1129 } | |
1130 } | |
1131 | |
1132 for(i = 0; i < vts_ptt_srpt->nr_of_srpts; i++) { | |
1133 for(j = 0; j < vts_ptt_srpt->title[i].nr_of_ptts; j++) { | |
1134 B2N_16(vts_ptt_srpt->title[i].ptt[j].pgcn); | |
1135 B2N_16(vts_ptt_srpt->title[i].ptt[j].pgn); | |
1136 } | |
1137 } | |
1138 | |
1139 for(i = 0; i < vts_ptt_srpt->nr_of_srpts; i++) { | |
15874 | 1140 CHECK_VALUE(vts_ptt_srpt->title[i].nr_of_ptts < 1000); // ?? |
7029 | 1141 for(j = 0; j < vts_ptt_srpt->title[i].nr_of_ptts; j++) { |
15874 | 1142 CHECK_VALUE(vts_ptt_srpt->title[i].ptt[j].pgcn != 0 ); |
1143 CHECK_VALUE(vts_ptt_srpt->title[i].ptt[j].pgcn < 1000); // ?? | |
1144 CHECK_VALUE(vts_ptt_srpt->title[i].ptt[j].pgn != 0); | |
1145 CHECK_VALUE(vts_ptt_srpt->title[i].ptt[j].pgn < 100); // ?? | |
7029 | 1146 } |
1147 } | |
1148 | |
1149 return 1; | |
1150 } | |
1151 | |
1152 | |
1153 void ifoFree_VTS_PTT_SRPT(ifo_handle_t *ifofile) { | |
1154 if(!ifofile) | |
1155 return; | |
1156 | |
1157 if(ifofile->vts_ptt_srpt) { | |
1158 int i; | |
1159 for(i = 0; i < ifofile->vts_ptt_srpt->nr_of_srpts; i++) | |
1160 free(ifofile->vts_ptt_srpt->title[i].ptt); | |
15874 | 1161 free(ifofile->vts_ptt_srpt->ttu_offset); |
7029 | 1162 free(ifofile->vts_ptt_srpt->title); |
1163 free(ifofile->vts_ptt_srpt); | |
1164 ifofile->vts_ptt_srpt = 0; | |
1165 } | |
1166 } | |
1167 | |
1168 | |
1169 int ifoRead_PTL_MAIT(ifo_handle_t *ifofile) { | |
1170 ptl_mait_t *ptl_mait; | |
1171 int info_length; | |
15874 | 1172 unsigned int i, j; |
7029 | 1173 |
1174 if(!ifofile) | |
1175 return 0; | |
1176 | |
1177 if(!ifofile->vmgi_mat) | |
1178 return 0; | |
1179 | |
1180 if(ifofile->vmgi_mat->ptl_mait == 0) | |
1181 return 1; | |
1182 | |
15874 | 1183 if(!DVDFileSeek_(ifofile->file, ifofile->vmgi_mat->ptl_mait * DVD_BLOCK_LEN)) |
7029 | 1184 return 0; |
1185 | |
18879 | 1186 ptl_mait = malloc(sizeof(ptl_mait_t)); |
7029 | 1187 if(!ptl_mait) |
1188 return 0; | |
1189 | |
1190 ifofile->ptl_mait = ptl_mait; | |
1191 | |
1192 if(!(DVDReadBytes(ifofile->file, ptl_mait, PTL_MAIT_SIZE))) { | |
1193 free(ptl_mait); | |
1194 ifofile->ptl_mait = 0; | |
1195 return 0; | |
1196 } | |
1197 | |
1198 B2N_16(ptl_mait->nr_of_countries); | |
1199 B2N_16(ptl_mait->nr_of_vtss); | |
1200 B2N_32(ptl_mait->last_byte); | |
1201 | |
15874 | 1202 CHECK_VALUE(ptl_mait->nr_of_countries != 0); |
1203 CHECK_VALUE(ptl_mait->nr_of_countries < 100); // ?? | |
1204 CHECK_VALUE(ptl_mait->nr_of_vtss != 0); | |
1205 CHECK_VALUE(ptl_mait->nr_of_vtss < 100); // ?? | |
1206 CHECK_VALUE(ptl_mait->nr_of_countries * PTL_MAIT_COUNTRY_SIZE | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1207 <= ptl_mait->last_byte + 1 - PTL_MAIT_SIZE); |
7029 | 1208 |
15874 | 1209 info_length = ptl_mait->nr_of_countries * sizeof(ptl_mait_country_t); |
18879 | 1210 ptl_mait->countries = malloc(info_length); |
7029 | 1211 if(!ptl_mait->countries) { |
1212 free(ptl_mait); | |
1213 ifofile->ptl_mait = 0; | |
1214 return 0; | |
1215 } | |
15874 | 1216 |
1217 for(i = 0; i < ptl_mait->nr_of_countries; i++) { | |
1218 if(!(DVDReadBytes(ifofile->file, &ptl_mait->countries[i], PTL_MAIT_COUNTRY_SIZE))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1219 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1220 fprintf(stderr, "libdvdread: Unable to read PTL_MAIT.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1221 } |
15874 | 1222 free(ptl_mait->countries); |
1223 free(ptl_mait); | |
1224 ifofile->ptl_mait = 0; | |
1225 return 0; | |
1226 } | |
7029 | 1227 } |
1228 | |
1229 for(i = 0; i < ptl_mait->nr_of_countries; i++) { | |
1230 B2N_16(ptl_mait->countries[i].country_code); | |
1231 B2N_16(ptl_mait->countries[i].pf_ptl_mai_start_byte); | |
1232 } | |
1233 | |
1234 for(i = 0; i < ptl_mait->nr_of_countries; i++) { | |
1235 CHECK_ZERO(ptl_mait->countries[i].zero_1); | |
1236 CHECK_ZERO(ptl_mait->countries[i].zero_2); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1237 CHECK_VALUE(ptl_mait->countries[i].pf_ptl_mai_start_byte + |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1238 16U * (ptl_mait->nr_of_vtss + 1) <= ptl_mait->last_byte + 1U); |
7029 | 1239 } |
1240 | |
15874 | 1241 for(i = 0; i < ptl_mait->nr_of_countries; i++) { |
1242 uint16_t *pf_temp; | |
1243 | |
1244 if(!DVDFileSeek_(ifofile->file, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1245 ifofile->vmgi_mat->ptl_mait * DVD_BLOCK_LEN |
15874 | 1246 + ptl_mait->countries[i].pf_ptl_mai_start_byte)) { |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1247 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1248 fprintf(stderr, "libdvdread: Unable to seak PTL_MAIT table.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1249 } |
15874 | 1250 free(ptl_mait->countries); |
1251 free(ptl_mait); | |
1252 return 0; | |
1253 } | |
1254 info_length = (ptl_mait->nr_of_vtss + 1) * sizeof(pf_level_t); | |
18879 | 1255 pf_temp = malloc(info_length); |
15874 | 1256 if(!pf_temp) { |
1257 for(j = 0; j < i ; j++) { | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1258 free(ptl_mait->countries[j].pf_ptl_mai); |
15874 | 1259 } |
1260 free(ptl_mait->countries); | |
1261 free(ptl_mait); | |
1262 return 0; | |
1263 } | |
1264 if(!(DVDReadBytes(ifofile->file, pf_temp, info_length))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1265 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1266 fprintf(stderr, "libdvdread: Unable to read PTL_MAIT table.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1267 } |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1268 free(pf_temp); |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1269 for(j = 0; j < i ; j++) { |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1270 free(ptl_mait->countries[j].pf_ptl_mai); |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1271 } |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1272 free(ptl_mait->countries); |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1273 free(ptl_mait); |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1274 return 0; |
15874 | 1275 } |
1276 for (j = 0; j < ((ptl_mait->nr_of_vtss + 1) * 8); j++) { | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1277 B2N_16(pf_temp[j]); |
15874 | 1278 } |
18879 | 1279 ptl_mait->countries[i].pf_ptl_mai = malloc(info_length); |
15874 | 1280 if(!ptl_mait->countries[i].pf_ptl_mai) { |
1281 free(pf_temp); | |
1282 for(j = 0; j < i ; j++) { | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1283 free(ptl_mait->countries[j].pf_ptl_mai); |
15874 | 1284 } |
1285 free(ptl_mait->countries); | |
1286 free(ptl_mait); | |
1287 return 0; | |
1288 } | |
1289 { /* Transpose the array so we can use C indexing. */ | |
1290 int level, vts; | |
1291 for(level = 0; level < 8; level++) { | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1292 for(vts = 0; vts <= ptl_mait->nr_of_vtss; vts++) { |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1293 ptl_mait->countries[i].pf_ptl_mai[vts][level] = |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1294 pf_temp[(7-level)*(ptl_mait->nr_of_vtss+1) + vts]; |
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1295 } |
15874 | 1296 } |
1297 free(pf_temp); | |
1298 } | |
1299 } | |
7029 | 1300 return 1; |
1301 } | |
1302 | |
1303 void ifoFree_PTL_MAIT(ifo_handle_t *ifofile) { | |
15874 | 1304 unsigned int i; |
1305 | |
7029 | 1306 if(!ifofile) |
1307 return; | |
1308 | |
1309 if(ifofile->ptl_mait) { | |
15874 | 1310 for(i = 0; i < ifofile->ptl_mait->nr_of_countries; i++) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1311 free(ifofile->ptl_mait->countries[i].pf_ptl_mai); |
15874 | 1312 } |
7029 | 1313 free(ifofile->ptl_mait->countries); |
1314 free(ifofile->ptl_mait); | |
1315 ifofile->ptl_mait = 0; | |
1316 } | |
1317 } | |
1318 | |
15874 | 1319 int ifoRead_VTS_TMAPT(ifo_handle_t *ifofile) { |
1320 vts_tmapt_t *vts_tmapt; | |
1321 uint32_t *vts_tmap_srp; | |
1322 unsigned int offset; | |
1323 int info_length; | |
1324 unsigned int i, j; | |
1325 | |
1326 if(!ifofile) | |
1327 return 0; | |
1328 | |
1329 if(!ifofile->vtsi_mat) | |
1330 return 0; | |
1331 | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1332 /* Seems to be optional, at least when there are no OneSequencial Titles */ |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1333 if(ifofile->vtsi_mat->vts_tmapt == 0) { |
15874 | 1334 ifofile->vts_tmapt = NULL; |
1335 return 1; | |
1336 } | |
1337 | |
1338 offset = ifofile->vtsi_mat->vts_tmapt * DVD_BLOCK_LEN; | |
1339 | |
1340 if(!DVDFileSeek_(ifofile->file, offset)) | |
1341 return 0; | |
1342 | |
18879 | 1343 vts_tmapt = malloc(sizeof(vts_tmapt_t)); |
15874 | 1344 if(!vts_tmapt) |
1345 return 0; | |
1346 | |
1347 ifofile->vts_tmapt = vts_tmapt; | |
1348 | |
1349 if(!(DVDReadBytes(ifofile->file, vts_tmapt, VTS_TMAPT_SIZE))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1350 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1351 fprintf(stderr, "libdvdread: Unable to read VTS_TMAPT.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1352 } |
15874 | 1353 free(vts_tmapt); |
1354 ifofile->vts_tmapt = NULL; | |
1355 return 0; | |
1356 } | |
1357 | |
1358 B2N_16(vts_tmapt->nr_of_tmaps); | |
1359 B2N_32(vts_tmapt->last_byte); | |
1360 | |
1361 CHECK_ZERO(vts_tmapt->zero_1); | |
1362 | |
1363 info_length = vts_tmapt->nr_of_tmaps * 4; | |
1364 | |
18879 | 1365 vts_tmap_srp = malloc(info_length); |
15874 | 1366 if(!vts_tmap_srp) { |
1367 free(vts_tmapt); | |
1368 ifofile->vts_tmapt = NULL; | |
1369 return 0; | |
1370 } | |
1371 | |
1372 vts_tmapt->tmap_offset = vts_tmap_srp; | |
1373 | |
1374 if(!(DVDReadBytes(ifofile->file, vts_tmap_srp, info_length))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1375 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1376 fprintf(stderr, "libdvdread: Unable to read VTS_TMAPT.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1377 } |
15874 | 1378 free(vts_tmap_srp); |
1379 free(vts_tmapt); | |
1380 ifofile->vts_tmapt = NULL; | |
1381 return 0; | |
1382 } | |
1383 | |
1384 for (i = 0; i < vts_tmapt->nr_of_tmaps; i++) { | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1385 B2N_32(vts_tmap_srp[i]); |
15874 | 1386 } |
1387 | |
1388 | |
1389 info_length = vts_tmapt->nr_of_tmaps * sizeof(vts_tmap_t); | |
1390 | |
18879 | 1391 vts_tmapt->tmap = malloc(info_length); |
15874 | 1392 if(!vts_tmapt->tmap) { |
1393 free(vts_tmap_srp); | |
1394 free(vts_tmapt); | |
1395 ifofile->vts_tmapt = NULL; | |
1396 return 0; | |
1397 } | |
1398 | |
1399 memset(vts_tmapt->tmap, 0, info_length); /* So ifoFree_VTS_TMAPT works. */ | |
1400 | |
1401 for(i = 0; i < vts_tmapt->nr_of_tmaps; i++) { | |
1402 if(!DVDFileSeek_(ifofile->file, offset + vts_tmap_srp[i])) { | |
1403 ifoFree_VTS_TMAPT(ifofile); | |
1404 return 0; | |
1405 } | |
1406 | |
1407 if(!(DVDReadBytes(ifofile->file, &vts_tmapt->tmap[i], VTS_TMAP_SIZE))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1408 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1409 fprintf(stderr, "libdvdread: Unable to read VTS_TMAP.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1410 } |
15874 | 1411 ifoFree_VTS_TMAPT(ifofile); |
1412 return 0; | |
1413 } | |
1414 | |
1415 B2N_16(vts_tmapt->tmap[i].nr_of_entries); | |
1416 CHECK_ZERO(vts_tmapt->tmap[i].zero_1); | |
1417 | |
1418 if(vts_tmapt->tmap[i].nr_of_entries == 0) { /* Early out if zero entries */ | |
1419 vts_tmapt->tmap[i].map_ent = NULL; | |
1420 continue; | |
1421 } | |
1422 | |
1423 info_length = vts_tmapt->tmap[i].nr_of_entries * sizeof(map_ent_t); | |
1424 | |
18879 | 1425 vts_tmapt->tmap[i].map_ent = malloc(info_length); |
15874 | 1426 if(!vts_tmapt->tmap[i].map_ent) { |
1427 ifoFree_VTS_TMAPT(ifofile); | |
1428 return 0; | |
1429 } | |
1430 | |
1431 if(!(DVDReadBytes(ifofile->file, vts_tmapt->tmap[i].map_ent, info_length))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1432 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1433 fprintf(stderr, "libdvdread: Unable to read VTS_TMAP_ENT.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1434 } |
15874 | 1435 ifoFree_VTS_TMAPT(ifofile); |
1436 return 0; | |
1437 } | |
1438 | |
1439 for(j = 0; j < vts_tmapt->tmap[i].nr_of_entries; j++) | |
1440 B2N_32(vts_tmapt->tmap[i].map_ent[j]); | |
1441 } | |
1442 | |
1443 return 1; | |
1444 } | |
1445 | |
1446 void ifoFree_VTS_TMAPT(ifo_handle_t *ifofile) { | |
1447 unsigned int i; | |
1448 | |
1449 if(!ifofile) | |
1450 return; | |
1451 | |
1452 if(ifofile->vts_tmapt) { | |
1453 for(i = 0; i < ifofile->vts_tmapt->nr_of_tmaps; i++) | |
1454 if(ifofile->vts_tmapt->tmap[i].map_ent) | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1455 free(ifofile->vts_tmapt->tmap[i].map_ent); |
15874 | 1456 free(ifofile->vts_tmapt->tmap); |
1457 free(ifofile->vts_tmapt->tmap_offset); | |
1458 free(ifofile->vts_tmapt); | |
1459 ifofile->vts_tmapt = NULL; | |
1460 } | |
1461 } | |
1462 | |
1463 | |
7029 | 1464 int ifoRead_TITLE_C_ADT(ifo_handle_t *ifofile) { |
1465 | |
1466 if(!ifofile) | |
1467 return 0; | |
1468 | |
1469 if(!ifofile->vtsi_mat) | |
1470 return 0; | |
1471 | |
1472 if(ifofile->vtsi_mat->vts_c_adt == 0) /* mandatory */ | |
1473 return 0; | |
1474 | |
18879 | 1475 ifofile->vts_c_adt = malloc(sizeof(c_adt_t)); |
7029 | 1476 if(!ifofile->vts_c_adt) |
1477 return 0; | |
1478 | |
1479 if(!ifoRead_C_ADT_internal(ifofile, ifofile->vts_c_adt, | |
1480 ifofile->vtsi_mat->vts_c_adt)) { | |
1481 free(ifofile->vts_c_adt); | |
1482 ifofile->vts_c_adt = 0; | |
1483 return 0; | |
1484 } | |
1485 | |
1486 return 1; | |
1487 } | |
1488 | |
1489 int ifoRead_C_ADT(ifo_handle_t *ifofile) { | |
1490 unsigned int sector; | |
1491 | |
1492 if(!ifofile) | |
1493 return 0; | |
1494 | |
1495 if(ifofile->vmgi_mat) { | |
1496 if(ifofile->vmgi_mat->vmgm_c_adt == 0) | |
1497 return 1; | |
1498 sector = ifofile->vmgi_mat->vmgm_c_adt; | |
1499 } else if(ifofile->vtsi_mat) { | |
1500 if(ifofile->vtsi_mat->vtsm_c_adt == 0) | |
1501 return 1; | |
1502 sector = ifofile->vtsi_mat->vtsm_c_adt; | |
1503 } else { | |
1504 return 0; | |
1505 } | |
1506 | |
18879 | 1507 ifofile->menu_c_adt = malloc(sizeof(c_adt_t)); |
7029 | 1508 if(!ifofile->menu_c_adt) |
1509 return 0; | |
1510 | |
1511 if(!ifoRead_C_ADT_internal(ifofile, ifofile->menu_c_adt, sector)) { | |
1512 free(ifofile->menu_c_adt); | |
1513 ifofile->menu_c_adt = 0; | |
1514 return 0; | |
1515 } | |
1516 | |
1517 return 1; | |
1518 } | |
1519 | |
1520 static int ifoRead_C_ADT_internal(ifo_handle_t *ifofile, | |
1521 c_adt_t *c_adt, unsigned int sector) { | |
1522 int i, info_length; | |
1523 | |
1524 if(!DVDFileSeek_(ifofile->file, sector * DVD_BLOCK_LEN)) | |
1525 return 0; | |
1526 | |
1527 if(!(DVDReadBytes(ifofile->file, c_adt, C_ADT_SIZE))) | |
1528 return 0; | |
1529 | |
1530 B2N_16(c_adt->nr_of_vobs); | |
1531 B2N_32(c_adt->last_byte); | |
1532 | |
1533 info_length = c_adt->last_byte + 1 - C_ADT_SIZE; | |
1534 | |
1535 CHECK_ZERO(c_adt->zero_1); | |
1536 /* assert(c_adt->nr_of_vobs > 0); | |
1537 Magic Knight Rayearth Daybreak is mastered very strange and has | |
1538 Titles with a VOBS that has no cells. */ | |
15874 | 1539 CHECK_VALUE(info_length % sizeof(cell_adr_t) == 0); |
7029 | 1540 |
1541 /* assert(info_length / sizeof(cell_adr_t) >= c_adt->nr_of_vobs); | |
1542 Enemy of the State region 2 (de) has Titles where nr_of_vobs field | |
1543 is to high, they high ones are never referenced though. */ | |
1544 if(info_length / sizeof(cell_adr_t) < c_adt->nr_of_vobs) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1545 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1546 fprintf(stderr, "libdvdread: *C_ADT nr_of_vobs > avaiable info entries\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1547 } |
7029 | 1548 c_adt->nr_of_vobs = info_length / sizeof(cell_adr_t); |
1549 } | |
1550 | |
18879 | 1551 c_adt->cell_adr_table = malloc(info_length); |
7029 | 1552 if(!c_adt->cell_adr_table) |
1553 return 0; | |
1554 | |
1555 if(info_length && | |
1556 !(DVDReadBytes(ifofile->file, c_adt->cell_adr_table, info_length))) { | |
1557 free(c_adt->cell_adr_table); | |
1558 return 0; | |
1559 } | |
1560 | |
1561 for(i = 0; i < info_length/sizeof(cell_adr_t); i++) { | |
1562 B2N_16(c_adt->cell_adr_table[i].vob_id); | |
1563 B2N_32(c_adt->cell_adr_table[i].start_sector); | |
1564 B2N_32(c_adt->cell_adr_table[i].last_sector); | |
1565 | |
1566 CHECK_ZERO(c_adt->cell_adr_table[i].zero_1); | |
15874 | 1567 CHECK_VALUE(c_adt->cell_adr_table[i].vob_id > 0); |
1568 CHECK_VALUE(c_adt->cell_adr_table[i].vob_id <= c_adt->nr_of_vobs); | |
1569 CHECK_VALUE(c_adt->cell_adr_table[i].cell_id > 0); | |
1570 CHECK_VALUE(c_adt->cell_adr_table[i].start_sector < | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1571 c_adt->cell_adr_table[i].last_sector); |
7029 | 1572 } |
1573 | |
1574 return 1; | |
1575 } | |
1576 | |
1577 | |
1578 static void ifoFree_C_ADT_internal(c_adt_t *c_adt) { | |
1579 if(c_adt) { | |
1580 free(c_adt->cell_adr_table); | |
1581 free(c_adt); | |
1582 } | |
1583 } | |
1584 | |
1585 void ifoFree_C_ADT(ifo_handle_t *ifofile) { | |
1586 if(!ifofile) | |
1587 return; | |
1588 | |
1589 ifoFree_C_ADT_internal(ifofile->menu_c_adt); | |
1590 ifofile->menu_c_adt = 0; | |
1591 } | |
1592 | |
1593 void ifoFree_TITLE_C_ADT(ifo_handle_t *ifofile) { | |
1594 if(!ifofile) | |
1595 return; | |
1596 | |
1597 ifoFree_C_ADT_internal(ifofile->vts_c_adt); | |
1598 ifofile->vts_c_adt = 0; | |
1599 } | |
1600 | |
1601 int ifoRead_TITLE_VOBU_ADMAP(ifo_handle_t *ifofile) { | |
1602 if(!ifofile) | |
1603 return 0; | |
1604 | |
1605 if(!ifofile->vtsi_mat) | |
1606 return 0; | |
1607 | |
1608 if(ifofile->vtsi_mat->vts_vobu_admap == 0) /* mandatory */ | |
1609 return 0; | |
1610 | |
18879 | 1611 ifofile->vts_vobu_admap = malloc(sizeof(vobu_admap_t)); |
7029 | 1612 if(!ifofile->vts_vobu_admap) |
1613 return 0; | |
1614 | |
1615 if(!ifoRead_VOBU_ADMAP_internal(ifofile, ifofile->vts_vobu_admap, | |
1616 ifofile->vtsi_mat->vts_vobu_admap)) { | |
1617 free(ifofile->vts_vobu_admap); | |
1618 ifofile->vts_vobu_admap = 0; | |
1619 return 0; | |
1620 } | |
1621 | |
1622 return 1; | |
1623 } | |
1624 | |
1625 int ifoRead_VOBU_ADMAP(ifo_handle_t *ifofile) { | |
1626 unsigned int sector; | |
1627 | |
1628 if(!ifofile) | |
1629 return 0; | |
1630 | |
1631 if(ifofile->vmgi_mat) { | |
1632 if(ifofile->vmgi_mat->vmgm_vobu_admap == 0) | |
1633 return 1; | |
1634 sector = ifofile->vmgi_mat->vmgm_vobu_admap; | |
1635 } else if(ifofile->vtsi_mat) { | |
1636 if(ifofile->vtsi_mat->vtsm_vobu_admap == 0) | |
1637 return 1; | |
1638 sector = ifofile->vtsi_mat->vtsm_vobu_admap; | |
1639 } else { | |
1640 return 0; | |
1641 } | |
1642 | |
18879 | 1643 ifofile->menu_vobu_admap = malloc(sizeof(vobu_admap_t)); |
7029 | 1644 if(!ifofile->menu_vobu_admap) |
1645 return 0; | |
1646 | |
1647 if(!ifoRead_VOBU_ADMAP_internal(ifofile, ifofile->menu_vobu_admap, sector)) { | |
1648 free(ifofile->menu_vobu_admap); | |
1649 ifofile->menu_vobu_admap = 0; | |
1650 return 0; | |
1651 } | |
1652 | |
1653 return 1; | |
1654 } | |
1655 | |
1656 static int ifoRead_VOBU_ADMAP_internal(ifo_handle_t *ifofile, | |
1657 vobu_admap_t *vobu_admap, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1658 unsigned int sector) { |
7029 | 1659 unsigned int i; |
1660 int info_length; | |
1661 | |
1662 if(!DVDFileSeek_(ifofile->file, sector * DVD_BLOCK_LEN)) | |
1663 return 0; | |
1664 | |
1665 if(!(DVDReadBytes(ifofile->file, vobu_admap, VOBU_ADMAP_SIZE))) | |
1666 return 0; | |
1667 | |
1668 B2N_32(vobu_admap->last_byte); | |
1669 | |
1670 info_length = vobu_admap->last_byte + 1 - VOBU_ADMAP_SIZE; | |
1671 /* assert(info_length > 0); | |
1672 Magic Knight Rayearth Daybreak is mastered very strange and has | |
1673 Titles with a VOBS that has no VOBUs. */ | |
15874 | 1674 CHECK_VALUE(info_length % sizeof(uint32_t) == 0); |
7029 | 1675 |
24053
7b810bcf2325
cosmetics: Do not add trailing whitespace to lines we change.
diego
parents:
24050
diff
changeset
|
1676 vobu_admap->vobu_start_sectors = malloc(info_length); |
7029 | 1677 if(!vobu_admap->vobu_start_sectors) { |
1678 return 0; | |
1679 } | |
1680 if(info_length && | |
1681 !(DVDReadBytes(ifofile->file, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1682 vobu_admap->vobu_start_sectors, info_length))) { |
7029 | 1683 free(vobu_admap->vobu_start_sectors); |
1684 return 0; | |
1685 } | |
1686 | |
1687 for(i = 0; i < info_length/sizeof(uint32_t); i++) | |
1688 B2N_32(vobu_admap->vobu_start_sectors[i]); | |
1689 | |
1690 return 1; | |
1691 } | |
1692 | |
1693 | |
1694 static void ifoFree_VOBU_ADMAP_internal(vobu_admap_t *vobu_admap) { | |
1695 if(vobu_admap) { | |
1696 free(vobu_admap->vobu_start_sectors); | |
1697 free(vobu_admap); | |
1698 } | |
1699 } | |
1700 | |
1701 void ifoFree_VOBU_ADMAP(ifo_handle_t *ifofile) { | |
1702 if(!ifofile) | |
1703 return; | |
1704 | |
1705 ifoFree_VOBU_ADMAP_internal(ifofile->menu_vobu_admap); | |
1706 ifofile->menu_vobu_admap = 0; | |
1707 } | |
1708 | |
1709 void ifoFree_TITLE_VOBU_ADMAP(ifo_handle_t *ifofile) { | |
1710 if(!ifofile) | |
1711 return; | |
1712 | |
1713 ifoFree_VOBU_ADMAP_internal(ifofile->vts_vobu_admap); | |
1714 ifofile->vts_vobu_admap = 0; | |
1715 } | |
1716 | |
1717 int ifoRead_PGCIT(ifo_handle_t *ifofile) { | |
1718 | |
1719 if(!ifofile) | |
1720 return 0; | |
1721 | |
1722 if(!ifofile->vtsi_mat) | |
1723 return 0; | |
1724 | |
1725 if(ifofile->vtsi_mat->vts_pgcit == 0) /* mandatory */ | |
1726 return 0; | |
1727 | |
18879 | 1728 ifofile->vts_pgcit = malloc(sizeof(pgcit_t)); |
7029 | 1729 if(!ifofile->vts_pgcit) |
1730 return 0; | |
1731 | |
1732 if(!ifoRead_PGCIT_internal(ifofile, ifofile->vts_pgcit, | |
1733 ifofile->vtsi_mat->vts_pgcit * DVD_BLOCK_LEN)) { | |
1734 free(ifofile->vts_pgcit); | |
1735 ifofile->vts_pgcit = 0; | |
1736 return 0; | |
1737 } | |
1738 | |
1739 return 1; | |
1740 } | |
1741 | |
1742 static int ifoRead_PGCIT_internal(ifo_handle_t *ifofile, pgcit_t *pgcit, | |
1743 unsigned int offset) { | |
1744 int i, info_length; | |
1745 uint8_t *data, *ptr; | |
1746 | |
1747 if(!DVDFileSeek_(ifofile->file, offset)) | |
1748 return 0; | |
1749 | |
1750 if(!(DVDReadBytes(ifofile->file, pgcit, PGCIT_SIZE))) | |
1751 return 0; | |
1752 | |
1753 B2N_16(pgcit->nr_of_pgci_srp); | |
1754 B2N_32(pgcit->last_byte); | |
1755 | |
1756 CHECK_ZERO(pgcit->zero_1); | |
1757 /* assert(pgcit->nr_of_pgci_srp != 0); | |
1758 Magic Knight Rayearth Daybreak is mastered very strange and has | |
1759 Titles with 0 PTTs. */ | |
15874 | 1760 CHECK_VALUE(pgcit->nr_of_pgci_srp < 10000); // ?? seen max of 1338 |
7029 | 1761 |
1762 info_length = pgcit->nr_of_pgci_srp * PGCI_SRP_SIZE; | |
1763 data = malloc(info_length); | |
1764 if(!data) | |
1765 return 0; | |
1766 | |
1767 if(info_length && !(DVDReadBytes(ifofile->file, data, info_length))) { | |
1768 free(data); | |
1769 return 0; | |
1770 } | |
1771 | |
1772 pgcit->pgci_srp = malloc(pgcit->nr_of_pgci_srp * sizeof(pgci_srp_t)); | |
1773 if(!pgcit->pgci_srp) { | |
1774 free(data); | |
1775 return 0; | |
1776 } | |
1777 ptr = data; | |
1778 for(i = 0; i < pgcit->nr_of_pgci_srp; i++) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1779 memcpy(&pgcit->pgci_srp[i], ptr, PGCI_SRP_SIZE); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1780 ptr += PGCI_SRP_SIZE; |
7029 | 1781 B2N_16(pgcit->pgci_srp[i].ptl_id_mask); |
1782 B2N_32(pgcit->pgci_srp[i].pgc_start_byte); | |
15874 | 1783 CHECK_VALUE(pgcit->pgci_srp[i].unknown1 == 0); |
7029 | 1784 } |
1785 free(data); | |
1786 | |
1787 for(i = 0; i < pgcit->nr_of_pgci_srp; i++) | |
15874 | 1788 CHECK_VALUE(pgcit->pgci_srp[i].pgc_start_byte + PGC_SIZE <= pgcit->last_byte+1); |
7029 | 1789 |
1790 for(i = 0; i < pgcit->nr_of_pgci_srp; i++) { | |
1791 pgcit->pgci_srp[i].pgc = malloc(sizeof(pgc_t)); | |
1792 if(!pgcit->pgci_srp[i].pgc) { | |
1793 int j; | |
1794 for(j = 0; j < i; j++) { | |
1795 ifoFree_PGC(pgcit->pgci_srp[j].pgc); | |
1796 free(pgcit->pgci_srp[j].pgc); | |
1797 } | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1798 free(pgcit->pgci_srp); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1799 pgcit->pgci_srp = NULL; |
7029 | 1800 return 0; |
1801 } | |
1802 if(!ifoRead_PGC(ifofile, pgcit->pgci_srp[i].pgc, | |
1803 offset + pgcit->pgci_srp[i].pgc_start_byte)) { | |
1804 int j; | |
1805 for(j = 0; j < i; j++) { | |
1806 ifoFree_PGC(pgcit->pgci_srp[j].pgc); | |
1807 free(pgcit->pgci_srp[j].pgc); | |
1808 } | |
1809 free(pgcit->pgci_srp); | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1810 pgcit->pgci_srp = NULL; |
7029 | 1811 return 0; |
1812 } | |
1813 } | |
1814 | |
1815 return 1; | |
1816 } | |
1817 | |
1818 static void ifoFree_PGCIT_internal(pgcit_t *pgcit) { | |
1819 if(pgcit) { | |
1820 int i; | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1821 for(i = 0; i < pgcit->nr_of_pgci_srp; i++) { |
7029 | 1822 ifoFree_PGC(pgcit->pgci_srp[i].pgc); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1823 free(pgcit->pgci_srp[i].pgc); |
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
1824 } |
7029 | 1825 free(pgcit->pgci_srp); |
1826 } | |
1827 } | |
1828 | |
1829 void ifoFree_PGCIT(ifo_handle_t *ifofile) { | |
1830 if(!ifofile) | |
1831 return; | |
1832 | |
1833 if(ifofile->vts_pgcit) { | |
1834 ifoFree_PGCIT_internal(ifofile->vts_pgcit); | |
1835 free(ifofile->vts_pgcit); | |
1836 ifofile->vts_pgcit = 0; | |
1837 } | |
1838 } | |
1839 | |
1840 | |
1841 int ifoRead_PGCI_UT(ifo_handle_t *ifofile) { | |
1842 pgci_ut_t *pgci_ut; | |
1843 unsigned int sector; | |
1844 unsigned int i; | |
1845 int info_length; | |
1846 uint8_t *data, *ptr; | |
1847 | |
1848 if(!ifofile) | |
1849 return 0; | |
1850 | |
1851 if(ifofile->vmgi_mat) { | |
1852 if(ifofile->vmgi_mat->vmgm_pgci_ut == 0) | |
1853 return 1; | |
1854 sector = ifofile->vmgi_mat->vmgm_pgci_ut; | |
1855 } else if(ifofile->vtsi_mat) { | |
1856 if(ifofile->vtsi_mat->vtsm_pgci_ut == 0) | |
1857 return 1; | |
1858 sector = ifofile->vtsi_mat->vtsm_pgci_ut; | |
1859 } else { | |
1860 return 0; | |
1861 } | |
1862 | |
18879 | 1863 ifofile->pgci_ut = malloc(sizeof(pgci_ut_t)); |
7029 | 1864 if(!ifofile->pgci_ut) |
1865 return 0; | |
1866 | |
1867 if(!DVDFileSeek_(ifofile->file, sector * DVD_BLOCK_LEN)) { | |
1868 free(ifofile->pgci_ut); | |
1869 ifofile->pgci_ut = 0; | |
1870 return 0; | |
1871 } | |
1872 | |
1873 if(!(DVDReadBytes(ifofile->file, ifofile->pgci_ut, PGCI_UT_SIZE))) { | |
1874 free(ifofile->pgci_ut); | |
1875 ifofile->pgci_ut = 0; | |
1876 return 0; | |
1877 } | |
1878 | |
1879 pgci_ut = ifofile->pgci_ut; | |
1880 | |
1881 B2N_16(pgci_ut->nr_of_lus); | |
1882 B2N_32(pgci_ut->last_byte); | |
1883 | |
1884 CHECK_ZERO(pgci_ut->zero_1); | |
15874 | 1885 CHECK_VALUE(pgci_ut->nr_of_lus != 0); |
1886 CHECK_VALUE(pgci_ut->nr_of_lus < 100); // ?? 3-4 ? | |
1887 CHECK_VALUE((uint32_t)pgci_ut->nr_of_lus * PGCI_LU_SIZE < pgci_ut->last_byte); | |
7029 | 1888 |
1889 info_length = pgci_ut->nr_of_lus * PGCI_LU_SIZE; | |
1890 data = malloc(info_length); | |
1891 if(!data) { | |
1892 free(pgci_ut); | |
1893 ifofile->pgci_ut = 0; | |
1894 return 0; | |
1895 } | |
1896 if(!(DVDReadBytes(ifofile->file, data, info_length))) { | |
1897 free(data); | |
1898 free(pgci_ut); | |
1899 ifofile->pgci_ut = 0; | |
1900 return 0; | |
1901 } | |
1902 | |
1903 pgci_ut->lu = malloc(pgci_ut->nr_of_lus * sizeof(pgci_lu_t)); | |
1904 if(!pgci_ut->lu) { | |
1905 free(data); | |
1906 free(pgci_ut); | |
1907 ifofile->pgci_ut = 0; | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1908 return 0; |
7029 | 1909 } |
1910 ptr = data; | |
1911 for(i = 0; i < pgci_ut->nr_of_lus; i++) { | |
1912 memcpy(&pgci_ut->lu[i], ptr, PGCI_LU_SIZE); | |
1913 ptr += PGCI_LU_SIZE; | |
1914 B2N_16(pgci_ut->lu[i].lang_code); | |
1915 B2N_32(pgci_ut->lu[i].lang_start_byte); | |
1916 } | |
1917 free(data); | |
1918 | |
1919 for(i = 0; i < pgci_ut->nr_of_lus; i++) { | |
1920 // Maybe this is only defined for v1.1 and later titles? | |
1921 /* If the bits in 'lu[i].exists' are enumerated abcd efgh then: | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
1922 VTS_x_yy.IFO VIDEO_TS.IFO |
7029 | 1923 a == 0x83 "Root" 0x82 "Title" |
1924 b == 0x84 "Subpicture" | |
1925 c == 0x85 "Audio" | |
1926 d == 0x86 "Angle" | |
1927 e == 0x87 "PTT" | |
1928 */ | |
15874 | 1929 CHECK_VALUE((pgci_ut->lu[i].exists & 0x07) == 0); |
7029 | 1930 } |
1931 | |
1932 for(i = 0; i < pgci_ut->nr_of_lus; i++) { | |
1933 pgci_ut->lu[i].pgcit = malloc(sizeof(pgcit_t)); | |
1934 if(!pgci_ut->lu[i].pgcit) { | |
1935 unsigned int j; | |
1936 for(j = 0; j < i; j++) { | |
1937 ifoFree_PGCIT_internal(pgci_ut->lu[j].pgcit); | |
1938 free(pgci_ut->lu[j].pgcit); | |
1939 } | |
1940 free(pgci_ut->lu); | |
1941 free(pgci_ut); | |
1942 ifofile->pgci_ut = 0; | |
1943 return 0; | |
1944 } | |
1945 if(!ifoRead_PGCIT_internal(ifofile, pgci_ut->lu[i].pgcit, | |
1946 sector * DVD_BLOCK_LEN | |
1947 + pgci_ut->lu[i].lang_start_byte)) { | |
1948 unsigned int j; | |
1949 for(j = 0; j < i; j++) { | |
1950 ifoFree_PGCIT_internal(pgci_ut->lu[j].pgcit); | |
1951 free(pgci_ut->lu[j].pgcit); | |
1952 } | |
1953 free(pgci_ut->lu[i].pgcit); | |
1954 free(pgci_ut->lu); | |
1955 free(pgci_ut); | |
1956 ifofile->pgci_ut = 0; | |
1957 return 0; | |
1958 } | |
1959 // FIXME: Iterate and verify that all menus that should exists accordingly | |
1960 // to pgci_ut->lu[i].exists really do? | |
1961 } | |
1962 | |
1963 return 1; | |
1964 } | |
1965 | |
1966 | |
1967 void ifoFree_PGCI_UT(ifo_handle_t *ifofile) { | |
1968 unsigned int i; | |
1969 | |
1970 if(!ifofile) | |
1971 return; | |
1972 | |
1973 if(ifofile->pgci_ut) { | |
1974 for(i = 0; i < ifofile->pgci_ut->nr_of_lus; i++) { | |
1975 ifoFree_PGCIT_internal(ifofile->pgci_ut->lu[i].pgcit); | |
1976 free(ifofile->pgci_ut->lu[i].pgcit); | |
1977 } | |
1978 free(ifofile->pgci_ut->lu); | |
1979 free(ifofile->pgci_ut); | |
1980 ifofile->pgci_ut = 0; | |
1981 } | |
1982 } | |
1983 | |
1984 static int ifoRead_VTS_ATTRIBUTES(ifo_handle_t *ifofile, | |
1985 vts_attributes_t *vts_attributes, | |
1986 unsigned int offset) { | |
1987 unsigned int i; | |
1988 | |
1989 if(!DVDFileSeek_(ifofile->file, offset)) | |
1990 return 0; | |
1991 | |
1992 if(!(DVDReadBytes(ifofile->file, vts_attributes, sizeof(vts_attributes_t)))) | |
1993 return 0; | |
1994 | |
1995 B2N_32(vts_attributes->last_byte); | |
1996 B2N_32(vts_attributes->vts_cat); | |
1997 B2N_16(vts_attributes->vtsm_audio_attr.lang_code); | |
1998 B2N_16(vts_attributes->vtsm_subp_attr.lang_code); | |
1999 for(i = 0; i < 8; i++) | |
2000 B2N_16(vts_attributes->vtstt_audio_attr[i].lang_code); | |
2001 for(i = 0; i < 32; i++) | |
2002 B2N_16(vts_attributes->vtstt_subp_attr[i].lang_code); | |
2003 | |
2004 CHECK_ZERO(vts_attributes->zero_1); | |
2005 CHECK_ZERO(vts_attributes->zero_2); | |
2006 CHECK_ZERO(vts_attributes->zero_3); | |
2007 CHECK_ZERO(vts_attributes->zero_4); | |
2008 CHECK_ZERO(vts_attributes->zero_5); | |
2009 CHECK_ZERO(vts_attributes->zero_6); | |
2010 CHECK_ZERO(vts_attributes->zero_7); | |
15874 | 2011 CHECK_VALUE(vts_attributes->nr_of_vtsm_audio_streams <= 1); |
2012 CHECK_VALUE(vts_attributes->nr_of_vtsm_subp_streams <= 1); | |
2013 CHECK_VALUE(vts_attributes->nr_of_vtstt_audio_streams <= 8); | |
7029 | 2014 for(i = vts_attributes->nr_of_vtstt_audio_streams; i < 8; i++) |
2015 CHECK_ZERO(vts_attributes->vtstt_audio_attr[i]); | |
15874 | 2016 CHECK_VALUE(vts_attributes->nr_of_vtstt_subp_streams <= 32); |
7029 | 2017 { |
2018 unsigned int nr_coded; | |
15874 | 2019 CHECK_VALUE(vts_attributes->last_byte + 1 >= VTS_ATTRIBUTES_MIN_SIZE); |
7029 | 2020 nr_coded = (vts_attributes->last_byte + 1 - VTS_ATTRIBUTES_MIN_SIZE)/6; |
2021 // This is often nr_coded = 70, how do you know how many there really are? | |
2022 if(nr_coded > 32) { // We haven't read more from disk/file anyway | |
2023 nr_coded = 32; | |
2024 } | |
15874 | 2025 CHECK_VALUE(vts_attributes->nr_of_vtstt_subp_streams <= nr_coded); |
7029 | 2026 for(i = vts_attributes->nr_of_vtstt_subp_streams; i < nr_coded; i++) |
2027 CHECK_ZERO(vts_attributes->vtstt_subp_attr[i]); | |
2028 } | |
2029 | |
2030 return 1; | |
2031 } | |
2032 | |
2033 | |
2034 | |
2035 int ifoRead_VTS_ATRT(ifo_handle_t *ifofile) { | |
2036 vts_atrt_t *vts_atrt; | |
2037 unsigned int i, info_length, sector; | |
2038 uint32_t *data; | |
2039 | |
2040 if(!ifofile) | |
2041 return 0; | |
2042 | |
2043 if(!ifofile->vmgi_mat) | |
2044 return 0; | |
2045 | |
2046 if(ifofile->vmgi_mat->vts_atrt == 0) /* mandatory */ | |
2047 return 0; | |
2048 | |
2049 sector = ifofile->vmgi_mat->vts_atrt; | |
2050 if(!DVDFileSeek_(ifofile->file, sector * DVD_BLOCK_LEN)) | |
2051 return 0; | |
2052 | |
18879 | 2053 vts_atrt = malloc(sizeof(vts_atrt_t)); |
7029 | 2054 if(!vts_atrt) |
2055 return 0; | |
2056 | |
2057 ifofile->vts_atrt = vts_atrt; | |
2058 | |
2059 if(!(DVDReadBytes(ifofile->file, vts_atrt, VTS_ATRT_SIZE))) { | |
2060 free(vts_atrt); | |
2061 ifofile->vts_atrt = 0; | |
2062 return 0; | |
2063 } | |
2064 | |
2065 B2N_16(vts_atrt->nr_of_vtss); | |
2066 B2N_32(vts_atrt->last_byte); | |
2067 | |
2068 CHECK_ZERO(vts_atrt->zero_1); | |
15874 | 2069 CHECK_VALUE(vts_atrt->nr_of_vtss != 0); |
2070 CHECK_VALUE(vts_atrt->nr_of_vtss < 100); //?? | |
2071 CHECK_VALUE((uint32_t)vts_atrt->nr_of_vtss * (4 + VTS_ATTRIBUTES_MIN_SIZE) + | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
2072 VTS_ATRT_SIZE < vts_atrt->last_byte + 1); |
7029 | 2073 |
2074 info_length = vts_atrt->nr_of_vtss * sizeof(uint32_t); | |
18879 | 2075 data = malloc(info_length); |
7029 | 2076 if(!data) { |
2077 free(vts_atrt); | |
2078 ifofile->vts_atrt = 0; | |
2079 return 0; | |
2080 } | |
15874 | 2081 |
2082 vts_atrt->vts_atrt_offsets = data; | |
2083 | |
7029 | 2084 if(!(DVDReadBytes(ifofile->file, data, info_length))) { |
2085 free(data); | |
2086 free(vts_atrt); | |
2087 ifofile->vts_atrt = 0; | |
2088 return 0; | |
2089 } | |
2090 | |
2091 for(i = 0; i < vts_atrt->nr_of_vtss; i++) { | |
2092 B2N_32(data[i]); | |
15874 | 2093 CHECK_VALUE(data[i] + VTS_ATTRIBUTES_MIN_SIZE < vts_atrt->last_byte + 1); |
7029 | 2094 } |
2095 | |
2096 info_length = vts_atrt->nr_of_vtss * sizeof(vts_attributes_t); | |
18879 | 2097 vts_atrt->vts = malloc(info_length); |
7029 | 2098 if(!vts_atrt->vts) { |
2099 free(data); | |
2100 free(vts_atrt); | |
2101 ifofile->vts_atrt = 0; | |
2102 return 0; | |
2103 } | |
2104 for(i = 0; i < vts_atrt->nr_of_vtss; i++) { | |
2105 unsigned int offset = data[i]; | |
2106 if(!ifoRead_VTS_ATTRIBUTES(ifofile, &(vts_atrt->vts[i]), | |
2107 (sector * DVD_BLOCK_LEN) + offset)) { | |
2108 free(data); | |
2109 free(vts_atrt); | |
2110 ifofile->vts_atrt = 0; | |
2111 return 0; | |
2112 } | |
2113 | |
2114 // This assert cant be in ifoRead_VTS_ATTRIBUTES | |
15874 | 2115 CHECK_VALUE(offset + vts_atrt->vts[i].last_byte <= vts_atrt->last_byte + 1); |
7029 | 2116 // Is this check correct? |
2117 } | |
2118 | |
2119 return 1; | |
2120 } | |
2121 | |
2122 | |
2123 void ifoFree_VTS_ATRT(ifo_handle_t *ifofile) { | |
2124 if(!ifofile) | |
2125 return; | |
2126 | |
2127 if(ifofile->vts_atrt) { | |
2128 free(ifofile->vts_atrt->vts); | |
15874 | 2129 free(ifofile->vts_atrt->vts_atrt_offsets); |
7029 | 2130 free(ifofile->vts_atrt); |
2131 ifofile->vts_atrt = 0; | |
2132 } | |
2133 } | |
2134 | |
2135 | |
2136 int ifoRead_TXTDT_MGI(ifo_handle_t *ifofile) { | |
2137 txtdt_mgi_t *txtdt_mgi; | |
2138 | |
2139 if(!ifofile) | |
2140 return 0; | |
2141 | |
2142 if(!ifofile->vmgi_mat) | |
2143 return 0; | |
2144 | |
2145 /* Return successfully if there is nothing to read. */ | |
2146 if(ifofile->vmgi_mat->txtdt_mgi == 0) | |
2147 return 1; | |
2148 | |
2149 if(!DVDFileSeek_(ifofile->file, | |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
2150 ifofile->vmgi_mat->txtdt_mgi * DVD_BLOCK_LEN)) |
7029 | 2151 return 0; |
2152 | |
18879 | 2153 txtdt_mgi = malloc(sizeof(txtdt_mgi_t)); |
7029 | 2154 if(!txtdt_mgi) { |
2155 return 0; | |
2156 } | |
2157 ifofile->txtdt_mgi = txtdt_mgi; | |
2158 | |
2159 if(!(DVDReadBytes(ifofile->file, txtdt_mgi, TXTDT_MGI_SIZE))) { | |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
2160 if(dvdread_verbose(device_of_file(ifofile->file)) >= 1) { |
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
24047
diff
changeset
|
2161 fprintf(stderr, "libdvdread: Unable to read TXTDT_MGI.\n"); |
24047
de28f9e8cb00
Sync libdvdread with version 0.9.5 (functional changes).
diego
parents:
20981
diff
changeset
|
2162 } |
7029 | 2163 free(txtdt_mgi); |
2164 ifofile->txtdt_mgi = 0; | |
2165 return 0; | |
2166 } | |
2167 | |
2168 // fprintf(stderr, "-- Not done yet --\n"); | |
2169 return 1; | |
2170 } | |
2171 | |
2172 void ifoFree_TXTDT_MGI(ifo_handle_t *ifofile) { | |
2173 if(!ifofile) | |
2174 return; | |
2175 | |
2176 if(ifofile->txtdt_mgi) { | |
2177 free(ifofile->txtdt_mgi); | |
2178 ifofile->txtdt_mgi = 0; | |
2179 } | |
2180 } | |
2181 |