| 137 | } |
| 138 | |
| 139 | bool videoHandlerDifference::inputsValid() const |
| 140 | { |
| 141 | if (inputVideo[0].isNull() || inputVideo[1].isNull()) |
| 142 | return false; |
| 143 | |
| 144 | if (!inputVideo[0]->isFormatValid() || !inputVideo[1]->isFormatValid()) |
| 145 | return false; |
| 146 | |
| 147 | return true; |
| 148 | } |
| 149 | |
| 150 | void videoHandlerDifference::setInputVideos(FrameHandler *childVideo0, FrameHandler *childVideo1) |
| 151 | { |
no test coverage detected