[][src]Struct ffmpeg_dev::sys::RLTable

#[repr(C)]
pub struct RLTable {
    pub n: c_int,
    pub last: c_int,
    pub table_vlc: *const [c_ushort; 2],
    pub table_run: *const i8,
    pub table_level: *const i8,
    pub index_run: [*mut u8; 2],
    pub max_level: [*mut i8; 2],
    pub max_run: [*mut i8; 2],
    pub rl_vlc: [*mut RL_VLC_ELEM; 32],
}

RLTable.

Fields

n: c_int

< number of entries of table_vlc minus 1

last: c_int

< number of values for last = 0

table_vlc: *const [c_ushort; 2]table_run: *const i8table_level: *const i8index_run: [*mut u8; 2]

< encoding only

max_level: [*mut i8; 2]

< encoding & decoding

max_run: [*mut i8; 2]

< encoding & decoding

rl_vlc: [*mut RL_VLC_ELEM; 32]

< decoding only

Trait Implementations

impl Clone for RLTable[src]

impl Copy for RLTable[src]

impl Debug for RLTable[src]

Auto Trait Implementations

impl !Send for RLTable

impl !Sync for RLTable

impl Unpin for RLTable

impl UnwindSafe for RLTable

impl RefUnwindSafe for RLTable

Blanket Implementations

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]