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