[][src]Struct x264_dev::raw::x264_level_t

#[repr(C)]pub struct x264_level_t {
    pub level_idc: u8,
    pub mbps: u32,
    pub frame_size: u32,
    pub dpb: u32,
    pub bitrate: u32,
    pub cpb: u32,
    pub mv_range: u16,
    pub mvs_per_2mb: u8,
    pub slice_rate: u8,
    pub mincr: u8,
    pub bipred8x8: u8,
    pub direct8x8: u8,
    pub frame_only: u8,
}

H.264 level restriction information

Fields

level_idc: u8mbps: u32frame_size: u32dpb: u32bitrate: u32cpb: u32mv_range: u16mvs_per_2mb: u8slice_rate: u8mincr: u8bipred8x8: u8direct8x8: u8frame_only: u8

Trait Implementations

impl Clone for x264_level_t[src]

impl Copy for x264_level_t[src]

impl Debug for x264_level_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.