| 9 | #include "utility.h" |
| 10 | |
| 11 | MediaInfo::MediaInfo(const c2d::Io::File &file) { |
| 12 | |
| 13 | serialize_path = pplay::Utility::getMediaInfoPath(file); |
| 14 | if (!pplay::Utility::isMedia(file)) { |
| 15 | return; |
| 16 | } |
| 17 | deserialize(); |
| 18 | } |
| 19 | |
| 20 | void MediaInfo::save(const c2d::Io::File &file) { |
| 21 |
nothing calls this directly
no outgoing calls
no test coverage detected