[][src]Struct minimp4_sys::MP4D_track_t

#[repr(C)]
pub struct MP4D_track_t {
    pub sample_count: c_uint,
    pub dsi: *mut c_uchar,
    pub dsi_bytes: c_uint,
    pub object_type_indication: c_uint,
    pub handler_type: c_uint,
    pub duration_hi: c_uint,
    pub duration_lo: c_uint,
    pub timescale: c_uint,
    pub avg_bitrate_bps: c_uint,
    pub language: [c_uchar; 4],
    pub stream_type: c_uint,
    pub SampleDescription: MP4D_track_t__bindgen_ty_1,
    pub entry_size: *mut c_uint,
    pub sample_to_chunk_count: c_uint,
    pub sample_to_chunk: *mut MP4D_sample_to_chunk_t_tag,
    pub chunk_count: c_uint,
    pub chunk_offset: *mut MP4D_file_offset_t,
    pub timestamp: *mut c_uint,
    pub duration: *mut c_uint,
}

Fields

sample_count: c_uintdsi: *mut c_uchardsi_bytes: c_uintobject_type_indication: c_uinthandler_type: c_uintduration_hi: c_uintduration_lo: c_uinttimescale: c_uintavg_bitrate_bps: c_uintlanguage: [c_uchar; 4]stream_type: c_uintSampleDescription: MP4D_track_t__bindgen_ty_1entry_size: *mut c_uintsample_to_chunk_count: c_uintsample_to_chunk: *mut MP4D_sample_to_chunk_t_tagchunk_count: c_uintchunk_offset: *mut MP4D_file_offset_ttimestamp: *mut c_uintduration: *mut c_uint

Trait Implementations

impl Clone for MP4D_track_t[src]

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