[][src]Struct ffmpeg_dev::sys::FramePool

#[repr(C)]
pub struct FramePool {
    pub pools: [*mut AVBufferPool; 4],
    pub format: c_int,
    pub width: c_int,
    pub height: c_int,
    pub stride_align: [c_int; 8],
    pub linesize: [c_int; 4],
    pub planes: c_int,
    pub channels: c_int,
    pub samples: c_int,
}

Fields

pools: [*mut AVBufferPool; 4]

Pools for each data plane. For audio all the planes have the same size, so only pools[0] is used.

format: c_intwidth: c_intheight: c_intstride_align: [c_int; 8]linesize: [c_int; 4]planes: c_intchannels: c_intsamples: c_int

Trait Implementations

impl Clone for FramePool[src]

impl Copy for FramePool[src]

impl Debug for FramePool[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 = !

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.