Home
last modified time | relevance | path

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

/third_party/openh264/codec/encoder/core/src/
Dref_list_mgr_svc.cpp43 void ResetLtrState (SLTRState* pLtr) { in ResetLtrState() argument
44 pLtr->bReceivedT0LostFlag = false; in ResetLtrState()
45 pLtr->iLastRecoverFrameNum = 0; in ResetLtrState()
46 pLtr->iLastCorFrameNumDec = -1; in ResetLtrState()
47 pLtr->iCurFrameNumInDec = -1; in ResetLtrState()
50 pLtr->iLTRMarkMode = LTR_DIRECT_MARK; in ResetLtrState()
51 pLtr->iLTRMarkSuccessNum = 0; //successful marked num in ResetLtrState()
52 pLtr->bLTRMarkingFlag = false; //decide whether current frame marked as LTR in ResetLtrState()
53pLtr->bLTRMarkEnable = false; //when LTR is confirmed and the interval is no smaller than the mark… in ResetLtrState()
54 pLtr->iCurLtrIdx = 0; in ResetLtrState()
[all …]
Dwels_preprocess.cpp274 if (pCtx->uiTemporalId == 0 && pCtx->pLtr[pCtx->uiDependencyId].bReceivedT0LostFlag) in AnalyzeSpatialPic()
409 SPicture* pRefPic = pCtx->pLtr[iDependencyId].bReceivedT0LostFlag ? in SingleLayerPreprocess()
805 SLTRState* pLtr = &pCtx->pLtr[uiDid]; in SetRefMbType() local
808 if (pCtx->pSvcParam->bEnableLongTermReference && pLtr->bReceivedT0LostFlag && uiTid == 0) { in SetRefMbType()
1137 const int32_t iClosestLtrFrameNum = pCtx->pLtr[iTargetDid].iLastLtrIdx[iCurTid]; in DetectSceneChange()
Dencoder_ext.cpp1681 …(*ppCtx)->pLtr = (SLTRState*)pMa->WelsMallocz (kiNumDependencyLayers * sizeof (SLTRState), "SLTRSt… in RequestMemorySvc()
1682 WELS_VERIFY_RETURN_IF (1, (NULL == (*ppCtx)->pLtr)) in RequestMemorySvc()
1685 ResetLtrState (& (*ppCtx)->pLtr[i]); in RequestMemorySvc()
1907 if (NULL != pCtx->pLtr) { in FreeMemorySvc()
1908 pMa->WelsFree (pCtx->pLtr, "SLTRState"); in FreeMemorySvc()
1909 pCtx->pLtr = NULL; in FreeMemorySvc()
4069 if (pSvcParam->bEnableLongTermReference && ((pCtx->pLtr[pCtx->uiDependencyId].bLTRMarkingFlag in WelsEncoderEncodeExt()
4070 …&& (pCtx->pLtr[pCtx->uiDependencyId].iLTRMarkMode == LTR_DIRECT_MARK)) || eFrameType == videoFrame… in WelsEncoderEncodeExt()
/third_party/openh264/codec/encoder/core/inc/
Dref_list_mgr_svc.h66 void ResetLtrState (SLTRState* pLtr);
Dencoder_context.h153 SLTRState* pLtr;//[MAX_DEPENDENCY_LAYER]; member
/third_party/openh264/codec/encoder/plus/src/
DwelsEncoderExt.cpp639 if (m_pEncContext->pLtr->bLTRMarkingFlag) { in UpdateStatistics()