| 55 | std::string CacheFile; |
| 56 | |
| 57 | struct Error { |
| 58 | std::string msg; |
| 59 | Error(const char *msg) : msg(msg) {} |
| 60 | Error(const char *msg, FFMS_ErrorInfo const& e) : msg(msg) { |
| 61 | this->msg.append(e.Buffer); |
| 62 | } |
| 63 | }; |
| 64 | |
| 65 | struct Progress { |
| 66 | int Percent; |
no outgoing calls
no test coverage detected