[][src]Struct ffmpeg_sys_next::AVDRMFrameDescriptor

#[repr(C)]pub struct AVDRMFrameDescriptor {
    pub nb_objects: c_int,
    pub objects: [AVDRMObjectDescriptor; 4],
    pub nb_layers: c_int,
    pub layers: [AVDRMLayerDescriptor; 4],
}

DRM frame descriptor.

This is used as the data pointer for AV_PIX_FMT_DRM_PRIME frames. It is also used by user-allocated frame pools - allocating in AVHWFramesContext.pool must return AVBufferRefs which contain an object of this type.

The fields of this structure should be set such it can be imported directly by EGL using the EGL_EXT_image_dma_buf_import and EGL_EXT_image_dma_buf_import_modifiers extensions. (Note that the exact layout of a particular format may vary between platforms - we only specify that the same platform should be able to import it.)

The total number of planes must not exceed AV_DRM_MAX_PLANES, and the order of the planes by increasing layer index followed by increasing plane index must be the same as the order which would be used for the data pointers in the equivalent software format.

Fields

nb_objects: c_int

Number of DRM objects making up this frame.

objects: [AVDRMObjectDescriptor; 4]

Array of objects making up the frame.

nb_layers: c_int

Number of layers in the frame.

layers: [AVDRMLayerDescriptor; 4]

Array of layers in the frame.

Trait Implementations

impl Clone for AVDRMFrameDescriptor[src]

impl Copy for AVDRMFrameDescriptor[src]

impl Debug for AVDRMFrameDescriptor[src]

impl Eq for AVDRMFrameDescriptor[src]

impl PartialEq<AVDRMFrameDescriptor> for AVDRMFrameDescriptor[src]

impl StructuralEq for AVDRMFrameDescriptor[src]

impl StructuralPartialEq for AVDRMFrameDescriptor[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.