(Map<String, Object> map, String name)
| 201 | } |
| 202 | |
| 203 | private void dumpMap(Map<String, Object> map, String name) { |
| 204 | for (Entry<String, Object> e : map.entrySet()) { |
| 205 | System.out.println(name + "." + e.getKey() + ": " + e.getValue()); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | protected int readTKHD(int len, Map<String, Object> map) throws IOException { |
| 210 | map.put("version_flags", readInt()); |