MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / decompress

Method decompress

src/main/java/trace/video/ImageCache.kt:40–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38 if (n.key == "--black--") {
39 synchronized(black) {
40 black.rewind()
41 n.value.put(black)
42 black.rewind()
43 n.value.rewind()
44 }
45 } else {
46 Thread.currentThread().name = "decompression thread"
47 System.err.println(n.key + " " + n.value)
48// jp.decompress(n.key, n.value, width, height)
49 FastJPEG.j.decompress(n.key, n.value, width, height)
50 }
51 }
52
53 override fun check(): Int {
54 val z = super.check()
55 if (z != num) {
56 // throw new
57 // IllegalArgumentException(" failed check");

Callers

nothing calls this directly

Calls 3

decompressMethod · 0.65
putMethod · 0.45
printlnMethod · 0.45

Tested by

no test coverage detected