Struct ffmpeg_sys_next::AVPanScan
source · [−]#[repr(C)]pub struct AVPanScan {
pub id: c_int,
pub width: c_int,
pub height: c_int,
pub position: [[i16; 2]; 3],
}Expand description
Pan Scan area. This specifies the area which should be displayed. Note there may be multiple such areas for one frame.
Fields
id: c_intid
- encoding: Set by user.
- decoding: Set by libavcodec.
width: c_intwidth and height in 1/16 pel
- encoding: Set by user.
- decoding: Set by libavcodec.
height: c_intposition: [[i16; 2]; 3]position of the top left corner in 1/16 pel for up to 3 fields/frames
- encoding: Set by user.
- decoding: Set by libavcodec.
Trait Implementations
impl Copy for AVPanScan
impl Eq for AVPanScan
impl StructuralEq for AVPanScan
impl StructuralPartialEq for AVPanScan
Auto Trait Implementations
impl RefUnwindSafe for AVPanScan
impl Send for AVPanScan
impl Sync for AVPanScan
impl Unpin for AVPanScan
impl UnwindSafe for AVPanScan
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more