Mercurial > libdvdnav.hg
annotate settings.c @ 293:e1769287ee6a src
removed more silly checks on !this before every public function
author | nicodvb |
---|---|
date | Sun, 22 Apr 2007 21:29:21 +0000 |
parents | 54b6a000f6da |
children | 2146ff691bcd |
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 | |
286
6fac6a613ea5
moved inclusion of inttypes.h from dvd_types.h to the including .c files
nicodvb
parents:
285
diff
changeset
|
28 #include <inttypes.h> |
288
ce4230602517
moved away from dvdnav_internal.h inclusion of various system headers
nicodvb
parents:
286
diff
changeset
|
29 #include <string.h> |
290 | 30 #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:
218
diff
changeset
|
31 #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:
218
diff
changeset
|
32 #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:
218
diff
changeset
|
33 #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:
218
diff
changeset
|
34 #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:
218
diff
changeset
|
35 #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:
218
diff
changeset
|
36 #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:
218
diff
changeset
|
37 #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:
218
diff
changeset
|
38 #include "dvdnav.h" |
0 | 39 #include "dvdnav_internal.h" |
40 | |
41 /* Characteristics/setting API calls */ | |
42 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
43 dvdnav_status_t dvdnav_get_region_mask(dvdnav_t *this, int32_t *region) { |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
0
diff
changeset
|
44 (*region) = this->vm->state.registers.SPRM[20]; |
193 | 45 return DVDNAV_STATUS_OK; |
0 | 46 } |
47 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
48 dvdnav_status_t dvdnav_set_region_mask(dvdnav_t *this, int32_t mask) { |
114 | 49 pthread_mutex_lock(&this->vm_lock); |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
0
diff
changeset
|
50 this->vm->state.registers.SPRM[20] = (mask & 0xff); |
114 | 51 pthread_mutex_unlock(&this->vm_lock); |
193 | 52 return DVDNAV_STATUS_OK; |
0 | 53 } |
54 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
55 dvdnav_status_t dvdnav_set_readahead_flag(dvdnav_t *this, int32_t use_readahead) { |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
0
diff
changeset
|
56 this->use_read_ahead = use_readahead; |
193 | 57 return DVDNAV_STATUS_OK; |
0 | 58 } |
59 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
60 dvdnav_status_t dvdnav_get_readahead_flag(dvdnav_t *this, int32_t *flag) { |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
0
diff
changeset
|
61 (*flag) = this->use_read_ahead; |
193 | 62 return DVDNAV_STATUS_OK; |
0 | 63 } |
64 | |
44 | 65 static dvdnav_status_t set_language_register(dvdnav_t *this, char *code, int reg) { |
66 if(!code[0] || !code[1]) { | |
114 | 67 printerr("Passed illegal language code."); |
193 | 68 return DVDNAV_STATUS_ERR; |
44 | 69 } |
70 | |
71 pthread_mutex_lock(&this->vm_lock); | |
72 this->vm->state.registers.SPRM[reg] = (code[0] << 8) | code[1]; | |
73 pthread_mutex_unlock(&this->vm_lock); | |
193 | 74 return DVDNAV_STATUS_OK; |
44 | 75 } |
76 | |
77 dvdnav_status_t dvdnav_menu_language_select(dvdnav_t *this, char *code) { | |
78 return set_language_register(this, code, 0); | |
79 } | |
80 | |
81 dvdnav_status_t dvdnav_audio_language_select(dvdnav_t *this, char *code) { | |
82 return set_language_register(this, code, 16); | |
83 } | |
84 | |
85 dvdnav_status_t dvdnav_spu_language_select(dvdnav_t *this, char *code) { | |
86 return set_language_register(this, code, 18); | |
87 } | |
132 | 88 |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
89 dvdnav_status_t dvdnav_set_PGC_positioning_flag(dvdnav_t *this, int32_t pgc) { |
132 | 90 this->pgc_based = pgc; |
193 | 91 return DVDNAV_STATUS_OK; |
132 | 92 } |
93 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
94 dvdnav_status_t dvdnav_get_PGC_positioning_flag(dvdnav_t *this, int32_t *flag) { |
132 | 95 (*flag) = this->pgc_based; |
193 | 96 return DVDNAV_STATUS_OK; |
132 | 97 } |