annotate searching.c @ 104:06cba5cee071 src

Make seek work better. Repeated seeks to the same position now work, instead of just acting as a NULL operation.
author jcdutton
date Sat, 12 Oct 2002 10:38:11 +0000
parents 3e6970dbe8d6
children ec2df154be56
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
1 /*
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
2 * Copyright (C) 2000 Rich Wareham <richwareham@users.sourceforge.net>
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
3 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
4 * This file is part of libdvdnav, a DVD navigation library.
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
5 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
6 * libdvdnav is free software; you can redistribute it and/or modify
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
7 * it under the terms of the GNU General Public License as published by
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
8 * the Free Software Foundation; either version 2 of the License, or
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
9 * (at your option) any later version.
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
10 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
11 * libdvdnav is distributed in the hope that it will be useful,
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
14 * GNU General Public License for more details.
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
15 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
16 * You should have received a copy of the GNU General Public License
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
17 * along with this program; if not, write to the Free Software
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
19 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
20 * $Id$
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
21 *
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
22 */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
23
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
24 #ifdef HAVE_CONFIG_H
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
25 #include "config.h"
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
26 #endif
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
27
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
28 #include <dvdnav.h>
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
29 #include "dvdnav_internal.h"
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
30
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
31 #include "vm.h"
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
32 #include <dvdread/nav_types.h>
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
33
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
34 /* Searching API calls */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
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
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
37 unsigned long int time) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
38 /* Time search the current PGC based on the xxx table */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
39 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
40 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
41
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
42 /* Scan the ADMAP for a particular block number. */
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
43 /* Return placed in vobu. */
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
44 /* Returns error status */
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
45
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
46 dvdnav_status_t dvdnav_scan_admap(dvdnav_t *this, int32_t domain, int32_t seekto_block, int32_t *vobu) {
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
47 /* FIXME:Need to handle seeking outside current cell. */
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
48 vobu_admap_t *admap = NULL;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
49 *vobu = -1;
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
50 fprintf(MSG_OUT, "libdvdnav: Seeking to target %u ...\n",
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
51 seekto_block);
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
52
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
53 /* Search through the VOBU_ADMAP for the nearest VOBU
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
54 * to the target block */
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
55 switch(domain) {
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
56 case FP_DOMAIN:
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
57 case VMGM_DOMAIN:
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
58 admap = this->vm->vmgi->menu_vobu_admap;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
59 break;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
60 case VTSM_DOMAIN:
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
61 admap = this->vm->vtsi->menu_vobu_admap;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
62 break;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
63 case VTS_DOMAIN:
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
64 admap = this->vm->vtsi->vts_vobu_admap;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
65 break;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
66 default:
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
67 fprintf(MSG_OUT, "libdvdnav: Error: Unknown domain for seeking seek.\n");
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
68 }
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
69 if(admap) {
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
70 int32_t address = 0;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
71 int32_t vobu_start, next_vobu;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
72 int found = 0;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
73
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
74 /* Search through ADMAP for best sector */
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
75 vobu_start = 0x3fffffff;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
76 /* FIXME: Implement a faster search algorithm */
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
77 while((!found) && ((address<<2) < admap->last_byte)) {
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
78 next_vobu = admap->vobu_start_sectors[address];
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
79
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
80 /* fprintf(MSG_OUT, "libdvdnav: Found block %u\n", next_vobu); */
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
81
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
82 if(vobu_start <= seekto_block &&
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
83 next_vobu > seekto_block) {
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
84 found = 1;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
85 } else {
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
86 vobu_start = next_vobu;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
87 }
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
88
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
89 address ++;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
90 }
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
91 if(found) {
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
92 *vobu = vobu_start;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
93 return S_OK;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
94 } else {
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
95 fprintf(MSG_OUT, "libdvdnav: Could not locate block\n");
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
96 return S_ERR;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
97 }
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
98 }
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
99 fprintf(MSG_OUT, "libdvdnav: admap not located\n");
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
100 return S_ERR;
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
101 }
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
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
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
104 unsigned long int offset, int origin) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
105 /* FIXME: Implement */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
106
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
107 uint32_t target = 0;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
108 uint32_t length = 0;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
109 uint32_t first_cell_nr, last_cell_nr, cell_nr, fnd_cell_nr;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
110 int found;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
111 cell_playback_t *cell, *fnd_cell;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
112 dvd_state_t *state;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
113 dvdnav_status_t result;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
114
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
115 if((!this) || (!this->vm) || (!this->started))
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
116 return -1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
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
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
119 if((!state) || (!state->pgc) )
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
120 return -1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
121
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
122 if(this->position_current.still != 0)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
123 /* Cannot do seeking in a still frame. */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
124 return -1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
125
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
126 pthread_mutex_lock(&this->vm_lock);
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
127 result = dvdnav_get_position(this, &target, &length);
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
128 fprintf(MSG_OUT, "libdvdnav: FIXME: seeking to offset=%lu pos=%u length=%u\n", offset, target, length);
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
129 fprintf(MSG_OUT, "libdvdnav: FIXME: Before cellN=%u blockN=%u\n" ,
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
130 state->cellN,
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
131 state->blockN);
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
132 if(!result) {
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
133 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
134 return -1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
135 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
136
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
137 switch(origin) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
138 case SEEK_SET:
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
139 if(offset > length) {
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
140 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
141 return -1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
142 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
143 target = offset;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
144 break;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
145 case SEEK_CUR:
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
146 if(target + offset > length) {
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
147 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
148 return -1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
149 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
150 target += offset;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
151 break;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
152 case SEEK_END:
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
153 if(length - offset < 0) {
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
154 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
155 return -1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
156 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
157 target = length - offset;
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
158 break;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
159 default:
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
160 /* Error occured */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
161 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
162 return -1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
163 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
164
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
165 /* First find closest cell number in program */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
166 first_cell_nr = state->pgc->program_map[state->pgN-1];
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
167 if(state->pgN < state->pgc->nr_of_programs) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
168 last_cell_nr = state->pgc->program_map[state->pgN] - 1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
169 } else {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
170 last_cell_nr = state->pgc->nr_of_cells;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
171 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
172
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
173 found = 0; target += state->pgc->cell_playback[first_cell_nr-1].first_sector;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
174 fnd_cell_nr = last_cell_nr + 1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
175 for(cell_nr = first_cell_nr; (cell_nr <= last_cell_nr) && !found; cell_nr ++) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
176 cell = &(state->pgc->cell_playback[cell_nr-1]);
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
177 if((cell->first_sector <= target) && (cell->last_sector >= target)) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
178 state->cellN = cell_nr;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
179 state->blockN = 0;
104
06cba5cee071 Make seek work better.
jcdutton
parents: 102
diff changeset
180 state->cell_restart++;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
181 found = 1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
182 fnd_cell_nr = cell_nr;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
183 fnd_cell = cell;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
184 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
185 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
186
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
187 if(fnd_cell_nr <= last_cell_nr) {
26
794d2e16a4d4 Removed un-needed variables.
jcdutton
parents: 25
diff changeset
188 int32_t vobu, start;
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
189 dvdnav_status_t status;
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
190 fprintf(MSG_OUT, "libdvdnav: Seeking to cell %i from choice of %i to %i\n",
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
191 fnd_cell_nr, first_cell_nr, last_cell_nr);
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
192 status = dvdnav_scan_admap(this, state->domain, target, &vobu);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
193 /*
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
194 * Clut does not actually change,
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
195 * but as the decoders have been closed then opened,
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
196 * A new clut has to be sent.
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
197 */
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
198 start =(state->pgc->cell_playback[state->cellN - 1].first_sector);
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
199 fprintf(MSG_OUT, "libdvdnav: FIXME: After cellN=%u blockN=%u target=%x vobu=%x start=%x\n" ,
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
200 state->cellN,
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
201 state->blockN,
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
202 target,
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
203 vobu,
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
204 start);
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
205 state->blockN = vobu - start;
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
206 fprintf(MSG_OUT, "libdvdnav: FIXME: After vobu=%x start=%x blockN=%x\n" ,
24
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
207 vobu,
870a0a1eee41 Re-implemented seeking.
jcdutton
parents: 22
diff changeset
208 start,
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
209 state->blockN);
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
210 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
211 return target;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
212 } else {
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
213 fprintf(MSG_OUT, "libdvdnav: Error when seeking, asked to seek outside program\n");
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
214 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
215
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
216 fprintf(MSG_OUT, "libdvdnav: FIXME: Implement seeking to location %u\n", target);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
217
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
218 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
219 return -1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
220 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
221
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
222 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
223
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
224 if((!this) || (!this->vm) )
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
225 return S_ERR;
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
226
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
227 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
228 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
229
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
230 dvdnav_status_t dvdnav_prev_pg_search(dvdnav_t *this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
231 dvd_state_t *state;
68
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
232
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
233 if((!this) || (!this->vm) )
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
234 return S_ERR;
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
235
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
236 state = &(this->vm->state);
68
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
237 if((!state) || (!state->pgc) )
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
238 return S_ERR;
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
239
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
240 pthread_mutex_lock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
241 /* Make sure this is not the first chapter */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
242 if(state->pgN <= 1 ) {
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
243 fprintf(MSG_OUT, "libdvdnav: at first chapter. prev chapter failed.\n");
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
244 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
245 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
246 }
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
247 fprintf(MSG_OUT, "libdvdnav: previous chapter\n");
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
248 vm_jump_prog(this->vm, state->pgN - 1);
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
249 this->position_current.still = 0;
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
250 this->vm->hop_channel++;
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
251 fprintf(MSG_OUT, "libdvdnav: previous chapter done\n");
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
252 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
253
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
254 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
255 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
256
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
257 dvdnav_status_t dvdnav_top_pg_search(dvdnav_t *this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
258
68
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
259 if((!this) || (!this->vm) )
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
260 return S_ERR;
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
261
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
262 fprintf(MSG_OUT, "libdvdnav: top chapter. NOP.\n");
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
263
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
264 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
265 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
266
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
267 dvdnav_status_t dvdnav_next_pg_search(dvdnav_t *this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
268 dvd_state_t *state;
68
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
269
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
270 if((!this) || (!this->vm) )
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
271 return S_ERR;
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
272
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
273 state = &(this->vm->state);
68
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
274 if((!state) || (!state->pgc) )
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
275 return S_ERR;
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
276
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
277 pthread_mutex_lock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
278 /* Make sure this is not the last chapter */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
279 if(state->pgN >= state->pgc->nr_of_programs) {
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
280 fprintf(MSG_OUT, "libdvdnav: at last chapter. jumping to end of last cell.\n");
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
281 this->vm->state.cellN = this->vm->state.pgc->nr_of_cells;
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
282 vm_get_next_cell(this->vm);
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
283 } else {
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
284 fprintf(MSG_OUT, "libdvdnav: next chapter\n");
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
285 vm_jump_prog(this->vm, state->pgN + 1);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
286 }
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
287 this->position_current.still = 0;
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
288 this->vm->hop_channel++;
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
289 fprintf(MSG_OUT, "libdvdnav: next chapter done\n");
102
3e6970dbe8d6 - allow seeking to offset 0 (pressing '0' in xine won't work otherwise)
mroi
parents: 90
diff changeset
290 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
291
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
292 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
293 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
294
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
295 dvdnav_status_t dvdnav_menu_call(dvdnav_t *this, DVDMenuID_t menu) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
296 dvd_state_t *state;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
297
68
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
298 if((!this) || (!this->vm) )
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
299 return S_ERR;
3b45c78f061e Some NULL-pointer check from aschultz@cs.uni-magdeburg.de
richwareham
parents: 63
diff changeset
300
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
301 pthread_mutex_lock(&this->vm_lock);
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
302 state = &(this->vm->state);
63
a7b12d28a6ab hop on menu calls, patch by Phil Hassey <philhassey@users.sourceforge.net>
mroi
parents: 26
diff changeset
303 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
304 this->vm->hop_channel++;
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
305 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
306 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
307 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
308
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
309 static char __title_str[] = "DVDNAV";
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
310
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
311 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
312 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
313 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
314
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
315 if(!title_str) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
316 printerr("Passed a NULL pointer");
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
317 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
318 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
319
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
320 (*title_str) = __title_str;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
321
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
322 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
323 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
324
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
325 dvdnav_status_t dvdnav_get_position(dvdnav_t *this, unsigned int* pos,
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
326 unsigned int *len) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
327 uint32_t cur_sector;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
328 uint32_t first_cell_nr;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
329 uint32_t last_cell_nr;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
330 cell_playback_t *first_cell;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
331 cell_playback_t *last_cell;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
332 dvd_state_t *state;
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
333 if((!this) || (!this->vm) )
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
334 return 0;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
335
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
336 state = &(this->vm->state);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
337 if((!state) || (!state->pgc) )
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
338 return 0;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
339
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
340 /* Sanity check */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
341 if(state->pgN > state->pgc->nr_of_programs) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
342 return 0;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
343 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
344
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
345 /* Get current sector */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
346 cur_sector = this->vobu.vobu_start + this->vobu.blockN;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
347
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
348 /* Find start cell of program. */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
349 first_cell_nr = state->pgc->program_map[state->pgN-1];
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
350 first_cell = &(state->pgc->cell_playback[first_cell_nr-1]);
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
351 if(state->pgN < state->pgc->nr_of_programs) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
352 last_cell_nr = state->pgc->program_map[state->pgN] - 1;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
353 } else {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
354 last_cell_nr = state->pgc->nr_of_cells;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
355 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
356 last_cell = &(state->pgc->cell_playback[last_cell_nr-1]);
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
357
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
358 *pos= cur_sector - first_cell->first_sector;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
359 *len= last_cell->last_sector - first_cell->first_sector;
76
0e2abe7083de more consistent console output
mroi
parents: 68
diff changeset
360 /* fprintf(MSG_OUT, "libdvdnav: searching:current pos=%u length=%u\n",*pos,*len); */
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
361
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
362
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
363 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
364 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
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_in_title(dvdnav_t *this,
8
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
367 unsigned int *pos,
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
368 unsigned int *len) {
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
369 uint32_t cur_sector;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
370 uint32_t first_cell_nr;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
371 uint32_t last_cell_nr;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
372 cell_playback_t *first_cell;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
373 cell_playback_t *last_cell;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
374 dvd_state_t *state;
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
375 if((!this) || (!this->vm) )
8
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
376 return S_ERR;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
377
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
378 state = &(this->vm->state);
8
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
379 if((!state) || (!state->pgc) )
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
380 return S_ERR;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
381
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
382 /* Sanity check */
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
383 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
384 return S_ERR;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
385 }
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
386
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
387 /* Get current sector */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 8
diff changeset
388 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
389
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
390 /* 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
391 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
392 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
393 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
394 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
395
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
396 *pos = cur_sector - first_cell->first_sector;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
397 *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
398
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
399 return S_OK;
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
400 }
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
401
66708b4a1b5e Stop C++ bitching about some things and extend the menus example
richwareham
parents: 3
diff changeset
402