• Home
  • Raw
  • Download

Lines Matching refs:sThreadCtx

1349 DECODING_STATE CWelsDecoder::ParseAccessUnit (SWelsDecoderThreadCTX& sThreadCtx) {  in ParseAccessUnit()  argument
1350 sThreadCtx.pCtx->bHasNewSps = false; in ParseAccessUnit()
1351 sThreadCtx.pCtx->bParamSetsLostFlag = m_bParamSetsLostFlag; in ParseAccessUnit()
1352 sThreadCtx.pCtx->bFreezeOutput = m_bFreezeOutput; in ParseAccessUnit()
1353 sThreadCtx.pCtx->uiDecodingTimeStamp = ++m_uiDecodeTimeStamp; in ParseAccessUnit()
1355 …if (m_pLastDecThrCtx != NULL && sThreadCtx.pCtx->sSpsPpsCtx.iSeqId < m_pLastDecThrCtx->pCtx->sSpsP… in ParseAccessUnit()
1356 CopySpsPps (m_pLastDecThrCtx->pCtx, sThreadCtx.pCtx); in ParseAccessUnit()
1357 sThreadCtx.pCtx->iPicQueueNumber = m_pLastDecThrCtx->pCtx->iPicQueueNumber; in ParseAccessUnit()
1358 if (sThreadCtx.pCtx->pPicBuff != m_pPicBuff) { in ParseAccessUnit()
1360 sThreadCtx.pCtx->pPicBuff = m_pPicBuff; in ParseAccessUnit()
1361 sThreadCtx.pCtx->bHaveGotMemory = m_pPicBuff != NULL; in ParseAccessUnit()
1362 sThreadCtx.pCtx->iImgWidthInPixel = m_pLastDecThrCtx->pCtx->iImgWidthInPixel; in ParseAccessUnit()
1363 sThreadCtx.pCtx->iImgHeightInPixel = m_pLastDecThrCtx->pCtx->iImgHeightInPixel; in ParseAccessUnit()
1368 if (GetThreadCount (sThreadCtx.pCtx) > 1) { in ParseAccessUnit()
1369 sThreadCtx.pCtx->pAccessUnitList->uiAvailUnitsNum = 0; in ParseAccessUnit()
1370 sThreadCtx.pCtx->pAccessUnitList->uiActualUnitsNum = 0; in ParseAccessUnit()
1373 …int32_t iRet = DecodeFrame2WithCtx (sThreadCtx.pCtx, sThreadCtx.kpSrc, sThreadCtx.kiSrcLen, sThrea… in ParseAccessUnit()
1374 &sThreadCtx.sDstInfo); in ParseAccessUnit()
1376 int32_t iErr = InitConstructAccessUnit (sThreadCtx.pCtx, &sThreadCtx.sDstInfo); in ParseAccessUnit()
1380 if (sThreadCtx.pCtx->bNewSeqBegin) { in ParseAccessUnit()
1381 m_pPicBuff = sThreadCtx.pCtx->pPicBuff; in ParseAccessUnit()
1383 …InitialDqLayersContext (sThreadCtx.pCtx, sThreadCtx.pCtx->pSps->iMbWidth << 4, sThreadCtx.pCtx->pS… in ParseAccessUnit()
1385 if (!sThreadCtx.pCtx->bNewSeqBegin && m_pLastDecThrCtx != NULL) { in ParseAccessUnit()
1386 sThreadCtx.pCtx->sFrameCrop = m_pLastDecThrCtx->pCtx->pSps->sFrameCrop; in ParseAccessUnit()
1388 …m_bParamSetsLostFlag = sThreadCtx.pCtx->bNewSeqBegin ? false : sThreadCtx.pCtx->bParamSetsLostFlag; in ParseAccessUnit()
1389 m_bFreezeOutput = sThreadCtx.pCtx->bNewSeqBegin ? false : sThreadCtx.pCtx->bFreezeOutput; in ParseAccessUnit()