(&mut self, index: usize)
| 245 | /// 为 Pipeline 模式暴露此方法,该模式的缓冲区管理方式不同。 |
| 246 | #[allow(dead_code)] |
| 247 | pub fn queue(&mut self, index: usize) -> Result<()> { |
| 248 | v4l2_sys::queue_buffer(self.fd, index as u32)?; |
| 249 | Ok(()) |
| 250 | } |
| 251 | |
| 252 | /// Get the negotiated configuration. |
| 253 | /// 获取协商后的配置。 |
nothing calls this directly
no test coverage detected