Home
last modified time | relevance | path

Searched refs:pDecoderStatistics (Results 1 – 6 of 6) sorted by relevance

/third_party/openh264/codec/decoder/plus/src/
DwelsDecoderExt.cpp415 pCtx->pDecoderStatistics = &m_sDecoderStatistics; in InitDecoderCtx()
564 pDecContext->pDecoderStatistics->iStatisticsLogInterval = (* ((unsigned int*)pOption)); in SetOption()
635 SDecoderStatistics* pDecoderStatistics = (static_cast<SDecoderStatistics*> (pOption)); in GetOption() local
637 memcpy (pDecoderStatistics, pDecContext->pDecoderStatistics, sizeof (SDecoderStatistics)); in GetOption()
639 if (pDecContext->pDecoderStatistics->uiDecodedFrameCount != 0) { //not original status in GetOption()
640 pDecoderStatistics->fAverageFrameSpeedInMs = (float) (pDecContext->dDecTime) / in GetOption()
641 (pDecContext->pDecoderStatistics->uiDecodedFrameCount); in GetOption()
642 pDecoderStatistics->fActualAverageFrameSpeedInMs = (float) (pDecContext->dDecTime) / in GetOption()
643 …(pDecContext->pDecoderStatistics->uiDecodedFrameCount + pDecContext->pDecoderStatistics->uiFreezin… in GetOption()
644 pDecContext->pDecoderStatistics->uiFreezingNonIDRNum); in GetOption()
[all …]
/third_party/openh264/codec/decoder/core/src/
Ddecoder_core.cpp80 if ((pCtx->pDecoderStatistics->uiWidth != (unsigned int) kiActualWidth) in DecodeFrameConstruction()
81 || (pCtx->pDecoderStatistics->uiHeight != (unsigned int) kiActualHeight)) { in DecodeFrameConstruction()
82 pCtx->pDecoderStatistics->uiResolutionChangeTimes++; in DecodeFrameConstruction()
83 pCtx->pDecoderStatistics->uiWidth = kiActualWidth; in DecodeFrameConstruction()
84 pCtx->pDecoderStatistics->uiHeight = kiActualHeight; in DecodeFrameConstruction()
274 …if (pDstInfo->iBufferStatus && ((pCtx->pDecoderStatistics->uiWidth != (unsigned int) kiActualWidth) in DecodeFrameConstruction()
275 … || (pCtx->pDecoderStatistics->uiHeight != (unsigned int) kiActualHeight))) { in DecodeFrameConstruction()
276 pCtx->pDecoderStatistics->uiResolutionChangeTimes++; in DecodeFrameConstruction()
277 pCtx->pDecoderStatistics->uiWidth = kiActualWidth; in DecodeFrameConstruction()
278 pCtx->pDecoderStatistics->uiHeight = kiActualHeight; in DecodeFrameConstruction()
[all …]
Ddecoder.cpp350 pCtx->pDecoderStatistics->iAvgLumaQp = -1; in WelsDecoderDefaults()
351 pCtx->pDecoderStatistics->iStatisticsLogInterval = 1000; in WelsDecoderDefaults()
1202 SDecoderStatistics* pDecStat = pCtx->pDecoderStatistics; in UpdateDecStatNoFreezingInfo()
1244 …cStatFreezingInfo (pCtx->pCurDqLayer->sLayerInfo.sNalHeaderExt.bIdrFlag, pCtx->pDecoderStatistics); in UpdateDecStat()
Dau_parser.cpp159 pCtx->pDecoderStatistics->iSpsNoExistNalNum++; in ParseNalHeader()
173 pCtx->pDecoderStatistics->iPpsNoExistNalNum++; in ParseNalHeader()
190 pCtx->pDecoderStatistics->iSubSpsNoExistNalNum++; in ParseNalHeader()
/third_party/openh264/test/decoder/
DDecUT_ParseSyntax.cpp207 m_pCtx->pDecoderStatistics = &m_sDecoderStatistics; in Init()
/third_party/openh264/codec/decoder/core/inc/
Ddecoder_context.h492 SDecoderStatistics* pDecoderStatistics; // For real time debugging member