Home
last modified time | relevance | path

Searched refs:iLayerId (Results 1 – 11 of 11) sorted by relevance

/third_party/openh264/test/api/
Dltr_test.cpp48 m_LTR_Recover_Request.iLayerId = 0; in TEST_P()
49 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_P()
110 m_LTR_Recover_Request.iLayerId = 0; in TEST_P()
111 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_P()
Ddecoder_ec_test.cpp17 m_LTR_Recover_Request.iLayerId = 0; in TEST_P()
18 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_P()
85 m_LTR_Recover_Request.iLayerId = 0; in TEST_P()
86 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_P()
667 m_LTR_Recover_Request.iLayerId = 0; in TEST_F()
668 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_F()
732 m_LTR_Recover_Request.iLayerId = 0; in TEST_F()
733 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_F()
Ddecode_api_test.cpp231 m_LTR_Recover_Request.iLayerId = 0; in TEST_P()
232 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_P()
302 m_LTR_Recover_Request.iLayerId = 0; in TEST_P()
303 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_P()
359 m_LTR_Recover_Request.iLayerId = 0; in TEST_P()
360 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_P()
417 m_LTR_Recover_Request.iLayerId = 0; in TEST_P()
418 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_P()
483 m_LTR_Recover_Request.iLayerId = 0; in TEST_P()
484 m_LTR_Marking_Feedback.iLayerId = 0; in TEST_P()
Dcpp_interface_test.cpp50 virtual int EXTAPI ForceIntraFrame (bool bIDR, int iLayerId = -1) { in ForceIntraFrame()
/third_party/openh264/codec/encoder/core/inc/
Dextern.h103 int32_t ForceCodingIDR (sWelsEncCtx* pCtx,int32_t iLayerId);
109 …_t WelsBitRateVerification(SLogContext* pLogCtx,SSpatialLayerConfig* pLayerParam,int32_t iLayerId);
/third_party/openh264/codec/encoder/core/src/
Dref_list_mgr_svc.cpp526 int32_t iLayerId = pLTRRecoverRequest->iLayerId; in FilterLTRRecoveryRequest() local
527 if ((iLayerId < 0) || (iLayerId >= pCtx->pSvcParam->iSpatialLayerNum)) in FilterLTRRecoveryRequest()
530 SLTRState* pLtr = &pCtx->pLtr[iLayerId]; in FilterLTRRecoveryRequest()
532 SSpatialLayerInternal* pParamInternal = &pCtx->pSvcParam->sDependencyLayers[iLayerId]; in FilterLTRRecoveryRequest()
564 int32_t iLayerId = pLTRMarkingFeedback->iLayerId; in FilterLTRMarkingFeedback() local
565 if ((iLayerId < 0) || (iLayerId >= pCtx->pSvcParam->iSpatialLayerNum)) { in FilterLTRMarkingFeedback()
568 SLTRState* pLtr = &pCtx->pLtr[iLayerId]; in FilterLTRMarkingFeedback()
571 SSpatialLayerInternal* pParamInternal = &pCtx->pSvcParam->sDependencyLayers[iLayerId]; in FilterLTRMarkingFeedback()
Dencoder_ext.cpp73 …elsBitRateVerification (SLogContext* pLogCtx, SSpatialLayerConfig* pLayerParam, int32_t iLayerId) { in WelsBitRateVerification() argument
76 …tx, WELS_LOG_ERROR, "Invalid bitrate settings in layer %d, bitrate= %d at FrameRate(%f)", iLayerId, in WelsBitRateVerification()
3039 int32_t ForceCodingIDR (sWelsEncCtx* pCtx, int32_t iLayerId) { in ForceCodingIDR() argument
3042 if ((iLayerId < 0) || (iLayerId >= MAX_SPATIAL_LAYER_NUM) || (!pCtx->pSvcParam->bSimulcastAVC)) { in ForceCodingIDR()
3058 SSpatialLayerInternal* pParamInternal = &pCtx->pSvcParam->sDependencyLayers[iLayerId]; in ForceCodingIDR()
3064 pCtx->sEncoderStatistics[iLayerId].uiIDRReqNum++; in ForceCodingIDR()
3065 …WelsLog (&pCtx->sLogCtx, WELS_LOG_INFO, "ForceCodingIDR(iDid %d)at InputFrameCount=%d\n", iLayerId, in ForceCodingIDR()
3066 pCtx->sEncoderStatistics[iLayerId].uiInputFrameCount); in ForceCodingIDR()
/third_party/openh264/codec/encoder/plus/inc/
DwelsEncoderExt.h88 virtual int EXTAPI ForceIntraFrame (bool bIDR,int32_t iLayerId = -1);
/third_party/openh264/codec/api/svc/
Dcodec_app_def.h244 int iLayerId; //specify the layer for recovery request member
254 int iLayerId; //specify the layer for LTR marking feedback member
Dcodec_api.h323 virtual int EXTAPI ForceIntraFrame (bool bIDR, int iLayerId = -1) = 0;
/third_party/openh264/codec/encoder/plus/src/
DwelsEncoderExt.cpp487 int CWelsH264SVCEncoder::ForceIntraFrame (bool bIDR, int iLayerId) { in ForceIntraFrame() argument
493 ForceCodingIDR (m_pEncContext, iLayerId); in ForceIntraFrame()