Mercurial > libdvdnav.hg
annotate settings.c @ 392:0a5a6f03b029 src
Remove useless $Id$ and $Name$ keywords.
author | diego |
---|---|
date | Sun, 14 Sep 2008 20:31:43 +0000 |
parents | d3c273ced49c |
children | 9c5aef10d165 |
rev | line source |
---|---|
388 | 1 /* |
0 | 2 * Copyright (C) 2000 Rich Wareham <richwareham@users.sourceforge.net> |
388 | 3 * |
0 | 4 * This file is part of libdvdnav, a DVD navigation library. |
388 | 5 * |
0 | 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. | |
388 | 10 * |
0 | 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. | |
388 | 15 * |
389
d3c273ced49c
Use consistent license headers everywhere: Fix wrong FSF address.
diego
parents:
388
diff
changeset
|
16 * You should have received a copy of the GNU General Public License along |
d3c273ced49c
Use consistent license headers everywhere: Fix wrong FSF address.
diego
parents:
388
diff
changeset
|
17 * with libdvdnav; if not, write to the Free Software Foundation, Inc., |
d3c273ced49c
Use consistent license headers everywhere: Fix wrong FSF address.
diego
parents:
388
diff
changeset
|
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
0 | 19 */ |
20 | |
21 #ifdef HAVE_CONFIG_H | |
22 #include "config.h" | |
23 #endif | |
24 | |
286
6fac6a613ea5
moved inclusion of inttypes.h from dvd_types.h to the including .c files
nicodvb
parents:
285
diff
changeset
|
25 #include <inttypes.h> |
294
2146ff691bcd
include limits.h; it was included in the previous dvdnav_internal.h and without it players segfault
nicodvb
parents:
293
diff
changeset
|
26 #include <limits.h> |
288
ce4230602517
moved away from dvdnav_internal.h inclusion of various system headers
nicodvb
parents:
286
diff
changeset
|
27 #include <string.h> |
290 | 28 #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
|
29 #include "dvd_types.h" |
386 | 30 #include <dvdread/nav_types.h> |
31 #include <dvdread/ifo_types.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
|
32 #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
|
33 #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
|
34 #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
|
35 #include "dvdnav.h" |
0 | 36 #include "dvdnav_internal.h" |
37 | |
38 /* Characteristics/setting API calls */ | |
39 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
40 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
|
41 (*region) = this->vm->state.registers.SPRM[20]; |
193 | 42 return DVDNAV_STATUS_OK; |
0 | 43 } |
44 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
45 dvdnav_status_t dvdnav_set_region_mask(dvdnav_t *this, int32_t mask) { |
114 | 46 pthread_mutex_lock(&this->vm_lock); |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
0
diff
changeset
|
47 this->vm->state.registers.SPRM[20] = (mask & 0xff); |
114 | 48 pthread_mutex_unlock(&this->vm_lock); |
193 | 49 return DVDNAV_STATUS_OK; |
0 | 50 } |
51 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
52 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
|
53 this->use_read_ahead = use_readahead; |
193 | 54 return DVDNAV_STATUS_OK; |
0 | 55 } |
56 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
57 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
|
58 (*flag) = this->use_read_ahead; |
193 | 59 return DVDNAV_STATUS_OK; |
0 | 60 } |
61 | |
44 | 62 static dvdnav_status_t set_language_register(dvdnav_t *this, char *code, int reg) { |
63 if(!code[0] || !code[1]) { | |
114 | 64 printerr("Passed illegal language code."); |
193 | 65 return DVDNAV_STATUS_ERR; |
44 | 66 } |
388 | 67 |
44 | 68 pthread_mutex_lock(&this->vm_lock); |
69 this->vm->state.registers.SPRM[reg] = (code[0] << 8) | code[1]; | |
70 pthread_mutex_unlock(&this->vm_lock); | |
193 | 71 return DVDNAV_STATUS_OK; |
44 | 72 } |
73 | |
74 dvdnav_status_t dvdnav_menu_language_select(dvdnav_t *this, char *code) { | |
75 return set_language_register(this, code, 0); | |
76 } | |
77 | |
78 dvdnav_status_t dvdnav_audio_language_select(dvdnav_t *this, char *code) { | |
79 return set_language_register(this, code, 16); | |
80 } | |
81 | |
82 dvdnav_status_t dvdnav_spu_language_select(dvdnav_t *this, char *code) { | |
83 return set_language_register(this, code, 18); | |
84 } | |
132 | 85 |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
86 dvdnav_status_t dvdnav_set_PGC_positioning_flag(dvdnav_t *this, int32_t pgc) { |
132 | 87 this->pgc_based = pgc; |
193 | 88 return DVDNAV_STATUS_OK; |
132 | 89 } |
90 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
91 dvdnav_status_t dvdnav_get_PGC_positioning_flag(dvdnav_t *this, int32_t *flag) { |
132 | 92 (*flag) = this->pgc_based; |
193 | 93 return DVDNAV_STATUS_OK; |
132 | 94 } |