| 135 | } |
| 136 | |
| 137 | void OfflineVideoEncoder::close() { |
| 138 | if (process == nullptr) { |
| 139 | return; |
| 140 | } |
| 141 | std::string endFile = JoinPaths(rootPath, "InEnd.txt"); |
| 142 | writeEndParam(true, false, endFile); |
| 143 | } |
| 144 | |
| 145 | void OfflineVideoEncoder::exit() { |
| 146 | if (process->state() == QProcess::Running) { |
no test coverage detected