Home
last modified time | relevance | path

Searched refs:uiDecodedFrameCount (Results 1 – 5 of 5) sorted by relevance

/third_party/openh264/codec/decoder/plus/src/
DwelsDecoderExt.cpp639 if (pDecContext->pDecoderStatistics->uiDecodedFrameCount != 0) { //not original status in GetOption()
641 (pDecContext->pDecoderStatistics->uiDecodedFrameCount); in GetOption()
643 …(pDecContext->pDecoderStatistics->uiDecodedFrameCount + pDecContext->pDecoderStatistics->uiFreezin… in GetOption()
851 pDecContext->pDecoderStatistics->uiDecodedFrameCount++; in DecodeFrame2WithCtx()
852 … if (pDecContext->pDecoderStatistics->uiDecodedFrameCount == 0) { //exceed max value of uint32_t in DecodeFrame2WithCtx()
854 pDecContext->pDecoderStatistics->uiDecodedFrameCount++; in DecodeFrame2WithCtx()
890 pDecContext->pDecoderStatistics->uiDecodedFrameCount++; in DecodeFrame2WithCtx()
891 if (pDecContext->pDecoderStatistics->uiDecodedFrameCount == 0) { //exceed max value of uint32_t in DecodeFrame2WithCtx()
893 pDecContext->pDecoderStatistics->uiDecodedFrameCount++; in DecodeFrame2WithCtx()
942 …if ((sDecoderStatistics.uiDecodedFrameCount > 0) && (sDecoderStatistics.iStatisticsLogInterval > 0) in OutputStatisticsLog()
[all …]
/third_party/openh264/test/decoder/
DDecUT_DecExt.cpp527 EXPECT_EQ (0u, sDecStatic.uiDecodedFrameCount); in TestGetDecStatistics()
540 EXPECT_EQ (5u, sDecStatic.uiDecodedFrameCount); in TestGetDecStatistics()
559 EXPECT_EQ (97u, sDecStatic.uiDecodedFrameCount); in TestGetDecStatistics()
581 EXPECT_EQ (99u, sDecStatic.uiDecodedFrameCount); in TestGetDecStatistics()
604 EXPECT_EQ (9u, sDecStatic.uiDecodedFrameCount); in TestGetDecStatistics()
/third_party/openh264/codec/api/svc/
Dcodec_app_def.h770 unsigned int uiDecodedFrameCount; ///< number of frames member
/third_party/openh264/codec/decoder/core/src/
Ddecoder.cpp1226 if (pDecStat->uiDecodedFrameCount + 1 == 0) { //maximum uint32_t reached in UpdateDecStatNoFreezingInfo()
1230 …pDecStat->iAvgLumaQp = (int) ((uint64_t) (pDecStat->iAvgLumaQp * pDecStat->uiDecodedFrameCount + i… in UpdateDecStatNoFreezingInfo()
1231 (pDecStat->uiDecodedFrameCount + 1)); in UpdateDecStatNoFreezingInfo()
/third_party/openh264/test/api/
Ddecode_api_test.cpp1063 ASSERT_EQ (sDecStat.uiDecodedFrameCount, (unsigned int) iTotalFrmCnt); in TEST_F()