annotate navigation.c @ 90:eeabf5a51b2b src

Improve chapter selection functions.
author jcdutton
date Tue, 03 Sep 2002 07:50:45 +0000
parents 794d2e16a4d4
children e29110f67f3a
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
90
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
59 /* This function should not be used. FIXME: Suggest alternative */
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
60 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
61 if(!this)
5
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
62 return S_ERR;
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
63
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
64 if(!programs) {
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
65 printerr("Passed a NULL pointer");
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
66 return S_ERR;
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
67 }
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
68
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
69 (*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
70
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
71 return S_OK;
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
72 }
c1b55dc1bfed Add API call to get number of programmes in current title.
richwareham
parents: 0
diff changeset
73
90
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
74 dvdnav_status_t dvdnav_current_title_info(dvdnav_t *this, int *title, int *part) {
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
75 if(!this || !this->vm)
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
76 return S_ERR;
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
77
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
78 if(!title || !part) {
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
79 printerr("Passed a NULL pointer");
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
80 return S_ERR;
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
81 }
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
82
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
83 return vm_get_current_title_part(this->vm, title, part);
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
84 }
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
85
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
86 dvdnav_status_t dvdnav_title_play(dvdnav_t *this, int title) {
0
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 if(!this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
89 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
90 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
91
90
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
92 return dvdnav_part_play(this, title, 1);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
93 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
94
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
95 dvdnav_status_t dvdnav_part_play(dvdnav_t *this, int title, int part) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
96
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
97 if(!this) {
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
98 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
99 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
100
90
eeabf5a51b2b Improve chapter selection functions.
jcdutton
parents: 26
diff changeset
101 return vm_jump_title_part(this->vm, title, part);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
102 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
103
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
104 dvdnav_status_t dvdnav_part_play_auto_stop(dvdnav_t *this, int title,
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
105 int part, int parts_to_play) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
106 /* Perform jump as per usual */
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 return dvdnav_part_play(this, title, part);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
109
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
110 /* FIXME: Impement auto-stop */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
111
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
112 /* return S_OK;*/
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
113 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
114
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
115 dvdnav_status_t dvdnav_time_play(dvdnav_t *this, int title,
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
116 unsigned long int time) {
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
117 /* FIXME: Implement */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
118
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
119 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
120 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
121
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
122 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
123 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
124 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
125
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
126 /* Set the STOP flag */
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 this->stop = 1;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
129
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
130 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
131 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
132
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 5
diff changeset
133 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
134 if(!this)
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
135 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
136
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
137 /* 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
138 vm_go_up(this->vm);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
139
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
140 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
141 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
142
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
143
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
144