-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
basic multi-plane support #71
Open
illegalprime
wants to merge
5
commits into
raymanfx:master
Choose a base branch
from
illegalprime:mplane
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
ff5f5cb
split device type into plane variants
illegalprime 7ddabd3
add format fns to capture stream
illegalprime 7391c14
multiplane capture stream
illegalprime 67f0b0b
allow manually dequeueing buffers
illegalprime 8c1e5f4
version bump
illegalprime File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "v4l" | ||
description = "Safe video4linux (v4l) bindings" | ||
version = "0.13.1" | ||
version = "0.14.0" | ||
authors = ["Christopher N. Hesse <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -11,8 +11,8 @@ repository= "https://github.com/raymanfx/libv4l-rs" | |
[dependencies] | ||
bitflags = "1.2.1" | ||
libc = "0.2" | ||
v4l-sys = { path = "v4l-sys", version = "0.2.0", optional = true } | ||
v4l2-sys = { path = "v4l2-sys", version = "0.2.0", package="v4l2-sys-mit", optional = true } | ||
v4l-sys = { path = "v4l-sys", version = "0.2.1", optional = true } | ||
v4l2-sys = { path = "v4l2-sys", version = "0.2.1", package="v4l2-sys-mit", optional = true } | ||
|
||
[dev-dependencies] | ||
glium = "0.27.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -12,8 +12,9 @@ use crate::v4l_sys::*; | |||||||||||||||||||||||||||||||||||||||||||||||||||
/// In case of errors during unmapping, we panic because there is memory corruption going on. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
pub struct Arena<'a> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
handle: Arc<Handle>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
pub bufs: Vec<&'a mut [u8]>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
pub bufs: Vec<Vec<&'a mut [u8]>>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
pub buf_type: buffer::Type, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
pub planes: Vec<Vec<v4l2_plane>>, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
impl<'a> Arena<'a> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -31,6 +32,7 @@ impl<'a> Arena<'a> { | |||||||||||||||||||||||||||||||||||||||||||||||||||
handle, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
bufs: Vec::new(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
buf_type, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
planes: Vec::new(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -51,6 +53,24 @@ impl<'a> Arena<'a> { | |||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
pub fn allocate(&mut self, count: u32) -> io::Result<u32> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
let num_planes = if !self.buf_type.planar() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
// we need to get the number of image planes from the format | ||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut v4l2_fmt: v4l2_format; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
unsafe { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2_fmt = mem::zeroed(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2_fmt.type_ = self.buf_type as u32; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2::ioctl( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
self.handle.fd(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2::vidioc::VIDIOC_G_FMT, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
&mut v4l2_fmt as *mut _ as *mut std::os::raw::c_void, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2_fmt.fmt.pix_mp.num_planes as usize | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut v4l2_reqbufs = v4l2_requestbuffers { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
count, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
..self.requestbuffers_desc() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -64,29 +84,45 @@ impl<'a> Arena<'a> { | |||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
for index in 0..v4l2_reqbufs.count { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut v4l2_planes: Vec<v4l2_plane> = Vec::new(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
unsafe { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2_planes.resize(num_planes as usize, mem::zeroed()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut v4l2_buf = v4l2_buffer { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
index, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
..self.buffer_desc() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
if self.buf_type.planar() { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2_buf.length = num_planes as u32; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2_buf.m.planes = v4l2_planes.as_mut_ptr(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
unsafe { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2::ioctl( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
self.handle.fd(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2::vidioc::VIDIOC_QUERYBUF, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
&mut v4l2_buf as *mut _ as *mut std::os::raw::c_void, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
let ptr = v4l2::mmap( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
ptr::null_mut(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2_buf.length as usize, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
libc::PROT_READ | libc::PROT_WRITE, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
libc::MAP_SHARED, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
self.handle.fd(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2_buf.m.offset as libc::off_t, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
// each plane has to be mapped separately | ||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut planes = Vec::new(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
for plane in &v4l2_planes { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
let ptr = v4l2::mmap( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
ptr::null_mut(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
plane.length as usize, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
libc::PROT_READ | libc::PROT_WRITE, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
libc::MAP_SHARED, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
self.handle.fd(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
plane.m.mem_offset as libc::off_t, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
planes.push(slice::from_raw_parts_mut::<u8>( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
ptr as *mut u8, plane.length as usize | ||||||||||||||||||||||||||||||||||||||||||||||||||||
)); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+109
to
+120
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When I tried to use this branch for my application, which use both multi plane and single plane, I received error with single plane device. This fix works with my environment.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
let slice = | ||||||||||||||||||||||||||||||||||||||||||||||||||||
slice::from_raw_parts_mut::<u8>(ptr as *mut u8, v4l2_buf.length as usize); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
self.bufs.push(slice); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
// finally, add the buffer (with all its planes) to the set | ||||||||||||||||||||||||||||||||||||||||||||||||||||
self.bufs.push(planes); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
self.planes.push(v4l2_planes); | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -95,8 +131,10 @@ impl<'a> Arena<'a> { | |||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
pub fn release(&mut self) -> io::Result<()> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
for buf in &self.bufs { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
unsafe { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2::munmap(buf.as_ptr() as *mut core::ffi::c_void, buf.len())?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
for plane in buf { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
unsafe { | ||||||||||||||||||||||||||||||||||||||||||||||||||||
v4l2::munmap(plane.as_ptr() as *mut core::ffi::c_void, buf.len())?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: there's a
matches!(self, Type::VideoCaptureMplane | Type::VideoOutputMplane)
macro for this: