| 23 | } |
| 24 | |
| 25 | std::string Utility::getMediaScrapPath(const c2d::Io::File &file) { |
| 26 | std::string hash = std::to_string(std::hash<std::string>()(file.path)); |
| 27 | return c2d_renderer->getIo()->getDataPath() + "cache/" + hash + ".scrap"; |
| 28 | } |
| 29 | |
| 30 | std::string Utility::getMediaPosterPath(const c2d::Io::File &file) { |
| 31 | std::string hash = std::to_string(std::hash<std::string>()(file.path)); |
nothing calls this directly
no test coverage detected