Struct ffmpeg_sys_next::AVComponentDescriptor[][src]

#[repr(C)]
pub struct AVComponentDescriptor { pub plane: c_int, pub step: c_int, pub offset: c_int, pub shift: c_int, pub depth: c_int, pub step_minus1: c_int, pub depth_minus1: c_int, pub offset_plus1: c_int, }

Fields

plane: c_int

Which of the 4 planes contains the component.

step: c_int

Number of elements between 2 horizontally consecutive pixels. Elements are bits for bitstream formats, bytes otherwise.

offset: c_int

Number of elements before the component of the first pixel. Elements are bits for bitstream formats, bytes otherwise.

shift: c_int

Number of least significant bits that must be shifted away to get the value.

depth: c_int

Number of bits in the component.

step_minus1: c_int

deprecated, use step instead

depth_minus1: c_int

deprecated, use depth instead

offset_plus1: c_int

deprecated, use offset instead

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.