Type Alias openh264_sys2::SSourcePicture
source · pub type SSourcePicture = Source_Picture_s;
Expand description
@brief Structure for source picture
Aliased Type§
struct SSourcePicture {
pub iColorFormat: i32,
pub iStride: [i32; 4],
pub pData: [*mut u8; 4],
pub iPicWidth: i32,
pub iPicHeight: i32,
pub uiTimeStamp: i64,
}
Fields§
§iColorFormat: i32
< color space type
iStride: [i32; 4]
< stride for each plane pData
pData: [*mut u8; 4]
< plane pData
iPicWidth: i32
< luma picture width in x coordinate
iPicHeight: i32
< luma picture height in y coordinate
uiTimeStamp: i64
< timestamp of the source picture, unit: millisecond
Trait Implementations
source§impl Clone for Source_Picture_s
impl Clone for Source_Picture_s
source§fn clone(&self) -> Source_Picture_s
fn clone(&self) -> Source_Picture_s
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 Source_Picture_s
impl Debug for Source_Picture_s
source§impl Default for Source_Picture_s
impl Default for Source_Picture_s
source§impl Hash for Source_Picture_s
impl Hash for Source_Picture_s
source§impl Ord for Source_Picture_s
impl Ord for Source_Picture_s
source§fn cmp(&self, other: &Source_Picture_s) -> Ordering
fn cmp(&self, other: &Source_Picture_s) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for Source_Picture_s
impl PartialEq for Source_Picture_s
source§fn eq(&self, other: &Source_Picture_s) -> bool
fn eq(&self, other: &Source_Picture_s) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for Source_Picture_s
impl PartialOrd for Source_Picture_s
source§fn partial_cmp(&self, other: &Source_Picture_s) -> Option<Ordering>
fn partial_cmp(&self, other: &Source_Picture_s) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more