| 130 | } |
| 131 | |
| 132 | void videoHandlerResample::setInputVideo(FrameHandler *childVideo) |
| 133 | { |
| 134 | if (this->inputVideo == childVideo) |
| 135 | return; |
| 136 | |
| 137 | this->inputVideo = childVideo; |
| 138 | DEBUG_RESAMPLE("videoHandlerResample::loadResampledFrame setting new video"); |
| 139 | |
| 140 | if (this->inputValid()) |
| 141 | this->setFrameSize(childVideo->getFrameSize()); |
| 142 | |
| 143 | emit signalHandlerChanged(true, RECACHE_NONE); |
| 144 | } |
| 145 | |
| 146 | void videoHandlerResample::setScaledSize(Size scaledSize) |
| 147 | { |
no test coverage detected