annotate navigation.c @ 26:794d2e16a4d4 src

Removed un-needed variables. General Clean up.
author jcdutton
date Tue, 23 Apr 2002 12:55:40 +0000
parents c2d40c38e12f
children eeabf5a51b2b
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
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
33 /* Navigation API calls */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
34
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
35 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
36 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
37 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
38
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
39 this->position_current.still = 0;
23
c2d40c38e12f Name stills work better.
jcdutton
parents: 22
diff changeset
40 this->skip_still = 1;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
41
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
42 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
43 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
44
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
45 dvdnav_status_t dvdnav_get_number_of_titles(dvdnav_t *this, int *titles) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
46 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
47 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
48
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
49 if(!titles) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
50 printerr("Passed a NULL pointer");
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
51 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
52 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
53
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
54 (*titles) = vm_get_vmgi(this->vm)->tt_srpt->nr_of_srpts;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
55
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
56 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
57 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
58
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
59 dvdnav_status_t dvdnav_get_number_of_programs(dvdnav_t *this, int *programs) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
60 if(!this)
5
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
61 return S_ERR;
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
62
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
63 if(!programs) {
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
64 printerr("Passed a NULL pointer");
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
65 return S_ERR;
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
66 }
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
67
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
68 (*programs) = this->vm->state.pgc->nr_of_programs;
5
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
69
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
70 return S_OK;
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
71 }
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
72
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
73 dvdnav_status_t dvdnav_title_play(dvdnav_t *this, int title) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
74 int num_titles;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
75
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
76 if(!this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
77 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
78 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
79
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
80 /* Check number of titles */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
81 dvdnav_get_number_of_titles(this, &num_titles);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
82 if((title > num_titles) || (title <= 0)) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
83 printerrf("Invalid title passed (%i, maximum %i)", title,
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
84 num_titles);
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
85 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
86 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
87
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
88 vm_start_title(this->vm, title);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
89
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
90 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
91 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
92
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
93 dvdnav_status_t dvdnav_part_play(dvdnav_t *this, int title, int part) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
94 int num_titles, num_progs;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
95
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
96 if(!this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
97 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
98 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
99
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
100 /* Check number of titles */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
101 dvdnav_get_number_of_titles(this, &num_titles);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
102 if((title > num_titles) || (title <= 0)) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
103 printerrf("Invalid title passed (%i, maximum %i)", title,
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
104 num_titles);
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
105 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
106 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
107
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
108 vm_start_title(this->vm, title);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
109
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
110
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
111 /* Check number of parts */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
112 num_progs = this->vm->state.pgc->nr_of_programs;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
113 if((part > num_progs) || (part <= 0)) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
114 printerrf("Invalid program passed (%i, maximum %i)", part,
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
115 num_progs);
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
116 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
117 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
118
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
119 vm_jump_prog(this->vm, part);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
120
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
121 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
122 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
123
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
124 dvdnav_status_t dvdnav_part_play_auto_stop(dvdnav_t *this, int title,
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
125 int part, int parts_to_play) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
126 /* Perform jump as per usual */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
127
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
128 return dvdnav_part_play(this, title, part);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
129
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
130 /* FIXME: Impement auto-stop */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
131
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
132 /* return S_OK;*/
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
133 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
134
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
135 dvdnav_status_t dvdnav_time_play(dvdnav_t *this, int title,
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
136 unsigned long int time) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
137 /* FIXME: Implement */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
138
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
139 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
140 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
141
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
142 dvdnav_status_t dvdnav_stop(dvdnav_t *this) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
143 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
144 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
145
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
146 /* Set the STOP flag */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
147
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
148 this->stop = 1;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
149
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
150 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
151 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
152
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
153 dvdnav_status_t dvdnav_go_up(dvdnav_t *this) {
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
154 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
155 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
156
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
157 /* A nice easy function... delegate to the VM */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
158 vm_go_up(this->vm);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
159
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
160 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
161 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
162
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
163
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
164