[][src]Struct minimp4_sys::h264_sps_id_patcher_t

#[repr(C)]
pub struct h264_sps_id_patcher_t {
    pub sps_cache: [*mut c_void; 32],
    pub pps_cache: [*mut c_void; 256],
    pub sps_bytes: [c_int; 32],
    pub pps_bytes: [c_int; 256],
    pub map_sps: [c_int; 32],
    pub map_pps: [c_int; 32],
}

Fields

sps_cache: [*mut c_void; 32]pps_cache: [*mut c_void; 256]sps_bytes: [c_int; 32]pps_bytes: [c_int; 256]map_sps: [c_int; 32]map_pps: [c_int; 32]

Trait Implementations

impl Clone for h264_sps_id_patcher_t[src]

impl Copy for h264_sps_id_patcher_t[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.