Mercurial > libdvdnav.hg
annotate settings.c @ 438:04cb2d6e4f93 src tip
In vm_new_vm(), use the proper calloc() argument order
.. and don't derive 1 from the unrelated sizeof(char).
Fixes the scan-anaylzer "API violation" warning:
Result of 'calloc' is converted to a pointer of type 'vm_t', which is incompatible with sizeof operand type 'char'
Patch by Fabian Keil <fk AT fabiankeil DOT de>
author | rathann |
---|---|
date | Wed, 04 Dec 2013 23:02:01 +0000 |
parents | 9c5aef10d165 |
children |
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> |
395
9c5aef10d165
Move dvd_types.h, dvdnav_events.h and dvdnav.h into a dvdnav directory.
reimar
parents:
392
diff
changeset
|
29 #include "dvdnav/dvdnav.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" |
0 | 35 #include "dvdnav_internal.h" |
36 | |
37 /* Characteristics/setting API calls */ | |
38 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
39 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
|
40 (*region) = this->vm->state.registers.SPRM[20]; |
193 | 41 return DVDNAV_STATUS_OK; |
0 | 42 } |
43 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
44 dvdnav_status_t dvdnav_set_region_mask(dvdnav_t *this, int32_t mask) { |
114 | 45 pthread_mutex_lock(&this->vm_lock); |
22
3c1df0cb3aee
Start of rewrite of libdvdnav. Still need to re-implement seeking.
jcdutton
parents:
0
diff
changeset
|
46 this->vm->state.registers.SPRM[20] = (mask & 0xff); |
114 | 47 pthread_mutex_unlock(&this->vm_lock); |
193 | 48 return DVDNAV_STATUS_OK; |
0 | 49 } |
50 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
51 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
|
52 this->use_read_ahead = use_readahead; |
193 | 53 return DVDNAV_STATUS_OK; |
0 | 54 } |
55 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
56 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
|
57 (*flag) = this->use_read_ahead; |
193 | 58 return DVDNAV_STATUS_OK; |
0 | 59 } |
60 | |
44 | 61 static dvdnav_status_t set_language_register(dvdnav_t *this, char *code, int reg) { |
62 if(!code[0] || !code[1]) { | |
114 | 63 printerr("Passed illegal language code."); |
193 | 64 return DVDNAV_STATUS_ERR; |
44 | 65 } |
388 | 66 |
44 | 67 pthread_mutex_lock(&this->vm_lock); |
68 this->vm->state.registers.SPRM[reg] = (code[0] << 8) | code[1]; | |
69 pthread_mutex_unlock(&this->vm_lock); | |
193 | 70 return DVDNAV_STATUS_OK; |
44 | 71 } |
72 | |
73 dvdnav_status_t dvdnav_menu_language_select(dvdnav_t *this, char *code) { | |
74 return set_language_register(this, code, 0); | |
75 } | |
76 | |
77 dvdnav_status_t dvdnav_audio_language_select(dvdnav_t *this, char *code) { | |
78 return set_language_register(this, code, 16); | |
79 } | |
80 | |
81 dvdnav_status_t dvdnav_spu_language_select(dvdnav_t *this, char *code) { | |
82 return set_language_register(this, code, 18); | |
83 } | |
132 | 84 |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
85 dvdnav_status_t dvdnav_set_PGC_positioning_flag(dvdnav_t *this, int32_t pgc) { |
132 | 86 this->pgc_based = pgc; |
193 | 87 return DVDNAV_STATUS_OK; |
132 | 88 } |
89 | |
218
c2d0cf87a5ee
Some fixes to that libdvdnav compiles under cygwin.
jcdutton
parents:
193
diff
changeset
|
90 dvdnav_status_t dvdnav_get_PGC_positioning_flag(dvdnav_t *this, int32_t *flag) { |
132 | 91 (*flag) = this->pgc_based; |
193 | 92 return DVDNAV_STATUS_OK; |
132 | 93 } |