| 319 | } |
| 320 | |
| 321 | void videoHandler::removeFrameFromCache(int frameIdx) |
| 322 | { |
| 323 | DEBUG_VIDEO("removeFrameFromCache %d", frameIdx); |
| 324 | QMutexLocker lock(&imageCacheAccess); |
| 325 | imageCache.remove(frameIdx); |
| 326 | lock.unlock(); |
| 327 | } |
| 328 | |
| 329 | void videoHandler::removeAllFrameFromCache() |
| 330 | { |
no test coverage detected