| 22 | static V4L2_HANDLE_INSTANCE: V4l2BufferHandle = V4l2BufferHandle; |
| 23 | |
| 24 | pub struct V4l2Stream { |
| 25 | inner: v4l::io::mmap::Stream<'static>, |
| 26 | format: v4l::Format, |
| 27 | clock_sync: ClockSynchronizer, |
| 28 | is_streaming: bool, |
| 29 | _dev: Arc<v4l::Device>, |
| 30 | } |
| 31 | |
| 32 | unsafe impl Send for V4l2Stream {} |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected