@@ 1202-1210 (lines=9) @@ | ||
1199 | } |
|
1200 | ||
1201 | case 10: // signed rational, two slongs, first is numerator, second is denominator |
|
1202 | if (numValues == 1) { |
|
1203 | return file.getInt32(valueOffset, !bigEnd) / file.getInt32(valueOffset+4, !bigEnd); |
|
1204 | } else { |
|
1205 | vals = []; |
|
1206 | for (n=0;n<numValues;n++) { |
|
1207 | vals[n] = file.getInt32(valueOffset + 8*n, !bigEnd) / file.getInt32(valueOffset+4 + 8*n, !bigEnd); |
|
1208 | } |
|
1209 | return vals; |
|
1210 | } |
|
1211 | } |
|
1212 | } |
|
1213 | ||
@@ 1191-1199 (lines=9) @@ | ||
1188 | } |
|
1189 | ||
1190 | case 9: // slong, 32 bit signed int |
|
1191 | if (numValues == 1) { |
|
1192 | return file.getInt32(entryOffset + 8, !bigEnd); |
|
1193 | } else { |
|
1194 | vals = []; |
|
1195 | for (n=0;n<numValues;n++) { |
|
1196 | vals[n] = file.getInt32(valueOffset + 4*n, !bigEnd); |
|
1197 | } |
|
1198 | return vals; |
|
1199 | } |
|
1200 | ||
1201 | case 10: // signed rational, two slongs, first is numerator, second is denominator |
|
1202 | if (numValues == 1) { |