Struct AVProducerReferenceTime
#[repr(C)]pub struct AVProducerReferenceTime {
pub wallclock: i64,
pub flags: i32,
}
Expand description
This structure supplies correlation between a packet timestamp and a wall clock production time. The definition follows the Producer Reference Time (‘prft’) as defined in ISO/IEC 14496-12
Fields§
§wallclock: i64
A UTC timestamp, in microseconds, since Unix epoch (e.g, av_gettime()).
flags: i32
Trait Implementations§
§impl Clone for AVProducerReferenceTime
impl Clone for AVProducerReferenceTime
§fn clone(&self) -> AVProducerReferenceTime
fn clone(&self) -> AVProducerReferenceTime
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for AVProducerReferenceTime
impl Debug for AVProducerReferenceTime
impl Copy for AVProducerReferenceTime
Auto Trait Implementations§
impl Freeze for AVProducerReferenceTime
impl RefUnwindSafe for AVProducerReferenceTime
impl Send for AVProducerReferenceTime
impl Sync for AVProducerReferenceTime
impl Unpin for AVProducerReferenceTime
impl UnwindSafe for AVProducerReferenceTime
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