| 276 | } |
| 277 | |
| 278 | static std::string v4l2_capability_to_string(const v4l2_capability caps) { |
| 279 | return fmt::format("driver:{},bus_info:{}", (const char *)caps.driver, |
| 280 | (const char *)caps.bus_info); |
| 281 | } |
| 282 | |
| 283 | static std::optional<v4l2_capability> get_capabilities( |
| 284 | std::unique_ptr<openhd::v4l2::V4l2FPHolder> &v4l2_fp_holder) { |
nothing calls this directly
no outgoing calls
no test coverage detected