annotate settings.c @ 132:f22458f928b8 src

PGC based positioning
author mroi
date Sun, 23 Mar 2003 15:24:31 +0000
parents b6834e6359cf
children 5897ff629f7c
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_internal.h"
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
29
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
30 #include "vm.h"
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
31
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
32 /* Characteristics/setting API calls */
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
33
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 0
diff changeset
34 dvdnav_status_t dvdnav_get_region_mask(dvdnav_t *this, int *region) {
114
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
35 if(!this || !region) {
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
36 printerr("Passed a NULL this pointer.");
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
37 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
38 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
39
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 0
diff changeset
40 (*region) = this->vm->state.registers.SPRM[20];
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
41 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
42 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
43
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 0
diff changeset
44 dvdnav_status_t dvdnav_set_region_mask(dvdnav_t *this, int mask) {
114
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
45 if(!this) {
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
46 printerr("Passed a NULL this pointer.");
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
114
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
50 pthread_mutex_lock(&this->vm_lock);
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 0
diff changeset
51 this->vm->state.registers.SPRM[20] = (mask & 0xff);
114
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
52 pthread_mutex_unlock(&this->vm_lock);
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
53 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
54 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
55
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 0
diff changeset
56 dvdnav_status_t dvdnav_set_readahead_flag(dvdnav_t *this, int use_readahead) {
114
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
57 if(!this) {
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
58 printerr("Passed a NULL this pointer.");
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
59 return S_ERR;
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
60 }
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
61
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 0
diff changeset
62 this->use_read_ahead = use_readahead;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
63 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
64 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
65
114
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
66 dvdnav_status_t dvdnav_get_readahead_flag(dvdnav_t *this, int *flag) {
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
67 if(!this || !flag) {
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
68 printerr("Passed a NULL this pointer.");
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
69 return S_ERR;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
70 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
71
22
3c1df0cb3aee Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents: 0
diff changeset
72 (*flag) = this->use_read_ahead;
0
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
73 return S_OK;
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
74 }
3ddf0eaece51 Initial revision
richwareham
parents:
diff changeset
75
44
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
76 static dvdnav_status_t set_language_register(dvdnav_t *this, char *code, int reg) {
114
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
77 if(!this || !code) {
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
78 printerr("Passed a NULL this pointer.");
44
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
79 return S_ERR;
93
e74cba5129a6 Small changes to check for invalid parameters.
jcdutton
parents: 44
diff changeset
80 }
44
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
81
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
82 if(!code[0] || !code[1]) {
114
b6834e6359cf big libdvdnav cleanup, quoting the ChangeLog:
mroi
parents: 93
diff changeset
83 printerr("Passed illegal language code.");
44
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
84 return S_ERR;
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
85 }
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
86
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
87 pthread_mutex_lock(&this->vm_lock);
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
88 this->vm->state.registers.SPRM[reg] = (code[0] << 8) | code[1];
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
89 pthread_mutex_unlock(&this->vm_lock);
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
90 return S_OK;
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
91 }
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
92
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
93 dvdnav_status_t dvdnav_menu_language_select(dvdnav_t *this, char *code) {
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
94 return set_language_register(this, code, 0);
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
95 }
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
96
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
97 dvdnav_status_t dvdnav_audio_language_select(dvdnav_t *this, char *code) {
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
98 return set_language_register(this, code, 16);
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
99 }
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
100
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
101 dvdnav_status_t dvdnav_spu_language_select(dvdnav_t *this, char *code) {
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
102 return set_language_register(this, code, 18);
c50cb59dbb19 Add dvd menu language selection api.
jcdutton
parents: 22
diff changeset
103 }
132
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
104
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
105 dvdnav_status_t dvdnav_set_PGC_positioning_flag(dvdnav_t *this, int pgc) {
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
106 if(!this) {
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
107 printerr("Passed a NULL this pointer.");
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
108 return S_ERR;
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
109 }
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
110
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
111 this->pgc_based = pgc;
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
112 return S_OK;
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
113 }
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
114
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
115 dvdnav_status_t dvdnav_get_PGC_positioning_flag(dvdnav_t *this, int *flag) {
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
116 if(!this || !flag) {
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
117 printerr("Passed a NULL this pointer.");
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
118 return S_ERR;
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
119 }
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
120
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
121 (*flag) = this->pgc_based;
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
122 return S_OK;
f22458f928b8 PGC based positioning
mroi
parents: 114
diff changeset
123 }