Mercurial > mplayer.hg
annotate libmpdvdkit2/nav_read.c @ 14802:63b1cc62fc9b
MEncoder multiple files patch by Oded Shimon (ods15)
Seems to work, or at least not to cause problems with existing
functionality (encoding single files).
Please test and report bugs, if there are any!
author | rfelker |
---|---|
date | Fri, 25 Feb 2005 02:32:29 +0000 |
parents | 635df9d22d38 |
children | 25df9508f9a8 |
rev | line source |
---|---|
7029 | 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> | |
7033 | 22 //#include <assert.h> |
7029 | 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++) { | |
8257
635df9d22d38
100l patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
michael
parents:
8254
diff
changeset
|
98 #ifdef HAVE_ASSERT_H |
635df9d22d38
100l patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
michael
parents:
8254
diff
changeset
|
99 int n = (36 / pci->hli.hl_gi.btngr_ns) * i + j; |
635df9d22d38
100l patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
michael
parents:
8254
diff
changeset
|
100 #endif |
7029 | 101 assert(pci->hli.btnit[n].zero1 == 0); |
102 assert(pci->hli.btnit[n].zero2 == 0); | |
103 assert(pci->hli.btnit[n].zero3 == 0); | |
104 assert(pci->hli.btnit[n].zero4 == 0); | |
105 assert(pci->hli.btnit[n].zero5 == 0); | |
106 assert(pci->hli.btnit[n].zero6 == 0); | |
107 | |
108 if (j < pci->hli.hl_gi.btn_ns) { | |
109 assert(pci->hli.btnit[n].x_start <= pci->hli.btnit[n].x_end); | |
110 assert(pci->hli.btnit[n].y_start <= pci->hli.btnit[n].y_end); | |
111 assert(pci->hli.btnit[n].up <= pci->hli.hl_gi.btn_ns); | |
112 assert(pci->hli.btnit[n].down <= pci->hli.hl_gi.btn_ns); | |
113 assert(pci->hli.btnit[n].left <= pci->hli.hl_gi.btn_ns); | |
114 assert(pci->hli.btnit[n].right <= pci->hli.hl_gi.btn_ns); | |
115 //vmcmd_verify(pci->hli.btnit[n].cmd); | |
116 } else { | |
117 assert(pci->hli.btnit[n].btn_coln == 0); | |
118 assert(pci->hli.btnit[n].auto_action_mode == 0); | |
119 assert(pci->hli.btnit[n].x_start == 0); | |
120 assert(pci->hli.btnit[n].y_start == 0); | |
121 assert(pci->hli.btnit[n].x_end == 0); | |
122 assert(pci->hli.btnit[n].y_end == 0); | |
123 assert(pci->hli.btnit[n].up == 0); | |
124 assert(pci->hli.btnit[n].down == 0); | |
125 assert(pci->hli.btnit[n].left == 0); | |
126 assert(pci->hli.btnit[n].right == 0); | |
127 for (k = 0; k < 8; k++) | |
128 assert(pci->hli.btnit[n].cmd.bytes[k] == 0); //CHECK_ZERO? | |
129 } | |
130 } | |
131 } | |
132 } | |
133 | |
134 void navRead_DSI(dsi_t *dsi, unsigned char *buffer) { | |
135 int i; | |
136 | |
137 assert(sizeof(dsi_t) == DSI_BYTES - 1); // -1 for substream id | |
138 | |
139 memcpy(dsi, buffer, sizeof(dsi_t)); | |
140 | |
141 /* Endian conversions */ | |
142 | |
143 /* dsi dsi gi */ | |
144 B2N_32(dsi->dsi_gi.nv_pck_scr); | |
145 B2N_32(dsi->dsi_gi.nv_pck_lbn); | |
146 B2N_32(dsi->dsi_gi.vobu_ea); | |
147 B2N_32(dsi->dsi_gi.vobu_1stref_ea); | |
148 B2N_32(dsi->dsi_gi.vobu_2ndref_ea); | |
149 B2N_32(dsi->dsi_gi.vobu_3rdref_ea); | |
150 B2N_16(dsi->dsi_gi.vobu_vob_idn); | |
151 | |
152 /* dsi sml pbi */ | |
153 B2N_16(dsi->sml_pbi.category); | |
154 B2N_32(dsi->sml_pbi.ilvu_ea); | |
155 B2N_32(dsi->sml_pbi.ilvu_sa); | |
156 B2N_16(dsi->sml_pbi.size); | |
157 B2N_32(dsi->sml_pbi.vob_v_s_s_ptm); | |
158 B2N_32(dsi->sml_pbi.vob_v_e_e_ptm); | |
159 | |
160 /* dsi sml agli */ | |
161 for(i = 0; i < 9; i++) { | |
162 B2N_32(dsi->sml_agli.data[ i ].address); | |
163 B2N_16(dsi->sml_agli.data[ i ].size); | |
164 } | |
165 | |
166 /* dsi vobu sri */ | |
167 B2N_32(dsi->vobu_sri.next_video); | |
168 for(i = 0; i < 19; i++) | |
169 B2N_32(dsi->vobu_sri.fwda[i]); | |
170 B2N_32(dsi->vobu_sri.next_vobu); | |
171 B2N_32(dsi->vobu_sri.prev_vobu); | |
172 for(i = 0; i < 19; i++) | |
173 B2N_32(dsi->vobu_sri.bwda[i]); | |
174 B2N_32(dsi->vobu_sri.prev_video); | |
175 | |
176 /* dsi synci */ | |
177 for(i = 0; i < 8; i++) | |
178 B2N_16(dsi->synci.a_synca[i]); | |
179 for(i = 0; i < 32; i++) | |
180 B2N_32(dsi->synci.sp_synca[i]); | |
181 | |
182 | |
183 /* Asserts */ | |
184 | |
185 /* dsi dsi gi */ | |
186 assert(dsi->dsi_gi.zero1 == 0); | |
187 } | |
188 |