Mercurial > libdvdnav.hg
annotate searching.c @ 68:3b45c78f061e src
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
author | richwareham |
---|---|
date | Fri, 26 Jul 2002 07:27:52 +0000 |
parents | a7b12d28a6ab |
children | 0e2abe7083de |
rev | line source |
---|---|
0 | 1 /* |
2 * Copyright (C) 2000 Rich Wareham <richwareham@users.sourceforge.net> | |
3 * | |
4 * This file is part of libdvdnav, a DVD navigation library. | |
5 * | |
6 * libdvdnav 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 * libdvdnav 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 * $Id$ | |
21 * | |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 #include "config.h" | |
26 #endif | |
27 | |
28 #include <dvdnav.h> | |
29 #include "dvdnav_internal.h" | |
30 | |
31 #include "vm.h" | |
32 #include <dvdread/nav_types.h> | |
33 | |
34 /* Searching API calls */ | |
35 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
36 dvdnav_status_t dvdnav_time_search(dvdnav_t *this, |
0 | 37 unsigned long int time) { |
38 /* Time search the current PGC based on the xxx table */ | |
39 return S_OK; | |
40 } | |
41 | |
24 | 42 /* Scan the ADMAP for a particular block number. */ |
43 /* Return placed in vobu. */ | |
44 /* Returns error status */ | |
45 | |
46 dvdnav_status_t dvdnav_scan_admap(dvdnav_t *this, int32_t domain, int32_t seekto_block, int32_t *vobu) { | |
47 /* FIXME:Need to handle seeking outside current cell. */ | |
48 vobu_admap_t *admap = NULL; | |
49 *vobu = -1; | |
50 fprintf(stderr,"Seeking to target %u ...\n", | |
51 seekto_block); | |
52 | |
53 /* Search through the VOBU_ADMAP for the nearest VOBU | |
54 * to the target block */ | |
55 switch(domain) { | |
56 case FP_DOMAIN: | |
57 case VMGM_DOMAIN: | |
58 admap = this->vm->vmgi->menu_vobu_admap; | |
59 break; | |
60 case VTSM_DOMAIN: | |
61 admap = this->vm->vtsi->menu_vobu_admap; | |
62 break; | |
63 case VTS_DOMAIN: | |
64 admap = this->vm->vtsi->vts_vobu_admap; | |
65 break; | |
66 default: | |
67 fprintf(stderr,"Error: Unknown domain for seeking seek.\n"); | |
68 } | |
69 if(admap) { | |
70 int32_t address = 0; | |
71 int32_t vobu_start, next_vobu; | |
72 int found = 0; | |
73 | |
74 /* Search through ADMAP for best sector */ | |
75 vobu_start = 0x3fffffff; | |
76 /* FIXME: Implement a faster search algorithm */ | |
77 while((!found) && ((address<<2) < admap->last_byte)) { | |
78 next_vobu = admap->vobu_start_sectors[address]; | |
79 | |
80 /* printf("Found block %u\n", next_vobu); */ | |
81 | |
82 if(vobu_start <= seekto_block && | |
83 next_vobu > seekto_block) { | |
84 found = 1; | |
85 } else { | |
86 vobu_start = next_vobu; | |
87 } | |
88 | |
89 address ++; | |
90 } | |
91 if(found) { | |
92 *vobu = vobu_start; | |
93 return S_OK; | |
94 } else { | |
95 fprintf(stderr,"Could not locate block\n"); | |
96 return S_ERR; | |
97 } | |
98 } | |
99 fprintf(stderr,"admap not located\n"); | |
100 return S_ERR; | |
101 } | |
102 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
103 dvdnav_status_t dvdnav_sector_search(dvdnav_t *this, |
0 | 104 unsigned long int offset, int origin) { |
105 /* FIXME: Implement */ | |
106 | |
107 uint32_t target = 0; | |
108 uint32_t length = 0; | |
109 uint32_t first_cell_nr, last_cell_nr, cell_nr, fnd_cell_nr; | |
110 int found; | |
111 cell_playback_t *cell, *fnd_cell; | |
112 dvd_state_t *state; | |
113 dvdnav_status_t result; | |
114 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
115 if((!this) || (!this->vm) ) |
0 | 116 return -1; |
117 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
118 state = &(this->vm->state); |
0 | 119 if((!state) || (!state->pgc) ) |
120 return -1; | |
121 | |
122 if(offset == 0) | |
123 return -1; | |
124 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
125 if(this->position_current.still != 0) |
0 | 126 /* Cannot do seeking in a still frame. */ |
127 return -1; | |
128 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
129 pthread_mutex_lock(&this->vm_lock); |
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
130 result = dvdnav_get_position(this, &target, &length); |
0 | 131 fprintf(stderr,"FIXME: seeking to offset=%lu pos=%u length=%u\n", offset, target, length); |
132 fprintf(stderr,"FIXME: Before cellN=%u blockN=%u\n" , | |
133 state->cellN, | |
134 state->blockN); | |
135 if(!result) { | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
136 pthread_mutex_unlock(&this->vm_lock); |
0 | 137 return -1; |
138 } | |
139 | |
140 switch(origin) { | |
141 case SEEK_SET: | |
142 if(offset > length) { | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
143 pthread_mutex_unlock(&this->vm_lock); |
0 | 144 return -1; |
145 } | |
146 target = offset; | |
147 break; | |
148 case SEEK_CUR: | |
149 if(target + offset > length) { | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
150 pthread_mutex_unlock(&this->vm_lock); |
0 | 151 return -1; |
152 } | |
153 target += offset; | |
154 break; | |
155 case SEEK_END: | |
156 if(length - offset < 0) { | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
157 pthread_mutex_unlock(&this->vm_lock); |
0 | 158 return -1; |
159 } | |
160 target = length - offset; | |
161 default: | |
162 /* Error occured */ | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
163 pthread_mutex_unlock(&this->vm_lock); |
0 | 164 return -1; |
165 } | |
166 | |
167 /* First find closest cell number in program */ | |
168 first_cell_nr = state->pgc->program_map[state->pgN-1]; | |
169 if(state->pgN < state->pgc->nr_of_programs) { | |
170 last_cell_nr = state->pgc->program_map[state->pgN] - 1; | |
171 } else { | |
172 last_cell_nr = state->pgc->nr_of_cells; | |
173 } | |
174 | |
175 found = 0; target += state->pgc->cell_playback[first_cell_nr-1].first_sector; | |
176 fnd_cell_nr = last_cell_nr + 1; | |
177 for(cell_nr = first_cell_nr; (cell_nr <= last_cell_nr) && !found; cell_nr ++) { | |
178 cell = &(state->pgc->cell_playback[cell_nr-1]); | |
179 if((cell->first_sector <= target) && (cell->last_sector >= target)) { | |
180 state->cellN = cell_nr; | |
181 state->blockN = 0; | |
182 found = 1; | |
183 fnd_cell_nr = cell_nr; | |
184 fnd_cell = cell; | |
185 } | |
186 } | |
187 | |
188 if(fnd_cell_nr <= last_cell_nr) { | |
26 | 189 int32_t vobu, start; |
24 | 190 dvdnav_status_t status; |
3
328eadb3f37e
Added initial example programs directory and make sure all debug/error output goes to stderr.
richwareham
parents:
0
diff
changeset
|
191 fprintf(stderr,"Seeking to cell %i from choice of %i to %i\n", |
0 | 192 fnd_cell_nr, first_cell_nr, last_cell_nr); |
24 | 193 status = dvdnav_scan_admap(this, state->domain, target, &vobu); |
0 | 194 /* |
195 * Clut does not actually change, | |
196 * but as the decoders have been closed then opened, | |
197 * A new clut has to be sent. | |
198 */ | |
24 | 199 start =(state->pgc->cell_playback[state->cellN - 1].first_sector); |
200 fprintf(stderr,"FIXME: After cellN=%u blockN=%u target=%x vobu=%x start=%x\n" , | |
0 | 201 state->cellN, |
24 | 202 state->blockN, |
203 target, | |
204 vobu, | |
205 start); | |
206 state->blockN = vobu - start; | |
207 fprintf(stderr,"FIXME: After vobu=%x start=%x blockN=%x\n" , | |
208 vobu, | |
209 start, | |
0 | 210 state->blockN); |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
211 pthread_mutex_unlock(&this->vm_lock); |
0 | 212 return target; |
213 } else { | |
214 fprintf(stderr, "Error when seeking, asked to seek outside program\n"); | |
215 } | |
216 | |
3
328eadb3f37e
Added initial example programs directory and make sure all debug/error output goes to stderr.
richwareham
parents:
0
diff
changeset
|
217 fprintf(stderr,"FIXME: Implement seeking to location %u\n", target); |
0 | 218 |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
219 pthread_mutex_unlock(&this->vm_lock); |
0 | 220 return -1; |
221 } | |
222 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
223 dvdnav_status_t dvdnav_part_search(dvdnav_t *this, int part) { |
68
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
224 |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
225 if((!this) || (!this->vm) ) |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
226 return S_ERR; |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
227 |
0 | 228 return S_OK; |
229 } | |
230 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
231 dvdnav_status_t dvdnav_prev_pg_search(dvdnav_t *this) { |
0 | 232 dvd_state_t *state; |
68
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
233 |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
234 if((!this) || (!this->vm) ) |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
235 return S_ERR; |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
236 |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
237 state = &(this->vm->state); |
68
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
238 if((!state) || (!state->pgc) ) |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
239 return S_ERR; |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
240 |
0 | 241 /* Make sure this is not the first chapter */ |
242 if(state->pgN <= 1 ) { | |
3
328eadb3f37e
Added initial example programs directory and make sure all debug/error output goes to stderr.
richwareham
parents:
0
diff
changeset
|
243 fprintf(stderr,"dvdnav: at first chapter. prev chapter failed.\n"); |
0 | 244 return S_ERR; |
245 } | |
3
328eadb3f37e
Added initial example programs directory and make sure all debug/error output goes to stderr.
richwareham
parents:
0
diff
changeset
|
246 fprintf(stderr,"dvdnav: previous chapter\n"); |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
247 vm_jump_prog(this->vm, state->pgN - 1); |
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
248 this->vm->hop_channel++; |
3
328eadb3f37e
Added initial example programs directory and make sure all debug/error output goes to stderr.
richwareham
parents:
0
diff
changeset
|
249 fprintf(stderr,"dvdnav: previous chapter done\n"); |
0 | 250 |
251 return S_OK; | |
252 } | |
253 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
254 dvdnav_status_t dvdnav_top_pg_search(dvdnav_t *this) { |
0 | 255 |
68
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
256 if((!this) || (!this->vm) ) |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
257 return S_ERR; |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
258 |
3
328eadb3f37e
Added initial example programs directory and make sure all debug/error output goes to stderr.
richwareham
parents:
0
diff
changeset
|
259 fprintf(stderr,"dvdnav: top chapter. NOP.\n"); |
0 | 260 |
261 return S_OK; | |
262 } | |
263 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
264 dvdnav_status_t dvdnav_next_pg_search(dvdnav_t *this) { |
0 | 265 dvd_state_t *state; |
68
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
266 |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
267 if((!this) || (!this->vm) ) |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
268 return S_ERR; |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
269 |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
270 state = &(this->vm->state); |
68
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
271 if((!state) || (!state->pgc) ) |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
272 return S_ERR; |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
273 |
0 | 274 /* Make sure this is not the last chapter */ |
275 if(state->pgN >= state->pgc->nr_of_programs) { | |
3
328eadb3f37e
Added initial example programs directory and make sure all debug/error output goes to stderr.
richwareham
parents:
0
diff
changeset
|
276 fprintf(stderr,"dvdnav: at last chapter. next chapter failed.\n"); |
0 | 277 return S_ERR; |
278 } | |
3
328eadb3f37e
Added initial example programs directory and make sure all debug/error output goes to stderr.
richwareham
parents:
0
diff
changeset
|
279 fprintf(stderr,"dvdnav: next chapter\n"); |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
280 vm_jump_prog(this->vm, state->pgN + 1); |
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
281 this->vm->hop_channel++; |
3
328eadb3f37e
Added initial example programs directory and make sure all debug/error output goes to stderr.
richwareham
parents:
0
diff
changeset
|
282 fprintf(stderr,"dvdnav: next chapter done\n"); |
0 | 283 |
284 return S_OK; | |
285 } | |
286 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
287 dvdnav_status_t dvdnav_menu_call(dvdnav_t *this, DVDMenuID_t menu) { |
0 | 288 dvd_state_t *state; |
289 | |
68
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
290 if((!this) || (!this->vm) ) |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
291 return S_ERR; |
3b45c78f061e
Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents:
63
diff
changeset
|
292 |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
293 pthread_mutex_lock(&this->vm_lock); |
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
294 state = &(this->vm->state); |
63
a7b12d28a6ab
hop on menu calls, patch by Phil Hassey <philhassey@users.sourceforge.net>
mroi
parents:
26
diff
changeset
|
295 if (vm_menu_call(this->vm, menu, 0)) |
a7b12d28a6ab
hop on menu calls, patch by Phil Hassey <philhassey@users.sourceforge.net>
mroi
parents:
26
diff
changeset
|
296 this->vm->hop_channel++; |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
297 pthread_mutex_unlock(&this->vm_lock); |
0 | 298 return S_OK; |
299 } | |
300 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
301 dvdnav_status_t dvdnav_current_title_info(dvdnav_t *this, int *tt, int *pr) { |
0 | 302 int vts_ttn = 0; |
303 int vts, i; | |
304 domain_t domain; | |
305 tt_srpt_t* srpt; | |
306 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
307 if(!this) |
0 | 308 return S_ERR; |
309 | |
310 if(!tt || !pr) { | |
311 printerr("Passed a NULL pointer"); | |
312 } | |
313 | |
314 if(tt) | |
315 *tt = -1; | |
316 if(*pr) | |
317 *pr = -1; | |
318 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
319 domain = this->vm->state.domain; |
0 | 320 if((domain == FP_DOMAIN) || (domain == VMGM_DOMAIN)) { |
321 /* Not in a title */ | |
322 return S_OK; | |
323 } | |
324 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
325 vts_ttn = this->vm->state.VTS_TTN_REG; |
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
326 vts = this->vm->state.vtsN; |
0 | 327 |
328 if(pr) { | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
329 *pr = this->vm->state.pgN; |
0 | 330 } |
331 | |
332 /* Search TT_SRPT for title */ | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
333 if(!(vm_get_vmgi(this->vm))) { |
0 | 334 printerr("Oh poo, no SRPT"); |
335 return S_ERR; | |
336 } | |
337 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
338 srpt = vm_get_vmgi(this->vm)->tt_srpt; |
0 | 339 for(i=0; i<srpt->nr_of_srpts; i++) { |
340 title_info_t* info = &(srpt->title[i]); | |
341 if((info->title_set_nr == vts) && (info->vts_ttn == vts_ttn)) { | |
342 if(tt) | |
343 *tt = i+1; | |
344 } | |
345 } | |
346 | |
347 return S_OK; | |
348 } | |
349 | |
350 static char __title_str[] = "DVDNAV"; | |
351 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
352 dvdnav_status_t dvdnav_get_title_string(dvdnav_t *this, char **title_str) { |
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
353 if(!this) |
0 | 354 return S_ERR; |
355 | |
356 if(!title_str) { | |
357 printerr("Passed a NULL pointer"); | |
358 return S_ERR; | |
359 } | |
360 | |
361 (*title_str) = __title_str; | |
362 | |
363 return S_OK; | |
364 } | |
365 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
366 dvdnav_status_t dvdnav_get_position(dvdnav_t *this, unsigned int* pos, |
0 | 367 unsigned int *len) { |
368 uint32_t cur_sector; | |
369 uint32_t first_cell_nr; | |
370 uint32_t last_cell_nr; | |
371 cell_playback_t *first_cell; | |
372 cell_playback_t *last_cell; | |
373 dvd_state_t *state; | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
374 if((!this) || (!this->vm) ) |
0 | 375 return 0; |
376 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
377 state = &(this->vm->state); |
0 | 378 if((!state) || (!state->pgc) ) |
379 return 0; | |
380 | |
381 /* Sanity check */ | |
382 if(state->pgN > state->pgc->nr_of_programs) { | |
383 return 0; | |
384 } | |
385 | |
386 /* Get current sector */ | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
387 cur_sector = this->vobu.vobu_start + this->vobu.blockN; |
0 | 388 |
389 /* Find start cell of program. */ | |
390 first_cell_nr = state->pgc->program_map[state->pgN-1]; | |
391 first_cell = &(state->pgc->cell_playback[first_cell_nr-1]); | |
392 if(state->pgN < state->pgc->nr_of_programs) { | |
393 last_cell_nr = state->pgc->program_map[state->pgN] - 1; | |
394 } else { | |
395 last_cell_nr = state->pgc->nr_of_cells; | |
396 } | |
397 last_cell = &(state->pgc->cell_playback[last_cell_nr-1]); | |
398 | |
399 *pos= cur_sector - first_cell->first_sector; | |
400 *len= last_cell->last_sector - first_cell->first_sector; | |
401 /* printf("dvdnav:searching:current pos=%u length=%u\n",*pos,*len); */ | |
402 | |
403 | |
404 return S_OK; | |
405 } | |
406 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
407 dvdnav_status_t dvdnav_get_position_in_title(dvdnav_t *this, |
8
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
408 unsigned int *pos, |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
409 unsigned int *len) { |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
410 uint32_t cur_sector; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
411 uint32_t first_cell_nr; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
412 uint32_t last_cell_nr; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
413 cell_playback_t *first_cell; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
414 cell_playback_t *last_cell; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
415 dvd_state_t *state; |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
416 if((!this) || (!this->vm) ) |
8
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
417 return S_ERR; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
418 |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
419 state = &(this->vm->state); |
8
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
420 if((!state) || (!state->pgc) ) |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
421 return S_ERR; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
422 |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
423 /* Sanity check */ |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
424 if(state->pgN > state->pgc->nr_of_programs) { |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
425 return S_ERR; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
426 } |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
427 |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
428 /* Get current sector */ |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
8
diff
changeset
|
429 cur_sector = this->vobu.vobu_start + this->vobu.blockN; |
8
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
430 |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
431 /* Now find first and last cells in title. */ |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
432 first_cell_nr = state->pgc->program_map[0]; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
433 first_cell = &(state->pgc->cell_playback[first_cell_nr-1]); |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
434 last_cell_nr = state->pgc->nr_of_cells; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
435 last_cell = &(state->pgc->cell_playback[last_cell_nr-1]); |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
436 |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
437 *pos = cur_sector - first_cell->first_sector; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
438 *len = last_cell->last_sector - first_cell->first_sector; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
439 |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
440 return S_OK; |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
441 } |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
442 |
66708b4a1b5e
Stop C++ bitching about some things and extend the menus example
richwareham
parents:
3
diff
changeset
|
443 |