Load Json::Value into this object
| 133 | |
| 134 | // Load Json::Value into this object |
| 135 | void Deinterlace::SetJsonValue(const Json::Value root) { |
| 136 | |
| 137 | // Set parent data |
| 138 | EffectBase::SetJsonValue(root); |
| 139 | |
| 140 | // Set data from Json (if key is found) |
| 141 | if (!root["isOdd"].isNull()) |
| 142 | isOdd = root["isOdd"].asBool(); |
| 143 | } |
| 144 | |
| 145 | // Get all properties for a specific frame |
| 146 | std::string Deinterlace::PropertiesJSON(int64_t requested_frame) const { |
nothing calls this directly
no outgoing calls
no test coverage detected