pub struct VideoMeta(/* private fields */);

Implementations§

source§

impl VideoMeta

source

pub fn add( buffer: &mut BufferRef, video_frame_flags: VideoFrameFlags, format: VideoFormat, width: u32, height: u32 ) -> Result<MetaRefMut<'_, Self, Standalone>, BoolError>

source

pub fn add_full<'a>( buffer: &'a mut BufferRef, video_frame_flags: VideoFrameFlags, format: VideoFormat, width: u32, height: u32, offset: &[usize], stride: &[i32] ) -> Result<MetaRefMut<'a, Self, Standalone>, BoolError>

source

pub fn video_frame_flags(&self) -> VideoFrameFlags

source

pub fn format(&self) -> VideoFormat

source

pub fn id(&self) -> i32

source

pub fn width(&self) -> u32

source

pub fn height(&self) -> u32

source

pub fn n_planes(&self) -> u32

source

pub fn offset(&self) -> &[usize]

source

pub fn stride(&self) -> &[i32]

source

pub fn alignment(&self) -> VideoAlignment

Available on crate feature v1_18 only.
source

pub fn plane_size(&self) -> Result<[usize; 4], BoolError>

Available on crate feature v1_18 only.
source

pub fn plane_height(&self) -> Result<[u32; 4], BoolError>

Available on crate feature v1_18 only.
source

pub fn set_alignment( &mut self, alignment: &VideoAlignment ) -> Result<(), BoolError>

Available on crate feature v1_18 only.

Trait Implementations§

source§

impl Debug for VideoMeta

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl MetaAPI for VideoMeta

source§

impl Send for VideoMeta

source§

impl Sync for VideoMeta

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<A> MetaAPIExt for A
where A: MetaAPI,

source§

unsafe fn from_ptr( buffer: &BufferRef, ptr: *const Self::GstType ) -> MetaRef<'_, Self>

source§

unsafe fn from_mut_ptr<T>( buffer: &mut BufferRef, ptr: *mut Self::GstType ) -> MetaRefMut<'_, Self, T>

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.