[][src]Struct ffmpeg_dev::sys::PackageMergerList

#[repr(C)]
pub struct PackageMergerList {
    pub nitems: c_int,
    pub item_idx: [c_int; 515],
    pub probability: [c_int; 514],
    pub items: [c_int; 4112],
}

Used to store intermediate lists in the package merge algorithm

Fields

nitems: c_int

< number of items in the list and probability ex. 4

item_idx: [c_int; 515]

< index range for each item in items 0, 2, 5, 9, 13

probability: [c_int; 514]

< probability of each item 3, 8, 18, 46

items: [c_int; 4112]

< chain of all individual values that make up items A, B, A, B, C, A, B, C, D, C, D, D, E

Trait Implementations

impl Clone for PackageMergerList[src]

impl Copy for PackageMergerList[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 = !

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.