| 166 | } |
| 167 | |
| 168 | void QNapi::postProcessSubtitles() const { |
| 169 | if (currentEngine) { |
| 170 | QSharedPointer<const SubtitlePostProcessor> postProcessor = |
| 171 | LibQNapi::subtitlePostProcessor(config.postProcessingConfig()); |
| 172 | |
| 173 | postProcessor->perform(currentEngine->movie, currentEngine->subtitlesTmp); |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | void QNapi::cleanup() { |
| 178 | foreach (QSharedPointer<SubtitleDownloadEngine> e, enginesList) { |
no test coverage detected