[−][src]Struct ffav_sys::AVMotionVector
Fields
source: i32Where the current macroblock comes from; negative value when it comes from the past, positive value when it comes from the future. XXX: set exact relative ref frame reference instead of a +/- 1 "direction".
w: u8Width and height of the block.
h: u8Width and height of the block.
src_x: i16Absolute source position. Can be outside the frame area.
src_y: i16Absolute source position. Can be outside the frame area.
dst_x: i16Absolute destination position. Can be outside the frame area.
dst_y: i16Absolute destination position. Can be outside the frame area.
flags: u64Extra flag information. Currently unused.
motion_x: i32Motion vector src_x = dst_x + motion_x / motion_scale src_y = dst_y + motion_y / motion_scale
motion_y: i32Motion vector src_x = dst_x + motion_x / motion_scale src_y = dst_y + motion_y / motion_scale
motion_scale: u16Trait Implementations
impl Clone for AVMotionVector[src]
fn clone(&self) -> AVMotionVector[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for AVMotionVector[src]
impl Debug for AVMotionVector[src]
impl Eq for AVMotionVector[src]
impl PartialEq<AVMotionVector> for AVMotionVector[src]
fn eq(&self, other: &AVMotionVector) -> bool[src]
fn ne(&self, other: &AVMotionVector) -> bool[src]
impl StructuralEq for AVMotionVector[src]
impl StructuralPartialEq for AVMotionVector[src]
Auto Trait Implementations
impl RefUnwindSafe for AVMotionVector
impl Send for AVMotionVector
impl Sync for AVMotionVector
impl Unpin for AVMotionVector
impl UnwindSafe for AVMotionVector
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,