#[repr(C)]pub struct _VAEncMiscParameterParallelRateControl {
pub num_layers: u32,
pub num_b_in_gop: *mut u32,
}Expand description
\brief Attribute value for VAConfigAttribEncParallelRateControl
Fields§
§num_layers: u32brief Number of layers
num_b_in_gop: *mut u32brief Number of B frames per layer per GOP.
it should be allocated by application, and the is num_layers. num_b_in_gop[0] is the number of regular B which refers to only I or P frames.
Trait Implementations§
Source§impl Clone for _VAEncMiscParameterParallelRateControl
impl Clone for _VAEncMiscParameterParallelRateControl
Source§fn clone(&self) -> _VAEncMiscParameterParallelRateControl
fn clone(&self) -> _VAEncMiscParameterParallelRateControl
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for _VAEncMiscParameterParallelRateControl
impl Eq for _VAEncMiscParameterParallelRateControl
Source§impl PartialEq for _VAEncMiscParameterParallelRateControl
impl PartialEq for _VAEncMiscParameterParallelRateControl
Source§fn eq(&self, other: &_VAEncMiscParameterParallelRateControl) -> bool
fn eq(&self, other: &_VAEncMiscParameterParallelRateControl) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for _VAEncMiscParameterParallelRateControl
Auto Trait Implementations§
impl !Send for _VAEncMiscParameterParallelRateControl
impl !Sync for _VAEncMiscParameterParallelRateControl
impl Freeze for _VAEncMiscParameterParallelRateControl
impl RefUnwindSafe for _VAEncMiscParameterParallelRateControl
impl Unpin for _VAEncMiscParameterParallelRateControl
impl UnsafeUnpin for _VAEncMiscParameterParallelRateControl
impl UnwindSafe for _VAEncMiscParameterParallelRateControl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more