[][src]Struct stainless_ffmpeg_sys::AVHWFramesContext

#[repr(C)]pub struct AVHWFramesContext {
    pub av_class: *const AVClass,
    pub internal: *mut AVHWFramesInternal,
    pub device_ref: *mut AVBufferRef,
    pub device_ctx: *mut AVHWDeviceContext,
    pub hwctx: *mut c_void,
    pub free: Option<unsafe extern "C" fn(ctx: *mut AVHWFramesContext)>,
    pub user_opaque: *mut c_void,
    pub pool: *mut AVBufferPool,
    pub initial_pool_size: c_int,
    pub format: AVPixelFormat,
    pub sw_format: AVPixelFormat,
    pub width: c_int,
    pub height: c_int,
}

Fields

av_class: *const AVClassinternal: *mut AVHWFramesInternaldevice_ref: *mut AVBufferRefdevice_ctx: *mut AVHWDeviceContexthwctx: *mut c_voidfree: Option<unsafe extern "C" fn(ctx: *mut AVHWFramesContext)>user_opaque: *mut c_voidpool: *mut AVBufferPoolinitial_pool_size: c_intformat: AVPixelFormatsw_format: AVPixelFormatwidth: c_intheight: c_int

Trait Implementations

impl Clone for AVHWFramesContext[src]

impl Copy for AVHWFramesContext[src]

impl Debug for AVHWFramesContext[src]

impl Eq for AVHWFramesContext[src]

impl PartialEq<AVHWFramesContext> for AVHWFramesContext[src]

impl StructuralEq for AVHWFramesContext[src]

impl StructuralPartialEq for AVHWFramesContext[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.