| 327 | } |
| 328 | |
| 329 | void videoHandler::removeAllFrameFromCache() |
| 330 | { |
| 331 | DEBUG_VIDEO("removeAllFrameFromCache"); |
| 332 | QMutexLocker lock(&imageCacheAccess); |
| 333 | imageCache.clear(); |
| 334 | cacheValid = true; |
| 335 | lock.unlock(); |
| 336 | } |
| 337 | |
| 338 | void videoHandler::loadFrame(int frameIndex, bool loadToDoubleBuffer) |
| 339 | { |
no test coverage detected