Struct openh264_sys::TagEncParamBase [] [src]

#[repr(C)]
pub struct TagEncParamBase { pub iUsageType: EUsageType, pub iPicWidth: c_int, pub iPicHeight: c_int, pub iTargetBitrate: c_int, pub iRCMode: RC_MODES, pub fMaxFrameRate: f32, }

@brief SVC Encoding Parameters

Fields

< application type;1.CAMERA_VIDEO_REAL_TIME:camera video signal; 2.SCREEN_CONTENT_REAL_TIME:screen content signal;

< width of picture in luminance samples (the maximum of all layers if multiple spatial layers presents)

< height of picture in luminance samples((the maximum of all layers if multiple spatial layers presents)

< target bitrate desired, in unit of bps

< rate control mode

< maximal input frame rate

Trait Implementations

impl Debug for TagEncParamBase
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for TagEncParamBase
[src]

impl Clone for TagEncParamBase
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for TagEncParamBase
[src]

[src]

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

Auto Trait Implementations