| 322 | |
| 323 | |
| 324 | tString Viewer::GetFrameFilename(int frameNum, const tString& dir, const tString& baseName, tFileType fileType) |
| 325 | { |
| 326 | tString frameFile; |
| 327 | tString extension = tSystem::tGetExtension(fileType); |
| 328 | tsPrintf(frameFile, "%s%s_%03d.%s", dir.Chr(), baseName.Chr(), frameNum, extension.Chr()); |
| 329 | return frameFile; |
| 330 | } |
| 331 | |
| 332 | |
| 333 | void Viewer::SaveExtractedFrames(const tString& destDir, const tString& baseName, tFileType fileType, tIntervalSet frameSet) |
nothing calls this directly
no outgoing calls
no test coverage detected