Struct openh264_sys::Source_Picture_s [] [src]

#[repr(C)]
pub struct Source_Picture_s { pub iColorFormat: c_int, pub iStride: [c_int; 4], pub pData: [*mut c_uchar; 4], pub iPicWidth: c_int, pub iPicHeight: c_int, pub uiTimeStamp: c_longlong, }

@brief Structure for source picture

Fields

< color space type

< stride for each plane pData

< plane pData

< luma picture width in x coordinate

< luma picture height in y coordinate

< timestamp of the source picture, unit: millisecond

Trait Implementations

impl Debug for Source_Picture_s
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for Source_Picture_s
[src]

impl Clone for Source_Picture_s
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Source_Picture_s
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations