| 276 | int height_px; |
| 277 | int fps; |
| 278 | std::string as_string() const { |
| 279 | std::stringstream ss; |
| 280 | ss << width_px << "x" << height_px << "@" << fps; |
| 281 | return ss.str(); |
| 282 | } |
| 283 | }; |
| 284 | |
| 285 | struct XCamera { |
nothing calls this directly
no outgoing calls
no test coverage detected