pub struct FrameMeta {
pub format: MediaFormat,
pub timestamp: u64,
}Expand description
Metadata associated with a frame.
§Example
use styx_core::prelude::{ColorSpace, FourCc, FrameMeta, MediaFormat, Resolution};
let res = Resolution::new(640, 480).unwrap();
let fmt = MediaFormat::new(FourCc::new(*b"RG24"), res, ColorSpace::Srgb);
let meta = FrameMeta::new(fmt, 123);
assert_eq!(meta.timestamp, 123);Fields§
§format: MediaFormatFormat describing layout and resolution.
timestamp: u64Timestamp in ticks or nanoseconds (caller-defined).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FrameMeta
impl RefUnwindSafe for FrameMeta
impl Send for FrameMeta
impl Sync for FrameMeta
impl Unpin for FrameMeta
impl UnwindSafe for FrameMeta
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more