[][src]Struct stainless_ffmpeg_sys::AVCPBProperties

#[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,
}

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_int

The size of the buffer to which the ratecontrol is applied, in bits. Zero if unknown or unspecified.

vbv_delay: u64

The 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

impl Clone for AVCPBProperties[src]

impl Copy for AVCPBProperties[src]

impl Debug for AVCPBProperties[src]

impl Eq for AVCPBProperties[src]

impl PartialEq<AVCPBProperties> for AVCPBProperties[src]

impl StructuralEq for AVCPBProperties[src]

impl StructuralPartialEq for AVCPBProperties[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.