| 294 | } |
| 295 | |
| 296 | unsigned videoHandler::getCachingFrameSize() const |
| 297 | { |
| 298 | const auto hasAlpha = false; |
| 299 | auto bytes = functionsGui::bytesPerPixel(functionsGui::platformImageFormat(hasAlpha)); |
| 300 | return this->frameSize.width * this->frameSize.height * bytes; |
| 301 | } |
| 302 | |
| 303 | QList<int> videoHandler::getCachedFrames() const |
| 304 | { |
no test coverage detected