Struct ffmpeg_the_third::util::frame::video::Video

source ·
pub struct Video(/* private fields */);

Implementations§

source§

impl Video

source

pub unsafe fn wrap(ptr: *mut AVFrame) -> Self

source

pub unsafe fn alloc(&mut self, format: Pixel, width: u32, height: u32)

source§

impl Video

source

pub fn empty() -> Self

source

pub fn new(format: Pixel, width: u32, height: u32) -> Self

source

pub fn format(&self) -> Pixel

source

pub fn set_format(&mut self, value: Pixel)

source

pub fn kind(&self) -> Type

source

pub fn set_kind(&mut self, value: Type)

source

pub fn is_interlaced(&self) -> bool

source

pub fn is_top_first(&self) -> bool

source

pub fn has_palette_changed(&self) -> bool

source

pub fn width(&self) -> u32

source

pub fn set_width(&mut self, value: u32)

source

pub fn height(&self) -> u32

source

pub fn set_height(&mut self, value: u32)

source

pub fn color_space(&self) -> Space

source

pub fn set_color_space(&mut self, value: Space)

source

pub fn color_range(&self) -> Range

source

pub fn set_color_range(&mut self, value: Range)

source

pub fn color_primaries(&self) -> Primaries

source

pub fn set_color_primaries(&mut self, value: Primaries)

source

pub fn color_transfer_characteristic(&self) -> TransferCharacteristic

source

pub fn set_color_transfer_characteristic( &mut self, value: TransferCharacteristic )

source

pub fn chroma_location(&self) -> Location

source

pub fn aspect_ratio(&self) -> Rational

source

pub fn coded_number(&self) -> usize

source

pub fn display_number(&self) -> usize

source

pub fn repeat(&self) -> f64

source

pub fn stride(&self, index: usize) -> usize

source

pub fn planes(&self) -> usize

source

pub fn plane_width(&self, index: usize) -> u32

source

pub fn plane_height(&self, index: usize) -> u32

source

pub fn plane<T: Component>(&self, index: usize) -> &[T]

source

pub fn plane_mut<T: Component>(&mut self, index: usize) -> &mut [T]

source

pub fn data(&self, index: usize) -> &[u8]

source

pub fn data_mut(&mut self, index: usize) -> &mut [u8]

source§

impl Video

source

pub fn scaler( &self, width: u32, height: u32, flags: Flags ) -> Result<Context, Error>

source

pub fn converter(&self, format: Pixel) -> Result<Context, Error>

Methods from Deref<Target = Frame>§

source

pub unsafe fn as_ptr(&self) -> *const AVFrame

source

pub unsafe fn as_mut_ptr(&mut self) -> *mut AVFrame

source

pub unsafe fn as_ref(&self) -> Option<&AVFrame>

source

pub unsafe fn as_mut(&mut self) -> Option<&mut AVFrame>

source

pub unsafe fn is_empty(&self) -> bool

source

pub fn is_key(&self) -> bool

source

pub fn is_corrupt(&self) -> bool

source

pub fn packet(&self) -> Packet

source

pub fn pts(&self) -> Option<i64>

source

pub fn set_pts(&mut self, value: Option<i64>)

source

pub fn timestamp(&self) -> Option<i64>

source

pub fn quality(&self) -> usize

source

pub fn flags(&self) -> Flags

source

pub fn metadata(&self) -> DictionaryRef<'_>

source

pub fn set_metadata(&mut self, value: Dictionary<'_>)

source

pub fn side_data(&self, kind: Type) -> Option<SideData<'_>>

source

pub fn new_side_data(&mut self, kind: Type, size: usize) -> Option<SideData<'_>>

source

pub fn remove_side_data(&mut self, kind: Type)

Trait Implementations§

source§

impl Clone for Video

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Deref for Video

§

type Target = Frame

The resulting type after dereferencing.
source§

fn deref(&self) -> &Frame

Dereferences the value.
source§

impl DerefMut for Video

source§

fn deref_mut(&mut self) -> &mut Frame

Mutably dereferences the value.
source§

impl From<Frame> for Video

source§

fn from(frame: Frame) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Video

source§

fn eq(&self, other: &Video) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Video

source§

impl StructuralPartialEq for Video

Auto Trait Implementations§

§

impl Freeze for Video

§

impl RefUnwindSafe for Video

§

impl Send for Video

§

impl Sync for Video

§

impl Unpin for Video

§

impl UnwindSafe for Video

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<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.