[][src]Struct ffmpeg_dev::sys::MJpegHuffmanCode

#[repr(C)]
pub struct MJpegHuffmanCode {
    pub table_id: u8,
    pub code: u8,
    pub mant: u16,
}

Buffer of JPEG frame data.

Optimal Huffman table generation requires the frame data to be loaded into a buffer so that the tables can be computed. There are at most mb_widthmb_height12*64 of these per frame.

Fields

table_id: u8

< The Huffman table id associated with the data.

code: u8

< The exponent.

mant: u16

< The mantissa.

Trait Implementations

impl Clone for MJpegHuffmanCode[src]

impl Copy for MJpegHuffmanCode[src]

impl Debug for MJpegHuffmanCode[src]

Auto Trait Implementations

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]