Struct openh264_sys::TagVideoDecoderStatistics [] [src]

#[repr(C)]
pub struct TagVideoDecoderStatistics { pub uiWidth: c_uint, pub uiHeight: c_uint, pub fAverageFrameSpeedInMs: f32, pub fActualAverageFrameSpeedInMs: f32, pub uiDecodedFrameCount: c_uint, pub uiResolutionChangeTimes: c_uint, pub uiIDRCorrectNum: c_uint, pub uiAvgEcRatio: c_uint, pub uiAvgEcPropRatio: c_uint, pub uiEcIDRNum: c_uint, pub uiEcFrameNum: c_uint, pub uiIDRLostNum: c_uint, pub uiFreezingIDRNum: c_uint, pub uiFreezingNonIDRNum: c_uint, pub iAvgLumaQp: c_int, pub iSpsReportErrorNum: c_int, pub iSubSpsReportErrorNum: c_int, pub iPpsReportErrorNum: c_int, pub iSpsNoExistNalNum: c_int, pub iSubSpsNoExistNalNum: c_int, pub iPpsNoExistNalNum: c_int, pub uiProfile: c_uint, pub uiLevel: c_uint, pub iCurrentActiveSpsId: c_int, pub iCurrentActivePpsId: c_int, pub iStatisticsLogInterval: c_uint, }

@brief Structure for decoder statistics

Fields

< the width of encode/decode frame

< the height of encode/decode frame

< average_Decoding_Time

< actual average_Decoding_Time, including freezing pictures

< number of frames

< uiResolutionChangeTimes

< number of correct IDR received

< when EC is on, the average ratio of total EC areas, can be an indicator of reconstruction quality

< when EC is on, the rough average ratio of propogate EC areas, can be an indicator of reconstruction quality

< number of actual unintegrity IDR or not received but eced

<

< number of whole lost IDR

< number of freezing IDR with error (partly received), under resolution change

< number of freezing non-IDR with error

< average luma QP. default: -1, no correct frame outputted

< number of Sps Invalid report

< number of SubSps Invalid report

< number of Pps Invalid report

< number of Sps NoExist Nal

< number of SubSps NoExist Nal

< number of Pps NoExist Nal

< Profile idc in syntax

< level idc according to Annex A-1

< current active SPS id

< current active PPS id

< frame interval of statistics log

Trait Implementations

impl Debug for TagVideoDecoderStatistics
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for TagVideoDecoderStatistics
[src]

[src]

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

impl Copy for TagVideoDecoderStatistics
[src]

impl Clone for TagVideoDecoderStatistics
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations