Skip to main content

_VAStatsStatisticsParameterH264

Struct _VAStatsStatisticsParameterH264 

Source
#[repr(C)]
pub struct _VAStatsStatisticsParameterH264 { pub stats_params: VAStatsStatisticsParameter, pub _bitfield_align_1: [u32; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 16]>, pub reserved4: [u32; 2], }
Expand description

\brief Motion Vector and Statistics frame level controls. VAStatsStatisticsParameterBufferType for H264 16x16 block

Fields§

§stats_params: VAStatsStatisticsParameter§_bitfield_align_1: [u32; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 16]>§reserved4: [u32; 2]

Implementations§

Source§

impl _VAStatsStatisticsParameterH264

Source

pub fn frame_qp(&self) -> u32

Source

pub fn set_frame_qp(&mut self, val: u32)

Source

pub fn len_sp(&self) -> u32

Source

pub fn set_len_sp(&mut self, val: u32)

Source

pub fn search_path(&self) -> u32

Source

pub fn set_search_path(&mut self, val: u32)

Source

pub fn reserved0(&self) -> u32

Source

pub fn set_reserved0(&mut self, val: u32)

Source

pub fn sub_mb_part_mask(&self) -> u32

Source

pub fn set_sub_mb_part_mask(&mut self, val: u32)

Source

pub fn sub_pel_mode(&self) -> u32

Source

pub fn set_sub_pel_mode(&mut self, val: u32)

Source

pub fn inter_sad(&self) -> u32

Source

pub fn set_inter_sad(&mut self, val: u32)

Source

pub fn intra_sad(&self) -> u32

Source

pub fn set_intra_sad(&mut self, val: u32)

Source

pub fn mv_predictor_ctrl(&self) -> u32

Source

pub fn set_mv_predictor_ctrl(&mut self, val: u32)

Source

pub fn mb_qp(&self) -> u32

Source

pub fn set_mb_qp(&mut self, val: u32)

Source

pub fn ft_enable(&self) -> u32

Source

pub fn set_ft_enable(&mut self, val: u32)

Source

pub fn intra_part_mask(&self) -> u32

Source

pub fn set_intra_part_mask(&mut self, val: u32)

Source

pub fn reserved1(&self) -> u32

Source

pub fn set_reserved1(&mut self, val: u32)

Source

pub fn ref_width(&self) -> u32

Source

pub fn set_ref_width(&mut self, val: u32)

Source

pub fn ref_height(&self) -> u32

Source

pub fn set_ref_height(&mut self, val: u32)

Source

pub fn search_window(&self) -> u32

Source

pub fn set_search_window(&mut self, val: u32)

Source

pub fn reserved2(&self) -> u32

Source

pub fn set_reserved2(&mut self, val: u32)

Source

pub fn disable_mv_output(&self) -> u32

Source

pub fn set_disable_mv_output(&mut self, val: u32)

Source

pub fn disable_statistics_output(&self) -> u32

Source

pub fn set_disable_statistics_output(&mut self, val: u32)

Source

pub fn enable_8x8_statistics(&self) -> u32

Source

pub fn set_enable_8x8_statistics(&mut self, val: u32)

Source

pub fn reserved3(&self) -> u32

Source

pub fn set_reserved3(&mut self, val: u32)

Source

pub fn new_bitfield_1( frame_qp: u32, len_sp: u32, search_path: u32, reserved0: u32, sub_mb_part_mask: u32, sub_pel_mode: u32, inter_sad: u32, intra_sad: u32, adaptive_search: u32, mv_predictor_ctrl: u32, mb_qp: u32, ft_enable: u32, intra_part_mask: u32, reserved1: u32, ref_width: u32, ref_height: u32, search_window: u32, reserved2: u32, disable_mv_output: u32, disable_statistics_output: u32, enable_8x8_statistics: u32, reserved3: u32, ) -> __BindgenBitfieldUnit<[u8; 16]>

Trait Implementations§

Source§

impl Clone for _VAStatsStatisticsParameterH264

Source§

fn clone(&self) -> _VAStatsStatisticsParameterH264

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 Copy for _VAStatsStatisticsParameterH264

Source§

impl Debug for _VAStatsStatisticsParameterH264

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Default for _VAStatsStatisticsParameterH264

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Eq for _VAStatsStatisticsParameterH264

Source§

impl PartialEq for _VAStatsStatisticsParameterH264

Source§

fn eq(&self, other: &_VAStatsStatisticsParameterH264) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for _VAStatsStatisticsParameterH264

Auto Trait Implementations§

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.