[−][src]Struct ffmpeg_dev::sys::MJpegContext
Holds JPEG frame data and Huffman table data.
Fields
huff_size_dc_luminance: [u8; 12]
< DC luminance Huffman table size.
huff_code_dc_luminance: [u16; 12]
< DC luminance Huffman table codes.
huff_size_dc_chrominance: [u8; 12]
< DC chrominance Huffman table size.
huff_code_dc_chrominance: [u16; 12]
< DC chrominance Huffman table codes.
huff_size_ac_luminance: [u8; 256]
< AC luminance Huffman table size.
huff_code_ac_luminance: [u16; 256]
< AC luminance Huffman table codes.
huff_size_ac_chrominance: [u8; 256]
< AC chrominance Huffman table size.
huff_code_ac_chrominance: [u16; 256]
< AC chrominance Huffman table codes.
uni_ac_vlc_len: [u8; 8192]
Storage for AC luminance VLC (in MpegEncContext)
uni_chroma_ac_vlc_len: [u8; 8192]
Storage for AC chrominance VLC (in MpegEncContext)
bits_dc_luminance: [u8; 17]
< DC luminance Huffman bits.
val_dc_luminance: [u8; 12]
< DC luminance Huffman values.
bits_dc_chrominance: [u8; 17]
< DC chrominance Huffman bits.
val_dc_chrominance: [u8; 12]
< DC chrominance Huffman values.
bits_ac_luminance: [u8; 17]
< AC luminance Huffman bits.
val_ac_luminance: [u8; 256]
< AC luminance Huffman values.
bits_ac_chrominance: [u8; 17]
< AC chrominance Huffman bits.
val_ac_chrominance: [u8; 256]
< AC chrominance Huffman values.
huff_ncode: usize
< Number of current entries in the buffer.
huff_buffer: *mut MJpegHuffmanCode
< Buffer for Huffman code values.
Trait Implementations
impl Clone for MJpegContext
[src]
fn clone(&self) -> MJpegContext
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for MJpegContext
[src]
Auto Trait Implementations
impl !Send for MJpegContext
impl !Sync for MJpegContext
impl Unpin for MJpegContext
impl UnwindSafe for MJpegContext
impl RefUnwindSafe for MJpegContext
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,