Struct gstreamer_video::video_frame::VideoFrame [−][src]
pub struct VideoFrame<T> { /* fields omitted */ }
A video frame obtained from [Self::map()
]
Implementations
impl<T> VideoFrame<T>
[src]
impl<T> VideoFrame<T>
[src]pub fn info(&self) -> &VideoInfo
[src]
pub fn flags(&self) -> VideoFrameFlags
[src]
pub fn id(&self) -> i32
[src]
pub fn into_buffer(self) -> Buffer
[src]
pub fn copy(&self, dest: &mut VideoFrame<Writable>) -> Result<(), BoolError>
[src]
pub fn copy_plane(
&self,
dest: &mut VideoFrame<Writable>,
plane: u32
) -> Result<(), BoolError>
[src]
&self,
dest: &mut VideoFrame<Writable>,
plane: u32
) -> Result<(), BoolError>
pub fn format(&self) -> VideoFormat
[src]
pub fn format_info(&self) -> VideoFormatInfo
[src]
pub fn width(&self) -> u32
[src]
pub fn height(&self) -> u32
[src]
pub fn size(&self) -> usize
[src]
pub fn is_interlaced(&self) -> bool
[src]
pub fn is_tff(&self) -> bool
[src]
pub fn is_rff(&self) -> bool
[src]
pub fn is_onefield(&self) -> bool
[src]
pub fn n_planes(&self) -> u32
[src]
pub fn n_components(&self) -> u32
[src]
pub fn plane_stride(&self) -> &[i32]
[src]
pub fn plane_offset(&self) -> &[usize]
[src]
pub fn buffer(&self) -> &BufferRef
[src]
pub fn plane_data(&self, plane: u32) -> Result<&[u8], BoolError>
[src]
pub unsafe fn from_glib_full(frame: GstVideoFrame) -> Self
[src]
pub fn as_video_frame_ref(&self) -> VideoFrameRef<&BufferRef>
[src]
pub fn as_ptr(&self) -> *const GstVideoFrame
[src]
impl VideoFrame<Readable>
[src]
impl VideoFrame<Readable>
[src]impl VideoFrame<Writable>
[src]
impl VideoFrame<Writable>
[src]pub fn from_buffer_writable(
buffer: Buffer,
info: &VideoInfo
) -> Result<Self, Buffer>
[src]
buffer: Buffer,
info: &VideoInfo
) -> Result<Self, Buffer>
pub fn from_buffer_id_writable(
buffer: Buffer,
id: i32,
info: &VideoInfo
) -> Result<Self, Buffer>
[src]
buffer: Buffer,
id: i32,
info: &VideoInfo
) -> Result<Self, Buffer>
pub fn buffer_mut(&mut self) -> &mut BufferRef
[src]
pub fn plane_data_mut(&mut self, plane: u32) -> Result<&mut [u8], BoolError>
[src]
pub fn as_mut_video_frame_ref(&mut self) -> VideoFrameRef<&mut BufferRef>
[src]
pub fn as_mut_ptr(&mut self) -> *mut GstVideoFrame
[src]
Trait Implementations
impl<T> Debug for VideoFrame<T>
[src]
impl<T> Debug for VideoFrame<T>
[src]impl<T> Drop for VideoFrame<T>
[src]
impl<T> Drop for VideoFrame<T>
[src]impl<T> Send for VideoFrame<T>
[src]
impl<T> Sync for VideoFrame<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for VideoFrame<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Unpin for VideoFrame<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for VideoFrame<T> where
T: UnwindSafe,
T: UnwindSafe,