pub struct ConformanceWindow {
pub conf_win_left_offset: u64,
pub conf_win_right_offset: u64,
pub conf_win_top_offset: u64,
pub conf_win_bottom_offset: u64,
}
Expand description
Specifies the samples of the pictures in the CVS that are output from the decoding process, in terms of a rectangular region specified in picture coordinates for output.
Directly part of SPS RBSP.
Fields§
§conf_win_left_offset: u64
The the left crop offset which is used to compute the croppedWidth
.
conf_win_right_offset: u64
The the right crop offset which is used to compute the croppedWidth
.
conf_win_top_offset: u64
The top crop offset which is used to compute the croppedHeight
.
conf_win_bottom_offset: u64
The bottom crop offset which is used to compute the croppedHeight
.
Trait Implementations§
Source§impl Clone for ConformanceWindow
impl Clone for ConformanceWindow
Source§fn clone(&self) -> ConformanceWindow
fn clone(&self) -> ConformanceWindow
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConformanceWindow
impl Debug for ConformanceWindow
Source§impl Default for ConformanceWindow
impl Default for ConformanceWindow
Source§fn default() -> ConformanceWindow
fn default() -> ConformanceWindow
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConformanceWindow
impl PartialEq for ConformanceWindow
impl StructuralPartialEq for ConformanceWindow
Auto Trait Implementations§
impl Freeze for ConformanceWindow
impl RefUnwindSafe for ConformanceWindow
impl Send for ConformanceWindow
impl Sync for ConformanceWindow
impl Unpin for ConformanceWindow
impl UnwindSafe for ConformanceWindow
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