Home
last modified time | relevance | path

Searched refs:iPOC (Results 1 – 9 of 9) sorted by relevance

/third_party/openh264/codec/encoder/core/inc/
Dref_list_mgr_svc.h107 virtual bool BuildRefList (const int32_t iPOC, int32_t iBestLtrRefIdx) = 0;
119 virtual bool BuildRefList (const int32_t iPOC, int32_t iBestLtrRefIdx);
133 virtual bool BuildRefList (const int32_t iPOC, int32_t iBestLtrRefIdx);
142 virtual bool BuildRefList (const int32_t iPOC, int32_t iBestLtrRefIdx);
Dwels_func_ptr_def.h184 typedef bool (*PBuildRefListFunc) (sWelsEncCtx* pCtx, const int32_t iPOC, int32_t iBestLtrRefIdx);
Dparam_svc.h97 int32_t iPOC; // frame iPOC member
/third_party/openh264/codec/decoder/plus/src/
DwelsDecoderExt.cpp1001 if (m_sPictInfoList[i].iPOC > IMinInt32) { in BufferingReadyPicture()
1010 if (m_sPictInfoList[i].iPOC == pCtx->pSliceHeader->iPicOrderCntLsb) { in BufferingReadyPicture()
1018 if (m_sPictInfoList[i].iPOC > IMinInt32) { in BufferingReadyPicture()
1027 if (m_sPictInfoList[i].iPOC == IMinInt32) { in BufferingReadyPicture()
1029 m_sPictInfoList[i].iPOC = pCtx->pSliceHeader->iPicOrderCntLsb; in BufferingReadyPicture()
1055 …if (m_sReoderingStatus.iMinPOC == IMinInt32 && m_sPictInfoList[i].iPOC > IMinInt32 && m_sPictInfoL… in ReleaseBufferedReadyPictureReorder()
1056 m_sReoderingStatus.iMinPOC = m_sPictInfoList[i].iPOC; in ReleaseBufferedReadyPictureReorder()
1064 … if (m_sPictInfoList[i].iPOC > IMinInt32 && m_sPictInfoList[i].iPOC < m_sReoderingStatus.iMinPOC in ReleaseBufferedReadyPictureReorder()
1066 m_sReoderingStatus.iMinPOC = m_sPictInfoList[i].iPOC; in ReleaseBufferedReadyPictureReorder()
1081 m_sPictInfoList[m_sReoderingStatus.iPictInfoIndex].iPOC = IMinInt32; in ReleaseBufferedReadyPictureReorder()
[all …]
/third_party/openh264/codec/encoder/core/src/
Dencoder.cpp284 if (pParamInternal->iPOC < (1 << pEncCtx->pSps->iLog2MaxPocLsb) - in InitFrameCoding()
286 pParamInternal->iPOC += 2; // for POC type 0 in InitFrameCoding()
288 pParamInternal->iPOC = 0; in InitFrameCoding()
297 pParamInternal->iPOC = 0; in InitFrameCoding()
311 if (pParamInternal->iPOC < (1 << pEncCtx->pSps->iLog2MaxPocLsb) - in InitFrameCoding()
313 pParamInternal->iPOC += 2; // for POC type 0 in InitFrameCoding()
315 pParamInternal->iPOC = 0; in InitFrameCoding()
Dref_list_mgr_svc.cpp383 pCtx->pDecPic->iFramePoc = pParamD->iPOC; in WelsUpdateRefList()
594 bool WelsBuildRefList (sWelsEncCtx* pCtx, const int32_t iPOC, int32_t iBestLtrRefIdx) { in WelsBuildRefList() argument
710 void WelsUpdateRefSyntax (sWelsEncCtx* pCtx, const int32_t iPOC, const int32_t uiFrameType) { in WelsUpdateRefSyntax() argument
787 pCtx->pDecPic->iFramePoc = pParamD->iPOC; in WelsUpdateRefListScreen()
811 bool WelsBuildRefListScreen (sWelsEncCtx* pCtx, const int32_t iPOC, int32_t iBestLtrRefIdx) { in WelsBuildRefListScreen() argument
855 … "WelsBuildRefListScreen(), CurrentFramePoc=%d, isLTR=%d", iPOC, pCtx->bCurFrameMarkedAsSceneLtr); in WelsBuildRefListScreen()
1032 bool CWelsReference_TemporalLayer::BuildRefList (const int32_t iPOC, int32_t iBestLtrRefIdx) { in BuildRefList() argument
1033 return WelsBuildRefList (m_pEncoderCtx, iPOC, iBestLtrRefIdx); in BuildRefList()
1048 bool CWelsReference_Screen::BuildRefList (const int32_t iPOC, int32_t iBestLtrRefIdx) { in BuildRefList() argument
1049 return WelsBuildRefList (m_pEncoderCtx, iPOC, iBestLtrRefIdx); in BuildRefList()
[all …]
Dencoder_ext.cpp1076 pParamInternal->iPOC = 0; in InitDqLayers()
3048 pParamInternal->iPOC = 0; in ForceCodingIDR()
3062 pParamInternal->iPOC = 0; in ForceCodingIDR()
3345 if (pParamInternal->iPOC != 0) { in StackBackEncoderStatus()
3346 pParamInternal->iPOC -= 2; in StackBackEncoderStatus()
3348 pParamInternal->iPOC = (1 << pEncCtx->pSps->iLog2MaxPocLsb) - 2; in StackBackEncoderStatus()
3559 pCtx->pEncPic->iFramePoc = pParamInternal->iPOC; in WelsEncoderEncodeExt()
3631 pCtx->pDecPic->iFramePoc = pParamInternal->iPOC; in WelsEncoderEncodeExt()
3636 if (!pCtx->pReferenceStrategy->BuildRefList (pParamInternal->iPOC, 0)) { in WelsEncoderEncodeExt()
3654 WelsUpdateRefSyntax (pCtx, pParamInternal->iPOC, in WelsEncoderEncodeExt()
[all …]
/third_party/openh264/codec/decoder/core/inc/
Ddecoder_context.h285 int32_t iPOC; member
/third_party/openh264/codec/decoder/core/src/
Ddecoder.cpp304 pPictInfo[i].iPOC = IMinInt32; in ResetReorderingPictureBuffers()