| 52 | void waitUntilReady(void) { ready.wait(); } |
| 53 | void signalComplete(void) { complete.signal(); } |
| 54 | void waitUntilComplete(void) { complete.wait(); } |
| 55 | bool isComplete(void) { return !complete.isLocked(); } |
| 56 | void decompressRGB(Frame &f, int width, int height, bool rightEye); |
| 57 | void addLogo(void); |
no test coverage detected