• Home
  • Raw
  • Download

Lines Matching refs:sThreadCtx

1335 DECODING_STATE CWelsDecoder::ParseAccessUnit (SWelsDecoderThreadCTX& sThreadCtx) {  in ParseAccessUnit()  argument
1336 sThreadCtx.pCtx->bHasNewSps = false; in ParseAccessUnit()
1337 sThreadCtx.pCtx->bParamSetsLostFlag = m_bParamSetsLostFlag; in ParseAccessUnit()
1338 sThreadCtx.pCtx->bFreezeOutput = m_bFreezeOutput; in ParseAccessUnit()
1339 sThreadCtx.pCtx->uiDecodingTimeStamp = ++m_uiDecodeTimeStamp; in ParseAccessUnit()
1341 …if (m_pLastDecThrCtx != NULL && sThreadCtx.pCtx->sSpsPpsCtx.iSeqId < m_pLastDecThrCtx->pCtx->sSpsP… in ParseAccessUnit()
1342 CopySpsPps (m_pLastDecThrCtx->pCtx, sThreadCtx.pCtx); in ParseAccessUnit()
1343 sThreadCtx.pCtx->iPicQueueNumber = m_pLastDecThrCtx->pCtx->iPicQueueNumber; in ParseAccessUnit()
1344 if (sThreadCtx.pCtx->pPicBuff != m_pPicBuff) { in ParseAccessUnit()
1346 sThreadCtx.pCtx->pPicBuff = m_pPicBuff; in ParseAccessUnit()
1347 sThreadCtx.pCtx->bHaveGotMemory = m_pPicBuff != NULL; in ParseAccessUnit()
1348 sThreadCtx.pCtx->iImgWidthInPixel = m_pLastDecThrCtx->pCtx->iImgWidthInPixel; in ParseAccessUnit()
1349 sThreadCtx.pCtx->iImgHeightInPixel = m_pLastDecThrCtx->pCtx->iImgHeightInPixel; in ParseAccessUnit()
1354 if (GetThreadCount (sThreadCtx.pCtx) > 1) { in ParseAccessUnit()
1355 sThreadCtx.pCtx->pAccessUnitList->uiAvailUnitsNum = 0; in ParseAccessUnit()
1356 sThreadCtx.pCtx->pAccessUnitList->uiActualUnitsNum = 0; in ParseAccessUnit()
1359 …int32_t iRet = DecodeFrame2WithCtx (sThreadCtx.pCtx, sThreadCtx.kpSrc, sThreadCtx.kiSrcLen, sThrea… in ParseAccessUnit()
1360 &sThreadCtx.sDstInfo); in ParseAccessUnit()
1362 int32_t iErr = InitConstructAccessUnit (sThreadCtx.pCtx, &sThreadCtx.sDstInfo); in ParseAccessUnit()
1366 if (sThreadCtx.pCtx->bNewSeqBegin) { in ParseAccessUnit()
1367 m_pPicBuff = sThreadCtx.pCtx->pPicBuff; in ParseAccessUnit()
1369 …InitialDqLayersContext (sThreadCtx.pCtx, sThreadCtx.pCtx->pSps->iMbWidth << 4, sThreadCtx.pCtx->pS… in ParseAccessUnit()
1371 if (!sThreadCtx.pCtx->bNewSeqBegin && m_pLastDecThrCtx != NULL) { in ParseAccessUnit()
1372 sThreadCtx.pCtx->sFrameCrop = m_pLastDecThrCtx->pCtx->pSps->sFrameCrop; in ParseAccessUnit()
1374 …m_bParamSetsLostFlag = sThreadCtx.pCtx->bNewSeqBegin ? false : sThreadCtx.pCtx->bParamSetsLostFlag; in ParseAccessUnit()
1375 m_bFreezeOutput = sThreadCtx.pCtx->bNewSeqBegin ? false : sThreadCtx.pCtx->bFreezeOutput; in ParseAccessUnit()