MCPcopy Create free account
hub / github.com/OpenSourcePhysics/osp / readInner

Method readInner

src/javajs/util/VideoReader.java:159–168  ·  view source on GitHub ↗
(int len, Map<String, Object> map)

Source from the content-addressed store, hash-verified

157 }
158
159 protected int readInner(int len, Map<String, Object> map) throws IOException {
160 List<Map<String, Object>> list = new ArrayList<>();
161 map.put("blocks", list);
162 while (len > 0) {
163 int p = pt;
164 readBlock(list);
165 len -= (pt - p);
166 }
167 return 0;
168 }
169
170 protected int readFTYP(int len, Map<String, Object> map) throws IOException {
171 String info = "";

Callers 1

readBlockMethod · 0.95

Calls 2

readBlockMethod · 0.95
putMethod · 0.45

Tested by

no test coverage detected