Struct AVPanScan
#[repr(C)]pub struct AVPanScan {
pub id: i32,
pub width: i32,
pub height: i32,
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: i32
id
- encoding: Set by user.
- decoding: Set by libavcodec.
width: i32
width and height in 1/16 pel
- encoding: Set by user.
- decoding: Set by libavcodec.
height: i32
§position: [[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§
Auto Trait Implementations§
impl Freeze for AVPanScan
impl RefUnwindSafe for AVPanScan
impl Send for AVPanScan
impl Sync for AVPanScan
impl Unpin for AVPanScan
impl UnwindSafe for AVPanScan
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