comparison libmpdvdkit2/nav_read.c @ 7029:9db58ffbd73c

importing libdvdread 0.9.3 files
author arpi
date Fri, 16 Aug 2002 22:37:48 +0000
parents
children 596919e4f601
comparison
equal deleted inserted replaced
7028:9d4273713562 7029:9db58ffbd73c
1 /*
2 * Copyright (C) 2000, 2001, 2002 Håkan Hjort <d95hjort@dtek.chalmers.se>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19 #include <stdio.h>
20 #include <string.h>
21 #include <inttypes.h>
22 #include <assert.h>
23
24 #include "config.h" // Needed for WORDS_BIGENDIAN
25 #include "bswap.h"
26 #include "nav_types.h"
27 #include "nav_read.h"
28
29 void navRead_PCI(pci_t *pci, unsigned char *buffer) {
30 int i, j, k;
31
32 assert(sizeof(pci_t) == PCI_BYTES - 1); // -1 for substream id
33
34 memcpy(pci, buffer, sizeof(pci_t));
35
36 /* Endian conversions */
37
38 /* pci pci_gi */
39 B2N_32(pci->pci_gi.nv_pck_lbn);
40 B2N_16(pci->pci_gi.vobu_cat);
41 B2N_32(pci->pci_gi.vobu_s_ptm);
42 B2N_32(pci->pci_gi.vobu_e_ptm);
43 B2N_32(pci->pci_gi.vobu_se_e_ptm);
44
45 /* pci nsml_agli */
46 for(i = 0; i < 9; i++)
47 B2N_32(pci->nsml_agli.nsml_agl_dsta[i]);
48
49 /* pci hli hli_gi */
50 B2N_16(pci->hli.hl_gi.hli_ss);
51 B2N_32(pci->hli.hl_gi.hli_s_ptm);
52 B2N_32(pci->hli.hl_gi.hli_e_ptm);
53 B2N_32(pci->hli.hl_gi.btn_se_e_ptm);
54
55 /* pci hli btn_colit */
56 for(i = 0; i < 3; i++)
57 for(j = 0; j < 2; j++)
58 B2N_32(pci->hli.btn_colit.btn_coli[i][j]);
59
60 #if !defined(WORDS_BIGENDIAN)
61 /* pci hli btni */
62 for(i = 0; i < 36; i++) {
63 char tmp[6], swap;
64 memcpy(tmp, &(pci->hli.btnit[i]), 6);
65 /* This is a B2N_24() */
66 swap = tmp[0]; tmp[0] = tmp[2]; tmp[2] = swap;
67 /* This is a B2N_24() */
68 swap = tmp[3]; tmp[3] = tmp[5]; tmp[5] = swap;
69 memcpy(&(pci->hli.btnit[i]), tmp, 6);
70 }
71 #endif
72
73
74 /* Asserts */
75
76 /* pci pci gi */
77 assert(pci->pci_gi.zero1 == 0);
78
79 /* pci hli hli_gi */
80 assert(pci->hli.hl_gi.zero1 == 0);
81 assert(pci->hli.hl_gi.zero2 == 0);
82 assert(pci->hli.hl_gi.zero3 == 0);
83 assert(pci->hli.hl_gi.zero4 == 0);
84 assert(pci->hli.hl_gi.zero5 == 0);
85
86 /* Are there buttons defined here? */
87 if((pci->hli.hl_gi.hli_ss & 0x03) != 0) {
88 assert(pci->hli.hl_gi.btn_ns != 0);
89 assert(pci->hli.hl_gi.btngr_ns != 0);
90 } else {
91 assert((pci->hli.hl_gi.btn_ns != 0 && pci->hli.hl_gi.btngr_ns != 0)
92 || (pci->hli.hl_gi.btn_ns == 0 && pci->hli.hl_gi.btngr_ns == 0));
93 }
94
95 /* pci hli btnit */
96 for(i = 0; i < pci->hli.hl_gi.btngr_ns; i++) {
97 for(j = 0; j < (36 / pci->hli.hl_gi.btngr_ns); j++) {
98 int n = (36 / pci->hli.hl_gi.btngr_ns) * i + j;
99 assert(pci->hli.btnit[n].zero1 == 0);
100 assert(pci->hli.btnit[n].zero2 == 0);
101 assert(pci->hli.btnit[n].zero3 == 0);
102 assert(pci->hli.btnit[n].zero4 == 0);
103 assert(pci->hli.btnit[n].zero5 == 0);
104 assert(pci->hli.btnit[n].zero6 == 0);
105
106 if (j < pci->hli.hl_gi.btn_ns) {
107 assert(pci->hli.btnit[n].x_start <= pci->hli.btnit[n].x_end);
108 assert(pci->hli.btnit[n].y_start <= pci->hli.btnit[n].y_end);
109 assert(pci->hli.btnit[n].up <= pci->hli.hl_gi.btn_ns);
110 assert(pci->hli.btnit[n].down <= pci->hli.hl_gi.btn_ns);
111 assert(pci->hli.btnit[n].left <= pci->hli.hl_gi.btn_ns);
112 assert(pci->hli.btnit[n].right <= pci->hli.hl_gi.btn_ns);
113 //vmcmd_verify(pci->hli.btnit[n].cmd);
114 } else {
115 assert(pci->hli.btnit[n].btn_coln == 0);
116 assert(pci->hli.btnit[n].auto_action_mode == 0);
117 assert(pci->hli.btnit[n].x_start == 0);
118 assert(pci->hli.btnit[n].y_start == 0);
119 assert(pci->hli.btnit[n].x_end == 0);
120 assert(pci->hli.btnit[n].y_end == 0);
121 assert(pci->hli.btnit[n].up == 0);
122 assert(pci->hli.btnit[n].down == 0);
123 assert(pci->hli.btnit[n].left == 0);
124 assert(pci->hli.btnit[n].right == 0);
125 for (k = 0; k < 8; k++)
126 assert(pci->hli.btnit[n].cmd.bytes[k] == 0); //CHECK_ZERO?
127 }
128 }
129 }
130 }
131
132 void navRead_DSI(dsi_t *dsi, unsigned char *buffer) {
133 int i;
134
135 assert(sizeof(dsi_t) == DSI_BYTES - 1); // -1 for substream id
136
137 memcpy(dsi, buffer, sizeof(dsi_t));
138
139 /* Endian conversions */
140
141 /* dsi dsi gi */
142 B2N_32(dsi->dsi_gi.nv_pck_scr);
143 B2N_32(dsi->dsi_gi.nv_pck_lbn);
144 B2N_32(dsi->dsi_gi.vobu_ea);
145 B2N_32(dsi->dsi_gi.vobu_1stref_ea);
146 B2N_32(dsi->dsi_gi.vobu_2ndref_ea);
147 B2N_32(dsi->dsi_gi.vobu_3rdref_ea);
148 B2N_16(dsi->dsi_gi.vobu_vob_idn);
149
150 /* dsi sml pbi */
151 B2N_16(dsi->sml_pbi.category);
152 B2N_32(dsi->sml_pbi.ilvu_ea);
153 B2N_32(dsi->sml_pbi.ilvu_sa);
154 B2N_16(dsi->sml_pbi.size);
155 B2N_32(dsi->sml_pbi.vob_v_s_s_ptm);
156 B2N_32(dsi->sml_pbi.vob_v_e_e_ptm);
157
158 /* dsi sml agli */
159 for(i = 0; i < 9; i++) {
160 B2N_32(dsi->sml_agli.data[ i ].address);
161 B2N_16(dsi->sml_agli.data[ i ].size);
162 }
163
164 /* dsi vobu sri */
165 B2N_32(dsi->vobu_sri.next_video);
166 for(i = 0; i < 19; i++)
167 B2N_32(dsi->vobu_sri.fwda[i]);
168 B2N_32(dsi->vobu_sri.next_vobu);
169 B2N_32(dsi->vobu_sri.prev_vobu);
170 for(i = 0; i < 19; i++)
171 B2N_32(dsi->vobu_sri.bwda[i]);
172 B2N_32(dsi->vobu_sri.prev_video);
173
174 /* dsi synci */
175 for(i = 0; i < 8; i++)
176 B2N_16(dsi->synci.a_synca[i]);
177 for(i = 0; i < 32; i++)
178 B2N_32(dsi->synci.sp_synca[i]);
179
180
181 /* Asserts */
182
183 /* dsi dsi gi */
184 assert(dsi->dsi_gi.zero1 == 0);
185 }
186