Struct ffmpeg_sys_next::AVDRMPlaneDescriptor
source · #[repr(C)]pub struct AVDRMPlaneDescriptor {
pub object_index: c_int,
pub offset: isize,
pub pitch: isize,
}Expand description
DRM plane descriptor.
Describes a single plane of a layer, which is contained within a single object.
Fields§
§object_index: c_intIndex of the object containing this plane in the objects array of the enclosing frame descriptor.
offset: isizeOffset within that object of this plane.
pitch: isizePitch (linesize) of this plane.
Trait Implementations§
source§impl Clone for AVDRMPlaneDescriptor
impl Clone for AVDRMPlaneDescriptor
source§fn clone(&self) -> AVDRMPlaneDescriptor
fn clone(&self) -> AVDRMPlaneDescriptor
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AVDRMPlaneDescriptor
impl Debug for AVDRMPlaneDescriptor
source§impl PartialEq<AVDRMPlaneDescriptor> for AVDRMPlaneDescriptor
impl PartialEq<AVDRMPlaneDescriptor> for AVDRMPlaneDescriptor
source§fn eq(&self, other: &AVDRMPlaneDescriptor) -> bool
fn eq(&self, other: &AVDRMPlaneDescriptor) -> bool
This method tests for
self and other values to be equal, and is used
by ==.