| 54 | } |
| 55 | |
| 56 | void videoHandlerResample::drawFrame(QPainter *painter, |
| 57 | int frameIndex, |
| 58 | double zoomFactor, |
| 59 | bool drawRawValues) |
| 60 | { |
| 61 | auto mappedIndex = this->mapFrameIndex(frameIndex); |
| 62 | DEBUG_RESAMPLE("videoHandlerResample::drawFrame idx %d", mappedIndex); |
| 63 | videoHandler::drawFrame(painter, mappedIndex, zoomFactor, drawRawValues); |
| 64 | } |
| 65 | |
| 66 | QImage videoHandlerResample::calculateDifference(FrameHandler * item2, |
| 67 | const int frameIndex0, |
nothing calls this directly
no test coverage detected