pub struct TimeInfo {
    pub pts: Option<i64>,
    pub dts: Option<i64>,
    pub duration: Option<u64>,
    pub timebase: Option<Rational64>,
    pub user_private: Option<Arc<dyn Any + Send + Sync>>,
}
Expand description

Timestamp information for frames and packets.

Fields

pts: Option<i64>

Presentation timestamp.

dts: Option<i64>

Decode timestamp.

duration: Option<u64>

Duration (in timebase units).

timebase: Option<Rational64>

Timebase numerator/denominator (i.e 1/75th of a second).

Its value does not vary among frames/packets, since it is computed and defined at stream level.

user_private: Option<Arc<dyn Any + Send + Sync>>

Timebase user private data.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.