Skip to main content

Pps

Struct Pps 

Source
pub struct Pps {
    pub pic_parameter_set_id: u32,
    pub seq_parameter_set_id: u32,
    pub num_ref_idx_l0_default_active_minus1: u32,
    pub pic_init_qp_minus26: i32,
    pub deblocking_filter_control_present_flag: bool,
    pub weighted_bipred_idc: u8,
    pub entropy_coding_mode_flag: bool,
    pub transform_8x8_mode_flag: bool,
}
Expand description

Picture parameter set for a CAVLC, single-slice-group CBP encoder.

Fields§

§pic_parameter_set_id: u32§seq_parameter_set_id: u32§num_ref_idx_l0_default_active_minus1: u32§pic_init_qp_minus26: i32§deblocking_filter_control_present_flag: bool§weighted_bipred_idc: u8

2 = IMPLICIT weighted bi-prediction (POC-distance weights) — needed so unequal-distance B-frames (bframes > 1) blend correctly; 0 otherwise (keeps the B-less PPS byte-identical, and bframes == 1’s equidistant B gets 32:32 weights == the plain average anyway).

§entropy_coding_mode_flag: bool

CABAC (1) vs CAVLC (0). Set from EncoderConfig::cabac.

§transform_8x8_mode_flag: bool

transform_8x8_mode_flag (High-profile PPS extension). Set from EncoderConfig::transform_8x8; requires profile_idc 100.

Implementations§

Source§

impl Pps

Source

pub fn from_config(cfg: &EncoderConfig) -> Self

Derives the PPS from an encoder configuration.

Source

pub fn write_rbsp(&self, w: &mut BitWriter)

Writes the PPS RBSP (without NAL header) including trailing bits.

Source

pub fn to_nal(&self) -> NalUnit

Builds the PPS as a complete NAL unit.

Trait Implementations§

Source§

impl Clone for Pps

Source§

fn clone(&self) -> Pps

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Pps

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Pps

§

impl RefUnwindSafe for Pps

§

impl Send for Pps

§

impl Sync for Pps

§

impl Unpin for Pps

§

impl UnsafeUnpin for Pps

§

impl UnwindSafe for Pps

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.