| 18 | using namespace pplay; |
| 19 | |
| 20 | std::string Utility::getMediaInfoPath(const c2d::Io::File &file) { |
| 21 | std::string hash = std::to_string(std::hash<std::string>()(file.path)); |
| 22 | return c2d_renderer->getIo()->getDataPath() + "cache/" + hash + ".info"; |
| 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)); |
nothing calls this directly
no test coverage detected