Mercurial > libdvdnav.hg
annotate navigation.c @ 316:e60fce5af518 src
in B2N_64 always append ULL to the hex bitmasks to force conversion of
the expression to 64 bit and prevent overflow; patch by VLC team
author | nicodvb |
---|---|
date | Tue, 04 Dec 2007 23:03:58 +0000 |
parents | 2146ff691bcd |
children | 68736572c62c |
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 | |
278 | 28 #include <inttypes.h> |
294
2146ff691bcd
include limits.h; it was included in the previous dvdnav_internal.h and without it players segfault
nicodvb
parents:
290
diff
changeset
|
29 #include <limits.h> |
288
ce4230602517
moved away from dvdnav_internal.h inclusion of various system headers
nicodvb
parents:
285
diff
changeset
|
30 #include <string.h> |
290 | 31 #include <sys/time.h> |
285
52877d182e96
moved all header inclusions from .h to .c files; my word, I've never seen such a horrible entanglement as in this mess
nicodvb
parents:
278
diff
changeset
|
32 #include "dvd_types.h" |
52877d182e96
moved all header inclusions from .h to .c files; my word, I've never seen such a horrible entanglement as in this mess
nicodvb
parents:
278
diff
changeset
|
33 #include "nav_types.h" |
52877d182e96
moved all header inclusions from .h to .c files; my word, I've never seen such a horrible entanglement as in this mess
nicodvb
parents:
278
diff
changeset
|
34 #include "ifo_types.h" |
52877d182e96
moved all header inclusions from .h to .c files; my word, I've never seen such a horrible entanglement as in this mess
nicodvb
parents:
278
diff
changeset
|
35 #include "remap.h" |
52877d182e96
moved all header inclusions from .h to .c files; my word, I've never seen such a horrible entanglement as in this mess
nicodvb
parents:
278
diff
changeset
|
36 #include "vm/decoder.h" |
52877d182e96
moved all header inclusions from .h to .c files; my word, I've never seen such a horrible entanglement as in this mess
nicodvb
parents:
278
diff
changeset
|
37 #include "vm/vm.h" |
52877d182e96
moved all header inclusions from .h to .c files; my word, I've never seen such a horrible entanglement as in this mess
nicodvb
parents:
278
diff
changeset
|
38 #include "vm/vmcmd.h" |
52877d182e96
moved all header inclusions from .h to .c files; my word, I've never seen such a horrible entanglement as in this mess
nicodvb
parents:
278
diff
changeset
|
39 #include "dvdnav.h" |
0 | 40 #include "dvdnav_internal.h" |
41 | |
42 /* Navigation API calls */ | |
43 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
5
diff
changeset
|
44 dvdnav_status_t dvdnav_still_skip(dvdnav_t *this) { |
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
5
diff
changeset
|
45 this->position_current.still = 0; |
23 | 46 this->skip_still = 1; |
116 | 47 this->sync_wait = 0; |
48 this->sync_wait_skip = 1; | |
49 | |
193 | 50 return DVDNAV_STATUS_OK; |
116 | 51 } |
52 | |
53 dvdnav_status_t dvdnav_wait_skip(dvdnav_t *this) { | |
54 this->sync_wait = 0; | |
55 this->sync_wait_skip = 1; | |
0 | 56 |
193 | 57 return DVDNAV_STATUS_OK; |
0 | 58 } |
59 | |
195 | 60 dvdnav_status_t dvdnav_get_number_of_titles(dvdnav_t *this, int32_t *titles) { |
248
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
61 if (!this->vm->vmgi) { |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
62 printerr("Bad VM state."); |
223
2d79ef3f3956
we should not start the VM on dvdnav_get_number_of_titles,
mroi
parents:
195
diff
changeset
|
63 return DVDNAV_STATUS_ERR; |
94
e29110f67f3a
Get xine dvd:///dev/dvd:1.2 i.e. title play working again.
jcdutton
parents:
90
diff
changeset
|
64 } |
e29110f67f3a
Get xine dvd:///dev/dvd:1.2 i.e. title play working again.
jcdutton
parents:
90
diff
changeset
|
65 |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
5
diff
changeset
|
66 (*titles) = vm_get_vmgi(this->vm)->tt_srpt->nr_of_srpts; |
0 | 67 |
193 | 68 return DVDNAV_STATUS_OK; |
0 | 69 } |
70 | |
195 | 71 dvdnav_status_t dvdnav_get_number_of_parts(dvdnav_t *this, int32_t title, int32_t *parts) { |
248
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
72 if (!this->vm->vmgi) { |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
73 printerr("Bad VM state."); |
193 | 74 return DVDNAV_STATUS_ERR; |
95 | 75 } |
76 if ((title < 1) || (title > vm_get_vmgi(this->vm)->tt_srpt->nr_of_srpts) ) { | |
114 | 77 printerr("Passed a title number out of range."); |
193 | 78 return DVDNAV_STATUS_ERR; |
95 | 79 } |
114 | 80 |
95 | 81 (*parts) = vm_get_vmgi(this->vm)->tt_srpt->title[title-1].nr_of_ptts; |
114 | 82 |
193 | 83 return DVDNAV_STATUS_OK; |
5
c1b55dc1bfed
Add API call to get number of programmes in current title.
richwareham
parents:
0
diff
changeset
|
84 } |
c1b55dc1bfed
Add API call to get number of programmes in current title.
richwareham
parents:
0
diff
changeset
|
85 |
195 | 86 dvdnav_status_t dvdnav_current_title_info(dvdnav_t *this, int32_t *title, int32_t *part) { |
87 int32_t retval; | |
114 | 88 |
89 pthread_mutex_lock(&this->vm_lock); | |
90 if (!this->vm->vtsi || !this->vm->vmgi) { | |
91 printerr("Bad VM state."); | |
92 pthread_mutex_unlock(&this->vm_lock); | |
193 | 93 return DVDNAV_STATUS_ERR; |
90 | 94 } |
248
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
95 if (!this->started) { |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
96 printerr("Virtual DVD machine not started."); |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
97 pthread_mutex_unlock(&this->vm_lock); |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
98 return DVDNAV_STATUS_ERR; |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
99 } |
114 | 100 if (!this->vm->state.pgc) { |
101 printerr("No current PGC."); | |
102 pthread_mutex_unlock(&this->vm_lock); | |
193 | 103 return DVDNAV_STATUS_ERR; |
114 | 104 } |
158 | 105 if ( (this->vm->state.domain == VTSM_DOMAIN) |
106 || (this->vm->state.domain == VMGM_DOMAIN) ) { | |
107 /* Get current Menu ID: into *part. */ | |
108 vm_get_current_menu(this->vm, part); | |
159 | 109 if (*part > -1) { |
110 *title = 0; | |
157
7094c8661c05
Return details about menu number in dvdnav_current_title_info()
jcdutton
parents:
146
diff
changeset
|
111 pthread_mutex_unlock(&this->vm_lock); |
193 | 112 return DVDNAV_STATUS_OK; |
157
7094c8661c05
Return details about menu number in dvdnav_current_title_info()
jcdutton
parents:
146
diff
changeset
|
113 } |
114 | 114 } |
158 | 115 if (this->vm->state.domain == VTS_DOMAIN) { |
116 retval = vm_get_current_title_part(this->vm, title, part); | |
117 pthread_mutex_unlock(&this->vm_lock); | |
193 | 118 return retval ? DVDNAV_STATUS_OK : DVDNAV_STATUS_ERR; |
158 | 119 } |
120 printerr("Not in a title or menu."); | |
114 | 121 pthread_mutex_unlock(&this->vm_lock); |
193 | 122 return DVDNAV_STATUS_ERR; |
90 | 123 } |
124 | |
195 | 125 dvdnav_status_t dvdnav_title_play(dvdnav_t *this, int32_t title) { |
90 | 126 return dvdnav_part_play(this, title, 1); |
0 | 127 } |
128 | |
195 | 129 dvdnav_status_t dvdnav_part_play(dvdnav_t *this, int32_t title, int32_t part) { |
130 int32_t retval; | |
0 | 131 |
114 | 132 pthread_mutex_lock(&this->vm_lock); |
137 | 133 if (!this->vm->vmgi) { |
114 | 134 printerr("Bad VM state."); |
135 pthread_mutex_unlock(&this->vm_lock); | |
193 | 136 return DVDNAV_STATUS_ERR; |
0 | 137 } |
248
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
138 if (!this->started) { |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
139 /* don't report an error but be nice */ |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
140 vm_start(this->vm); |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
141 this->started = 1; |
5124cfd4725d
fix some error conditions (fixes dvdnav_title_part_play())
mroi
parents:
223
diff
changeset
|
142 } |
114 | 143 if (!this->vm->state.pgc) { |
144 printerr("No current PGC."); | |
145 pthread_mutex_unlock(&this->vm_lock); | |
193 | 146 return DVDNAV_STATUS_ERR; |
114 | 147 } |
148 if((title < 1) || (title > this->vm->vmgi->tt_srpt->nr_of_srpts)) { | |
149 printerr("Title out of range."); | |
150 pthread_mutex_unlock(&this->vm_lock); | |
193 | 151 return DVDNAV_STATUS_ERR; |
114 | 152 } |
140 | 153 if((part < 1) || (part > this->vm->vmgi->tt_srpt->title[title-1].nr_of_ptts)) { |
154 printerr("Part out of range."); | |
155 pthread_mutex_unlock(&this->vm_lock); | |
193 | 156 return DVDNAV_STATUS_ERR; |
140 | 157 } |
158 | |
114 | 159 retval = vm_jump_title_part(this->vm, title, part); |
133
d09a81cf65ce
determine correct PG and PTT numbers when seeking across PG boundaries
mroi
parents:
116
diff
changeset
|
160 if (retval) |
d09a81cf65ce
determine correct PG and PTT numbers when seeking across PG boundaries
mroi
parents:
116
diff
changeset
|
161 this->vm->hop_channel++; |
114 | 162 pthread_mutex_unlock(&this->vm_lock); |
0 | 163 |
193 | 164 return retval ? DVDNAV_STATUS_OK : DVDNAV_STATUS_ERR; |
0 | 165 } |
166 | |
195 | 167 dvdnav_status_t dvdnav_part_play_auto_stop(dvdnav_t *this, int32_t title, |
168 int32_t part, int32_t parts_to_play) { | |
114 | 169 /* FIXME: Implement auto-stop */ |
193 | 170 if (dvdnav_part_play(this, title, part) == DVDNAV_STATUS_OK) |
114 | 171 printerr("Not implemented yet."); |
193 | 172 return DVDNAV_STATUS_ERR; |
0 | 173 } |
174 | |
195 | 175 dvdnav_status_t dvdnav_time_play(dvdnav_t *this, int32_t title, |
176 uint64_t time) { | |
0 | 177 /* FIXME: Implement */ |
114 | 178 printerr("Not implemented yet."); |
193 | 179 return DVDNAV_STATUS_ERR; |
0 | 180 } |
181 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
5
diff
changeset
|
182 dvdnav_status_t dvdnav_stop(dvdnav_t *this) { |
114 | 183 pthread_mutex_lock(&this->vm_lock); |
146
7f242ec838fd
do not stop the VM here, get_next_block will do that without races
mroi
parents:
140
diff
changeset
|
184 this->vm->stopped = 1; |
114 | 185 pthread_mutex_unlock(&this->vm_lock); |
193 | 186 return DVDNAV_STATUS_OK; |
0 | 187 } |
188 | |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
5
diff
changeset
|
189 dvdnav_status_t dvdnav_go_up(dvdnav_t *this) { |
0 | 190 /* A nice easy function... delegate to the VM */ |
114 | 191 pthread_mutex_lock(&this->vm_lock); |
192 vm_jump_up(this->vm); | |
193 pthread_mutex_unlock(&this->vm_lock); | |
0 | 194 |
193 | 195 return DVDNAV_STATUS_OK; |
0 | 196 } |