Struct ffmpeg_sys_next::AVCPBProperties
source · [−]#[repr(C)]pub struct AVCPBProperties {
pub max_bitrate: c_int,
pub min_bitrate: c_int,
pub avg_bitrate: c_int,
pub buffer_size: c_int,
pub vbv_delay: u64,
}Expand description
This structure describes the bitrate properties of an encoded bitstream. It roughly corresponds to a subset the VBV parameters for MPEG-2 or HRD parameters for H.264/HEVC.
Fields
max_bitrate: c_intmin_bitrate: c_intavg_bitrate: c_intbuffer_size: c_intThe size of the buffer to which the ratecontrol is applied, in bits. Zero if unknown or unspecified.
vbv_delay: u64The delay between the time the packet this structure is associated with is received and the time when it should be decoded, in periods of a 27MHz clock.
UINT64_MAX when unknown or unspecified.
Trait Implementations
sourceimpl Clone for AVCPBProperties
impl Clone for AVCPBProperties
sourcefn clone(&self) -> AVCPBProperties
fn clone(&self) -> AVCPBProperties
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AVCPBProperties
impl Debug for AVCPBProperties
sourceimpl PartialEq<AVCPBProperties> for AVCPBProperties
impl PartialEq<AVCPBProperties> for AVCPBProperties
sourcefn eq(&self, other: &AVCPBProperties) -> bool
fn eq(&self, other: &AVCPBProperties) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AVCPBProperties) -> bool
fn ne(&self, other: &AVCPBProperties) -> bool
This method tests for !=.
impl Copy for AVCPBProperties
impl Eq for AVCPBProperties
impl StructuralEq for AVCPBProperties
impl StructuralPartialEq for AVCPBProperties
Auto Trait Implementations
impl RefUnwindSafe for AVCPBProperties
impl Send for AVCPBProperties
impl Sync for AVCPBProperties
impl Unpin for AVCPBProperties
impl UnwindSafe for AVCPBProperties
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more